diff --git a/aurorastation.dme b/aurorastation.dme index 505bd33fd65..67db7cab5a6 100644 --- a/aurorastation.dme +++ b/aurorastation.dme @@ -906,7 +906,6 @@ #include "code\game\objects\structures\curtains.dm" #include "code\game\objects\structures\displaycase.dm" #include "code\game\objects\structures\door_assembly.dm" -#include "code\game\objects\structures\electricchair.dm" #include "code\game\objects\structures\extinguisher.dm" #include "code\game\objects\structures\fireaxe_cabinet.dm" #include "code\game\objects\structures\flora.dm" @@ -929,6 +928,7 @@ #include "code\game\objects\structures\simple_doors.dm" #include "code\game\objects\structures\tank_dispenser.dm" #include "code\game\objects\structures\target_stake.dm" +#include "code\game\objects\structures\therapy.dm" #include "code\game\objects\structures\tranqcabinet.dm" #include "code\game\objects\structures\transit_tubes.dm" #include "code\game\objects\structures\under_wardrobe.dm" diff --git a/code/__defines/mobs.dm b/code/__defines/mobs.dm index 7915e1f320e..342cf78a0f0 100644 --- a/code/__defines/mobs.dm +++ b/code/__defines/mobs.dm @@ -210,3 +210,9 @@ #define BRAIN_TRAUMA_MILD /datum/brain_trauma/mild #define BRAIN_TRAUMA_SEVERE /datum/brain_trauma/severe #define BRAIN_TRAUMA_SPECIAL /datum/brain_trauma/special + +#define CURE_CRYSTAL "crystal" +#define CURE_SOLITUDE "solitude" +#define CURE_HYPNOSIS "hypnosis" +#define CURE_SURGERY "surgery" +#define CURE_ADMIN "all" diff --git a/code/datums/brain_damage/brain_trauma.dm b/code/datums/brain_damage/brain_trauma.dm index 3d703303a63..6e4c66427b7 100644 --- a/code/datums/brain_damage/brain_trauma.dm +++ b/code/datums/brain_damage/brain_trauma.dm @@ -12,6 +12,12 @@ var/can_gain = TRUE //can this be gained through random traumas? var/permanent = FALSE //can this be cured? var/suppressed = 0 //currently being suppressed + var/cure_type //type of therapy that cures the trauma + //current cures: + //hypnosis - cures traumas that alter behavior + //solitude - cures traumas that produce hallucination + //electroshock - cures traumas that have physical effects + //surgery - cures traumas not covered above /datum/brain_trauma/New(obj/item/organ/brain/B, _permanent) brain = B @@ -42,6 +48,7 @@ /datum/brain_trauma/proc/on_lose(silent) if(!silent) to_chat(owner, lose_text) + owner.adjustBrainLoss(-1) //Called when hearing a spoken message /datum/brain_trauma/proc/on_hear(message, speaker, message_language, raw_message, radio_freq) diff --git a/code/datums/brain_damage/imaginary_friend.dm b/code/datums/brain_damage/imaginary_friend.dm index 5851db4f34b..84ccf16f310 100644 --- a/code/datums/brain_damage/imaginary_friend.dm +++ b/code/datums/brain_damage/imaginary_friend.dm @@ -4,6 +4,7 @@ scan_desc = "partial schizophrenia" gain_text = "You feel in good company, for some reason." lose_text = "You feel lonely again." + cure_type = CURE_SOLITUDE var/mob/abstract/mental/friend/friend /datum/brain_trauma/special/imaginary_friend/on_gain() diff --git a/code/datums/brain_damage/mild.dm b/code/datums/brain_damage/mild.dm index ec4839a60cd..b66a1f6a128 100644 --- a/code/datums/brain_damage/mild.dm +++ b/code/datums/brain_damage/mild.dm @@ -10,6 +10,7 @@ scan_desc = "schizophrenia" gain_text = "You feel your grip on reality slipping..." lose_text = "You feel more grounded." + cure_type = CURE_SOLITUDE /datum/brain_trauma/mild/hallucinations/on_life() owner.hallucination = min(owner.hallucination + 10, 50) @@ -25,6 +26,7 @@ scan_desc = "reduced mouth coordination" gain_text = "Speaking clearly is getting harder." lose_text = "You feel in control of your speech." + cure_type = CURE_CRYSTAL /datum/brain_trauma/mild/stuttering/on_life() owner.stuttering = min(owner.stuttering + 5, 25) @@ -40,6 +42,7 @@ scan_desc = "reduced brain activity" gain_text = "You feel dumber." lose_text = "You feel smart again." + cure_type = CURE_CRYSTAL /datum/brain_trauma/mild/dumbness/on_gain() owner.disabilities |= DUMB @@ -62,6 +65,7 @@ scan_desc = "communication disorder" gain_text = "You feel lost for words!" lose_text = "You regain your bearing!" + cure_type = CURE_CRYSTAL /datum/brain_trauma/mild/speech_impediment/on_gain() owner.disabilities |= UNINTELLIGIBLE @@ -77,6 +81,7 @@ scan_desc = "vulgarity problem" gain_text = "Your mind fills with foul language!" lose_text = "Your mind returns to decency." + cure_type = CURE_CRYSTAL /datum/brain_trauma/mild/tourettes/on_gain() owner.disabilities |= TOURETTES @@ -92,6 +97,7 @@ scan_desc = "left-right disorientation" gain_text = "You wonder to yourself, does three rights really make a left?!" lose_text = "You remember that you can just turn left directly!" + cure_type = CURE_HYPNOSIS /datum/brain_trauma/mild/gertie/on_gain() owner.disabilities |= GERTIE @@ -107,6 +113,7 @@ scan_desc = "a concussion" gain_text = "Your head hurts!" lose_text = "The pressure inside your head starts fading." + cure_type = CURE_SURGERY /datum/brain_trauma/mild/concussion/on_life() if(prob(25)) @@ -139,6 +146,7 @@ scan_desc = "weak motor nerve signal" gain_text = "Your muscles feel oddly faint." lose_text = "You feel in control of your muscles again." + cure_type = CURE_CRYSTAL /datum/brain_trauma/mild/muscle_weakness/on_life() var/fall_chance = 5 @@ -166,6 +174,7 @@ scan_desc = "nervous fits" gain_text = "Your muscles feel oddly faint." lose_text = "You feel in control of your muscles again." + cure_type = CURE_CRYSTAL /datum/brain_trauma/mild/muscle_spasms/on_life() if(prob(25)) @@ -224,6 +233,7 @@ scan_desc = "minor damage to the brain's occipital lobe" gain_text = "You can barely see!" lose_text = "Your vision returns." + cure_type = CURE_SURGERY /datum/brain_trauma/mild/nearsightedness/on_gain() owner.disabilities |= NEARSIGHTED diff --git a/code/datums/brain_damage/phobia.dm b/code/datums/brain_damage/phobia.dm index 1fdcc73e2c9..7b885f96369 100644 --- a/code/datums/brain_damage/phobia.dm +++ b/code/datums/brain_damage/phobia.dm @@ -13,6 +13,7 @@ var/list/trigger_objs //also checked in mob equipment var/list/trigger_turfs var/list/trigger_species + cure_type = CURE_HYPNOSIS /datum/brain_trauma/mild/phobia/New(mob/living/carbon/C, _permanent, specific_type) phobia_type = specific_type diff --git a/code/datums/brain_damage/schizo.dm b/code/datums/brain_damage/schizo.dm index d2df5e384a8..776b48551f8 100644 --- a/code/datums/brain_damage/schizo.dm +++ b/code/datums/brain_damage/schizo.dm @@ -7,6 +7,7 @@ scan_desc = "conflicting neuroimaging reports" gain_text = "You feel like your mind was split in two." lose_text = "You feel alone again." + cure_type = CURE_SOLITUDE var/current_controller = OWNER var/initialized = FALSE //to prevent personalities deleting themselves while we wait for ghosts var/mob/living/mental/split_personality/stranger_backseat //there's two so they can swap without overwriting diff --git a/code/datums/brain_damage/severe.dm b/code/datums/brain_damage/severe.dm index 9bcb985dd2b..c0782d7959b 100644 --- a/code/datums/brain_damage/severe.dm +++ b/code/datums/brain_damage/severe.dm @@ -10,6 +10,7 @@ scan_desc = "extensive damage to the brain's language center" gain_text = "You forget how to speak!" lose_text = "You suddenly remember how to speak." + cure_type = CURE_CRYSTAL /datum/brain_trauma/severe/mute/on_gain() owner.sdisabilities |= MUTE @@ -31,6 +32,7 @@ scan_desc = "extensive damage to the brain's occipital lobe" gain_text = "You can't see!" lose_text = "Your vision returns." + cure_type = CURE_SURGERY /datum/brain_trauma/severe/blindness/on_gain() owner.sdisabilities |= BLIND @@ -53,6 +55,7 @@ scan_desc = "cerebral paralysis" gain_text = "You can't feel your body anymore!" lose_text = "You can feel your limbs again!" + cure_type = CURE_SURGERY /datum/brain_trauma/severe/paralysis/on_life() owner.Weaken(200) @@ -68,6 +71,7 @@ scan_desc = "traumatic narcolepsy" gain_text = "You have a constant feeling of drowsiness..." lose_text = "You feel awake and aware again." + cure_type = CURE_HYPNOSIS /datum/brain_trauma/severe/narcolepsy/on_life() ..() @@ -94,6 +98,7 @@ gain_text = "" lose_text = "You feel like you could be safe on your own." var/stress = 0 + cure_type = CURE_HYPNOSIS /datum/brain_trauma/severe/monophobia/on_gain() ..() @@ -173,6 +178,7 @@ scan_desc = "extreme discoordination" gain_text = "You can barely control your hands!" lose_text = "You feel in control of your hands again." + cure_type = CURE_CRYSTAL /datum/brain_trauma/severe/discoordination/on_gain() owner.disabilities |= MONKEYLIKE @@ -190,6 +196,7 @@ lose_text = "You suddenly remember how languages work." var/list/prev_languages = list() var/datum/language_holder/mob_language + cure_type = CURE_SURGERY /datum/brain_trauma/severe/aphasia/on_gain() for(var/datum/language/L in owner.languages) @@ -211,6 +218,7 @@ scan_desc = "pacific syndrome" gain_text = "You feel oddly peaceful." lose_text = "You no longer feel compelled to not harm." + cure_type = CURE_HYPNOSIS /datum/brain_trauma/severe/pacifism/on_gain() owner.disabilities |= PACIFIST diff --git a/code/datums/brain_damage/special_ed.dm b/code/datums/brain_damage/special_ed.dm index 96cfd0d3c07..66f9f31f102 100644 --- a/code/datums/brain_damage/special_ed.dm +++ b/code/datums/brain_damage/special_ed.dm @@ -10,6 +10,7 @@ gain_text = "You feel the bluespace pulsing around you..." lose_text = "The faint pulsing of bluespace fades into silence." var/next_portal = 0 + cure_type = CURE_SURGERY /datum/brain_trauma/special/bluespace_prophet/on_life() if(world.time > next_portal) diff --git a/code/game/machinery/adv_med.dm b/code/game/machinery/adv_med.dm index 29c092e6630..3f7b8395201 100644 --- a/code/game/machinery/adv_med.dm +++ b/code/game/machinery/adv_med.dm @@ -269,7 +269,9 @@ /obj/machinery/body_scanconsole/Initialize() . = ..() - src.connected = locate(/obj/machinery/bodyscanner, get_step(src, WEST)) + for(var/obj/machinery/bodyscanner/C in orange(1,src)) + connected = C + break src.connected.connected = src /obj/machinery/body_scanconsole/attack_ai(user as mob) diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm index a77ffb3c69b..0c5aaae72df 100644 --- a/code/game/objects/items/devices/scanners.dm +++ b/code/game/objects/items/devices/scanners.dm @@ -145,11 +145,8 @@ REAGENT SCANNER to_chat(user, "\tSevere brain damage detected. Subject likely to have mental traumas.") else if (H.getBrainLoss() >= 45) to_chat(user, "\tBrain damage detected.") - if(LAZYLEN(H.get_traumas())) - var/list/trauma_text = list() - for(var/datum/brain_trauma/B in H.get_traumas()) - trauma_text += B.scan_desc - to_chat(user, "\tCerebral traumas detected: subjects appears to be suffering from [english_list(trauma_text)].") + else if(LAZYLEN(H.get_traumas())) + to_chat(user, "\tSevere brain damage detected. Subject likely to have mental traumas.") for(var/name in H.organs_by_name) var/obj/item/organ/external/e = H.organs_by_name[name] if(!e) diff --git a/code/game/objects/items/weapons/manuals.dm b/code/game/objects/items/weapons/manuals.dm index 3f0ad349b10..3928352e285 100644 --- a/code/game/objects/items/weapons/manuals.dm +++ b/code/game/objects/items/weapons/manuals.dm @@ -1193,9 +1193,9 @@
  • Other Maintence Procedures

  • - +

    Basic Saftey


    - Before starting any maintence protocols a basic set of safety instructions are to be followed to ensure safe operation of the system. They are as follows: + Before starting any maintence protocols a basic set of safety instructions are to be followed to ensure safe operation of the system. They are as follows:

    - +

    Starting The System




    - +

    Procedure 8549 (Repairing Physical Damage)


    In the case of physical damage to your gravity generation systems, follow the following steps:
    Note:In the case of total destruction of the system, read:Procedure 2482 @@ -1277,3 +1277,94 @@ "} + +/obj/item/weapon/book/manual/psych + name = "Sigmund Freud for Dummies" + desc = "The number one must-have manual for teaching you how to love your mother!" + icon_state = "bookMedical" + author = "NTCC Odin Psychiatry Wing" + title = "Sigmund Freud for Dummies" + +/obj/item/weapon/book/manual/psych/New() + ..() + dat = {" + + + + +

    The Code:

    + The discipline of psychiatry is a time-honored art passed down from sensei to padawan over the ages. Under any circumstance, disclosing the contents of this sacred text is a violation of your honor.

    + +

    Contents

    +
      +
    1. Traumas 101
    2. +
    3. Hypnosis and You
    4. +
    5. The Chakra In You
    6. +
    7. Putting a Patient in Time-out
    8. +
    9. When You Alone Aren't Good Enough: Surgery and Drugs
    10. +
    +
    + +

    Traumas 101


    + In your tenure as a psychiatrist aboard your assigned station you will likely encounter those affected by brain damage. Science in this regard has progressed, and in your disposal are several tools to cure these addled men and women. Keep in mind these bulletins: +

    + +

    Hypnosis and You


    +

    + +

    The Chakra In You


    +

    + +

    Putting a Patient in Time-out


    +
    + +

    When You Alone Aren't Good Enough: Surgery and Drugs


    + Sometimes the therapy available to you just doesn't cut it. Don't get angry! Ensure the patient recieves fair treatment, and prescribe appropriate action to your colleagues. +

    + +

    Post-Therapy Actions:

    + After you believe a successful therapy has been conducted, your work does not end here. You must check and double-check the patient's wellbeing before releasing them for duty, conducting an after action counseling and keeping meticulous paperwork. You are advised to schedule the patient for a later check-up. + Remember; once you have been afflicted with brain trauma you are over four times as likely to suffer it again! Keep your patient's best interests at heart. + + + "} diff --git a/code/game/objects/items/weapons/weaponry.dm b/code/game/objects/items/weapons/weaponry.dm index afda998714e..6b880a11e7b 100644 --- a/code/game/objects/items/weapons/weaponry.dm +++ b/code/game/objects/items/weapons/weaponry.dm @@ -102,6 +102,12 @@ else user << "The rod appears to do nothing." M.visible_message("\The [user] waves \the [src] over \the [M]'s head.") + if(ishuman(M)) + var/mob/living/carbon/human/H = M + if(prob(15)) + H.cure_all_traumas(cure_type = CURE_SOLITUDE) + else if(prob(10)) + H.cure_all_traumas(cure_type = CURE_CRYSTAL) return M.attack_log += text("\[[time_stamp()]\] Is being deconverted with the [src.name] by [user.name] ([user.ckey])") user.attack_log += text("\[[time_stamp()]\] Used the [src.name] to attempt to deconvert [M.name] ([M.ckey])") diff --git a/code/game/objects/structures/electricchair.dm b/code/game/objects/structures/electricchair.dm deleted file mode 100644 index 1de8a91d520..00000000000 --- a/code/game/objects/structures/electricchair.dm +++ /dev/null @@ -1,66 +0,0 @@ -/obj/structure/bed/chair/e_chair - name = "electric chair" - desc = "Looks absolutely SHOCKING!" - icon_state = "echair0" - var/on = 0 - var/obj/item/assembly/shock_kit/part = null - var/last_time = 1.0 - -/obj/structure/bed/chair/e_chair/Initialize() - . = ..() - add_overlay(image('icons/obj/objects.dmi', src, "echair_over", MOB_LAYER + 1)) - -/obj/structure/bed/chair/e_chair/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(iswrench(W)) - var/obj/structure/bed/chair/C = new /obj/structure/bed/chair(loc) - playsound(loc, 'sound/items/Ratchet.ogg', 50, 1) - C.set_dir(dir) - part.loc = loc - part.master = null - part = null - qdel(src) - -/obj/structure/bed/chair/e_chair/verb/toggle() - set name = "Toggle Electric Chair" - set category = "Object" - set src in oview(1) - - if(on) - on = 0 - icon_state = "echair0" - else - on = 1 - shock() - icon_state = "echair1" - usr << "You switch [on ? "on" : "off"] [src]." - -/obj/structure/bed/chair/e_chair/proc/shock() - if(!on) - return - if(last_time + 50 > world.time) - return - last_time = world.time - - // special power handling - var/area/A = get_area(src) - if(!isarea(A)) - return - if(!A.powered(EQUIP)) - return - A.use_power(EQUIP, 5000) - var/light = A.power_light - A.update_icon() - - flick("echair1", src) - spark(src, 12, alldirs) - if(buckled_mob) - buckled_mob.burn_skin(85) - buckled_mob << "You feel a deep shock course through your body!" - sleep(1) - buckled_mob.burn_skin(85) - buckled_mob.Stun(600) - visible_message("The electric chair goes off!", "You hear a deep sharp shock!") - - A.power_light = light - A.update_icon() - return diff --git a/code/game/objects/structures/therapy.dm b/code/game/objects/structures/therapy.dm new file mode 100644 index 00000000000..50ea61c23bc --- /dev/null +++ b/code/game/objects/structures/therapy.dm @@ -0,0 +1,607 @@ +/obj/structure/bed/chair/e_chair + name = "electric chair" + desc = "Looks absolutely SHOCKING!" + icon_state = "echair0" + var/on = 0 + var/obj/item/assembly/shock_kit/part = null + var/last_time = 0 + +/obj/structure/bed/chair/e_chair/update_icon() + return + +/obj/structure/bed/chair/e_chair/Initialize() + . = ..() + add_overlay(image('icons/obj/furniture.dmi', src, "echair_over", MOB_LAYER + 1)) + if(!part) + part = new /obj/item/assembly/shock_kit(src) + part.master = src + part.part1 = new /obj/item/clothing/head/helmet(part) + part.part2 = new /obj/item/device/radio/electropack(part) + part.part1.master = part + part.part2.master = part + +/obj/structure/bed/chair/e_chair/Destroy() + if (part) + part.master = null + part = null + + . = ..() + +/obj/structure/bed/chair/e_chair/attackby(obj/item/weapon/W as obj, mob/user as mob) + if(iswrench(W)) + var/obj/structure/bed/chair/C = new /obj/structure/bed/chair(loc) + playsound(loc, 'sound/items/Ratchet.ogg', 50, 1) + C.set_dir(dir) + part.forceMove(get_turf(src)) + part.master = null + part = null + qdel(src) + +/obj/structure/bed/chair/e_chair/verb/toggle() + set name = "Toggle Electric Chair" + set category = "Object" + set src in oview(1) + + if(usr.stat || usr.paralysis || usr.stunned || usr.weakened || usr.lying || usr.restrained() || usr.buckled) + return + + if(on) + on = 0 + icon_state = "echair0" + else + on = 1 + shock() + icon_state = "echair1" + user << "You switch [on ? "on" : "off"] [src]." + +/obj/structure/bed/chair/e_chair/proc/shock() + if(!on) + return + + var/obj/structure/cable/C = locate(/obj/structure/cable, get_turf(src)) + var/datum/powernet/PN = C.powernet + flick("echair1", src) + spark(src, 12, alldirs) + if(buckled_mob && istype(C)) + if(electrocute_mob(buckled_mob, C, src, 1.25, "head")) + buckled_mob << "You feel a deep shock course through your body!" + sleep(1) + if(electrocute_mob(buckled_mob, C, src, 1.25, "head")) + buckled_mob.Stun(PN.get_electrocute_damage()*10) + visible_message("The electric chair goes off!", "You hear an electrical discharge!") + + return + +/obj/item/weapon/mesmetron + name = "mesmetron pocketwatch" + desc = "An elaborate pocketwatch, with captivating gold etching and an enchanting face. . ." + icon = 'icons/obj/items.dmi' + icon_state = "pocketwatch" + matter = list("glass" = 150, "gold" = 50) + w_class = 1 + var/datum/weakref/thrall = null + var/time_counter = 0 + +/obj/item/weapon/mesmetron/Destroy() + STOP_PROCESSING(SSfast_process, src) + thrall = null + . = ..() + +/obj/item/weapon/mesmetron/process() + if (!thrall) + STOP_PROCESSING(SSfast_process, src) + return + + var/mob/living/carbon/human/H = thrall.resolve() + if(!H) + thrall = null + STOP_PROCESSING(SSfast_process, src) + return + + if (time_counter > 20) + time_counter += 0.5 + var/thrall_response = alert(H, "Do you believe in hypnosis?", "Willpower", "Yes", "No") + if(thrall_response == "No") + H.sleeping = max(H.sleeping - 40, 0) + H.drowsyness = max(H.drowsyness - 60, 0) + thrall = null + STOP_PROCESSING(SSfast_process, src) + else + H.sleeping = max(H.sleeping, 40) + H.drowsyness = max(H.drowsyness, 60) + else + STOP_PROCESSING(SSfast_process, src) + +/obj/item/weapon/mesmetron/attack_self(mob/user as mob) + if(!thrall || !thrall.resolve()) + thrall = null + user << "You decipher the watch's mesmerizing face, discerning the time to be: '[worldtime2text()]'. Today's date is '[time2text(world.time, "Month DD")]. [game_year]'." + return + + var/mob/living/carbon/human/H = thrall.resolve() + + var/response = alert(user, "Would you like to make a suggestion to [thrall], or release them?", "Mesmetron", "Suggestion", "Release") + + if (response == "Release") + thrall = null + STOP_PROCESSING(SSfast_process, src) + else + if(get_dist(user, H) > 1) + user << "You must stand in whisper range of [H]." + return + + text = input("What would you like to suggest?", "Hypnotic suggestion", null, null) + text = sanitize(text) + if(!text) + return + + var/thrall_response = alert(H, "Do you believe in hypnosis?", "Willpower", "Yes", "No") + if(thrall_response == "Yes") + H << "... [text] ..." + H.cure_all_traumas(cure_type = CURE_HYPNOSIS) + else + thrall = null + +/obj/item/weapon/mesmetron/afterattack(mob/living/carbon/human/H, mob/user, proximity) + if(!proximity) + return + + if(!istype(H)) + return + + user.visible_message("[user] begins to mesmerizingly wave [src] like a pendulum before [H]'s very eyes!") + + if(!do_mob(user, H, 10 SECONDS)) + return + + if((!user in view(1,target))) + return + + var/response = alert(H, "Do you believe in hypnosis?", "Willpower", "Yes", "No") + + if(response == "Yes") + H.visible_message("[H] falls into a deep slumber!", "You fall into a deep slumber!") + + H.sleeping = max(H.sleeping, 40) + H.drowsyness = max(H.drowsyness, 60) + thrall = WEAKREF(H) + START_PROCESSING(SSfast_process, src) + +/obj/structure/metronome + name = "metronome" + desc = "Tick. Tock. Tick. Tock. Tick. Tock." + icon = 'icons/obj/structures.dmi' + icon_state = "metronome1" + anchored = 1 + density = 0 + var/time_last_ran = 0 + var/ticktock = "Tick" + +/obj/structure/metronome/Destroy() + STOP_PROCESSING(SSfast_process, src) + . = ..() + +/obj/structure/metronome/Initialize() + . = ..() + START_PROCESSING(SSfast_process, src) + +/obj/structure/metronome/attackby(obj/item/weapon/W as obj, mob/user as mob) + if(iswrench(W)) + playsound(src.loc, 'sound/items/Ratchet.ogg', 50, 1) + if(anchored) + user << "You unanchor \the [src] and it destabilizes." + STOP_PROCESSING(SSfast_process, src) + icon_state = "metronome0" + anchored = 0 + else + user << "You anchor \the [src] and it restabilizes." + START_PROCESSING(SSfast_process, src) + icon_state = "metronome1" + anchored = 1 + else + ..() + +/obj/structure/metronome/process() + if (world.time - time_last_ran < 60) + return + + time_last_ran = world.time + var/counter = 0 + var/mob/living/carbon/human/H + for(var/mob/living/L in view(3,src.loc)) + counter++ + if(ishuman(L)) + H = L + + if(counter == 1 && H) + if(ticktock == "Tick") + ticktock = "Tock" + else + ticktock = "Tick" + H << "[ticktock]. . ." + H << 'sound/effects/singlebeat.ogg' + if(prob(1)) + H.cure_all_traumas(cure_type = CURE_SOLITUDE) + +/obj/machinery/chakrapod + name = "Crystal Therapy Pod" + desc = "A state-of-the-art crystal therapy pod. Designed to utilize phoron enhanced quartz crystals to remove mental trauma from the body. Proven to be 100% effective 30% of the time!" + icon = 'icons/obj/Cryogenic2.dmi' + icon_state = "syndipod_0" + density = 1 + anchored = 1 + + use_power = 1 + idle_power_usage = 60 + active_power_usage = 10000 + + var/datum/weakref/occupant = null + var/locked + var/obj/machinery/chakraconsole/connected + +/obj/machinery/chakrapod/Destroy() + if (connected) + connected.connected = null + connected = null + + occupant = null + + return ..() + +/obj/machinery/chakrapod/relaymove(mob/user as mob) + if (user.stat) + return + src.go_out() + return + +/obj/machinery/chakrapod/verb/eject() + set src in oview(1) + set category = "Object" + set name = "Eject Crystal Therapy Pod" + + if (usr.stat != 0) + return + src.go_out() + add_fingerprint(usr) + return + +/obj/machinery/chakrapod/verb/move_inside() + set src in oview(1) + set category = "Object" + set name = "Enter Crystal Therapy Pod" + + if (usr.stat != 0 || locked) + return + if (occupant.resolve()) + usr << "The pod is already occupied!" + return + if (usr.abiotic()) + usr << "The subject cannot have abiotic items on." + return + if(locked) + user << "The pod is currently locked!" + return + if(!ishuman(usr)) + user << "The subject does not fit!" + return + usr.pulling = null + usr.client.perspective = EYE_PERSPECTIVE + usr.client.eye = src + usr.forceMove(src) + src.occupant = WEAKREF(usr) + update_use_power(2) + src.icon_state = "syndipod_1" + for(var/obj/O in src) + O.forceMove(get_turf(src)) + src.add_fingerprint(usr) + return + +/obj/machinery/chakrapod/proc/go_out() + if (!src.occupant || !occupant.resolve()) + occupant = null + return + + var/mob/living/carbon/human/H = occupant.resolve() + + if(locked) + H << "You push against the pod door and attempt to escape. This process will take roughly two minutes." + if(!do_after(H, 1200)) + return + + for(var/obj/O in src) + O.forceMove(get_turf(src)) + if (H.client) + H.client.eye = H.client.mob + H.client.perspective = MOB_PERSPECTIVE + H.forceMove(get_turf(src)) + occupant = null + update_use_power(1) + src.icon_state = "syndipod_0" + return + +/obj/machinery/chakrapod/attackby(obj/item/weapon/grab/G, mob/user) + if (!istype(G) || !ishuman(G.affecting)) + return + if (occupant) + user << "The pod is already occupied!" + return + if (G.affecting.abiotic()) + user << "Subject cannot have abiotic items on." + return + if(locked) + user << "The pod is locked." + return + + + var/mob/living/L = G.affecting + visible_message("[user] starts putting [L] into the pod bed.", 3) + + if (do_mob(user, L, 30, needhand = 0)) + var/bucklestatus = L.bucklecheck(user) + if (!bucklestatus)//incase the patient got buckled during the delay + return + if (bucklestatus == 2) + var/obj/structure/LB = L.buckled + LB.user_unbuckle_mob(user) + + if (L.client) + L.client.perspective = EYE_PERSPECTIVE + L.client.eye = src + L.forceMove(src) + occupant = WEAKREF(L) + + update_use_power(2) + icon_state = "syndipod_1" + for(var/obj/O in src) + O.forceMove(get_turf(src)) + + src.add_fingerprint(user) + qdel(G) + return + +/obj/machinery/chakrapod/MouseDrop_T(mob/living/carbon/human/H, mob/living/user) + if(!istype(user) || !istype(H)) + return + if (occupant) + user << "The pod is already occupied!" + return + if (H.abiotic()) + user << "Subject cannot have abiotic items on." + return + if(locked) + user << "The pod is locked." + return + + var/bucklestatus = H.bucklecheck(user) + + if (!bucklestatus)//We must make sure the person is unbuckled before they go in + return + + if(H == user) + visible_message("[user] starts climbing into the pod bed.", 3) + else + visible_message("[user] starts putting [H.name] into the pod bed.", 3) + + if (do_mob(user, H, 30, needhand = 0)) + if (bucklestatus == 2) + var/obj/structure/LB = H.buckled + LB.user_unbuckle_mob(user) + if (H.client) + H.client.perspective = EYE_PERSPECTIVE + H.client.eye = src + H.forceMove(src) + occupant = WEAKREF(H) + update_use_power(2) + src.icon_state = "syndipod_1" + for(var/obj/Obj in src) + Obj.forceMove(get_turf(src)) + src.add_fingerprint(user) + return + +/obj/machinery/chakraconsole + name = "Therapy Pod Console" + desc = "A control panel for some kind of medical device." + icon = 'icons/obj/Cryogenic2.dmi' + icon_state = "syndipod_scannerconsole" + density = 0 + anchored = 1 + var/obj/machinery/chakrapod/connected + var/crystal = 0 + var/working = 0 + +/obj/machinery/chakraconsole/ex_act(severity) + + switch(severity) + if(1.0) + qdel(src) + return + if(2.0) + if (prob(50)) + qdel(src) + return + else + return + +/obj/machinery/chakraconsole/Destroy() + if (connected) + connected.connected = null + connected = null + + return ..() + +/obj/machinery/chakraconsole/power_change() + ..() + if((stat & BROKEN) || (stat & NOPOWER)) + icon_state = "syndipod_scannerconsole-p" + else + icon_state = initial(icon_state) + +/obj/machinery/chakraconsole/Initialize() + . = ..() + for(var/obj/machinery/chakrapod/C in orange(1,src)) + connected = C + break + if(connected) + connected.connected = src + +/obj/machinery/chakraconsole/Destroy() + if (connected) + connected.connected = null + connected = null + + . = ..() + +/obj/machinery/chakraconsole/attack_ai(user as mob) + return src.attack_hand(user) + +/obj/machinery/chakraconsole/attack_hand(user as mob) + if(..()) + return + + button_prompt(user) + +/obj/machinery/chakraconsole/emag_act(var/remaining_charges, var/mob/user) + if(!emagged) + user << "You short out [src]'s safety measurements." + visible_message("[src] hums oddly...") + emagged = 1 + return 1 + +/obj/machinery/chakraconsole/proc/button_prompt(user as mob) + var/mob/living/carbon/human/H = connected && connected.occupant ? connected.occupant.resolve() : null + if(!H) + user << "The pod is currently unoccupied." + else + var/list/choices1 = list("Therapy Pod", "Toggle Locking Mechanism", "Initiate Neural Scan", "Initiate Crystal Therapy", "Recycle Crystal", "Cancel") + if(emagged) + choices1.Add("%eRr:# C:\\NT>quaid.exe") + var/response1 = input(user,"Input Operation","Therapy Pod OS") as null|anything in choices1 + + switch(response1) + if("Toggle Locking Mechanism") + connected.locked = !connected.locked + visible_message("[connected]'s locking mechanism clicks.", "You hear a click.") + return + if("Initiate Neural Scan") + visible_message("[connected] begins humming with an electrical tone.", "You hear an electrical humming.") + if(H && connected.occupant.resolve() == H) + var/obj/item/organ/brain/sponge = H.internal_organs_by_name["brain"] + var/retardation = H.getBrainLoss() + if(sponge && istype(sponge)) + if(!sponge.lobotomized) + user << "Scans indicate [retardation] distinct abnormalities present in subject." + return + else + user << "Scans indicate [retardation+rand(-20,20)] distinct abnormalities present in subject." + return + + user << "Scans indicate total brain failure in subject." + return + if("Initiate Crystal Therapy") + if(!crystal) + neural_check(user, H) + return + user << "Error: Crystal depleted. Terminating operation.." + playsound(src, 'sound/machines/buzz-two.ogg', 50, 1) + visible_message("[connected] buzzes harshly.", "You hear a sharp buzz.") + if("%eRr:# C:\\NT>quaid.exe") + if(!crystal) + total_recall(user, H) + return + user << "Error: Crystal depleted. Terminating operation.." + playsound(src, 'sound/machines/buzz-two.ogg', 50, 1) + visible_message("[connected] buzzes harshly.", "You hear a sharp buzz.") + if("Recycle Crystal") + if(crystal) + user << "Eliminating depleted crystal." + playsound(src.loc, 'sound/machines/juicer.ogg', 50, 1) + sleep(100) + crystal = 0 + visible_message("[connected] pings cheerfully.", "You hear a ping.") + playsound(src.loc, 'sound/machines/ding.ogg', 50, 1) + return + user << "Error: Crystal depletion not detected. Terminating operation.." + playsound(src, 'sound/machines/buzz-two.ogg', 50, 1) + visible_message("[connected] buzzes harshly.", "You hear a sharp buzz.") + +/obj/machinery/chakraconsole/proc/neural_check(var/mob/user, var/mob/living/carbon/human/H) + var/response = input(user,"Input number of rotations","Therapy Pod","0") + var/alert = text2num(sanitize(response)) + if(!alert) + user << "Error. Invalid input." + return + + for(var/i=0;iError: Subject not recognized. Terminating operation." + playsound(src, 'sound/machines/buzz-two.ogg', 50, 1) + visible_message("[connected] buzzes harshly.", "You hear a sharp buzz.") + break + + var/obj/item/organ/brain/sponge = H.internal_organs_by_name["brain"] + if (!istype(sponge) || !sponge.traumas.len) + if(get_dist(user,src) <= 1) + user << "Error: Subject not recognized. Terminating operation." + playsound(src, 'sound/machines/buzz-two.ogg', 50, 1) + visible_message("[connected] buzzes harshly.", "You hear a sharp buzz.") + break + + for(var/X in sponge.traumas) + var/datum/brain_trauma/trauma = X + if(trauma.cure_type == CURE_CRYSTAL) + if(!trauma.permanent) + qdel(trauma) + electroshock_trauma = 1 + break + + if(electroshock_trauma) + visible_message("[connected] pings cheerfully.", "You hear a ping.") + playsound(src.loc, 'sound/machines/ding.ogg', 50, 1) + + else + if(get_dist(user,src) <= 1) + user << "Error: Brain abnormality not recognized. Subject contamination detected." + playsound(src, 'sound/machines/buzz-two.ogg', 50, 1) + visible_message("[connected] buzzes harshly.", "You hear a sharp buzz.") + H.apply_radiation(max(1,i)) + +/obj/machinery/chakraconsole/proc/total_recall(var/mob/user, var/mob/living/carbon/human/H) + if(H && H == connected.occupant.resolve()) + var/list/choices1 = list("Wipe Memory", "Implant Memory", "Cancel") + var/response1 = input(user,"Input operation.","quaid.exe") as null|anything in choices1 + if(response1 == "Cancel") + return + if(response1 == "Wipe Memory") + var/list/choices2 = list("5 minutes", "15 minutes", "30 minutes", "2 hours", "6 months", "Cancel") + var/response2 = input(user,"Input timeframe.","Memory Wipe") as null|anything in choices2 + if(response2 != "Cancel") + user << "Initiating memory wipe. Process will take approximately two minutes." + H << "You feel a sharp pain in your brain as the therapy pod begins to hum menacingly!!" + sleep(1200-rand(0,150)) + if(H && H == connected.occupant.resolve()) + var/timespan = response2 + H << "You feel a part of your past self, a portion of your memories, a piece of your very being slip away..." + H << "Your memory of the past [timespan] has been wiped. Your ability to recall these past [timespan] has been removed from your brain, and you remember nothing that ever ocurred within those [timespan]." + crystal = 1 + return + else + return + if(response1 == "Implant Memory") + var/new_memory = input(user,"Input New Memory","quaid.exe") + var/memory_implant = sanitize(new_memory) + if(memory_implant) + user << "Initiating memory implantation. Process will take approximately two minutes. Subject's memory of this process will also be wiped." + H << "You feel a sharp pain in your brain as the therapy pod begins to hum menacingly!" + sleep(1200-rand(0,150)) + if(H && H == connected.occupant.resolve()) + H << "You blink, and somehow between the timespan of your eyes closing and your eyes opening your perception of the world has changed in some imperceptible way..." + H << "A new memory has been implanted in your mind as follows: [memory_implant] - you have no reason to suspect the memory to be fabricated, as your memory of the past two minutes has also been altered." + crystal = 1 + return + if(get_dist(user,src) <= 1) + user << "Error: Operation failed. Terminating operation." + playsound(src, 'sound/machines/buzz-two.ogg', 50, 1) + visible_message("[connected] buzzes harshly.", "You hear a sharp buzz.") diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index f50f97c0433..698393e9424 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -637,7 +637,7 @@ var/list/admin_verbs_cciaa = list( var/mob/living/carbon/human/C = T - C.cure_all_traumas(TRUE, TRUE) + C.cure_all_traumas(TRUE, CURE_ADMIN) log_and_message_admins("cured [key_name(C)]'s traumas.") feedback_add_details("admin_verb","TB") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!\ diff --git a/code/modules/clothing/spacesuits/rig/rig.dm b/code/modules/clothing/spacesuits/rig/rig.dm index 78c0155f444..94d0d37a4bf 100644 --- a/code/modules/clothing/spacesuits/rig/rig.dm +++ b/code/modules/clothing/spacesuits/rig/rig.dm @@ -728,7 +728,8 @@ take_hit((100/severity_class), "electrical pulse", 1) /obj/item/weapon/rig/proc/shock(mob/user) - if (electrocute_mob(user, cell, src)) //electrocute_mob() handles removing charge from the cell, no need to do that here. + var/touchy = pick("chest","head","groin") + if (electrocute_mob(user, cell, src, contact_zone = touchy)) //electrocute_mob() handles removing charge from the cell, no need to do that here. spark_system.queue() if(user.stunned) return 1 diff --git a/code/modules/mob/living/carbon/brain/brain_item.dm b/code/modules/mob/living/carbon/brain/brain_item.dm index 40178655c41..12812436872 100644 --- a/code/modules/mob/living/carbon/brain/brain_item.dm +++ b/code/modules/mob/living/carbon/brain/brain_item.dm @@ -191,8 +191,11 @@ if(trauma && (cure_permanent || !trauma.permanent)) qdel(trauma) -/obj/item/organ/brain/proc/cure_all_traumas(cure_permanent = FALSE) +/obj/item/organ/brain/proc/cure_all_traumas(cure_permanent = FALSE, cure_type = "") for(var/X in traumas) var/datum/brain_trauma/trauma = X - if(cure_permanent || !trauma.permanent) - qdel(trauma) \ No newline at end of file + if(trauma.cure_type == cure_type || cure_type == CURE_ADMIN) + if(cure_permanent || !trauma.permanent) + qdel(trauma) + if(cure_type != CURE_ADMIN) + break \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 9c6e05cb000..20bc5f70921 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -453,6 +453,8 @@ var/obj/item/organ/external/affecting for (var/area in damage_areas) + if(area == "head" && shock_damage >= 5 && prob(15)) + cure_all_traumas(cure_type = CURE_CRYSTAL) affecting = get_organ(check_zone(area)) var/emp_damage switch(shock_damage) @@ -1602,7 +1604,7 @@ if(B && species && species.has_organ["brain"] && !isipc(src)) . = B.cure_trauma_type(brain_trauma_type, cure_permanent) -/mob/living/carbon/human/proc/cure_all_traumas(cure_permanent = FALSE) +/mob/living/carbon/human/proc/cure_all_traumas(cure_permanent = FALSE, cure_type = "") var/obj/item/organ/brain/B = internal_organs_by_name["brain"] if(B && species && species.has_organ["brain"] && !isipc(src)) - . = B.cure_all_traumas(cure_permanent) + . = B.cure_all_traumas(cure_permanent, cure_type) diff --git a/code/modules/power/power.dm b/code/modules/power/power.dm index 37705e74b7b..86ece271e13 100644 --- a/code/modules/power/power.dm +++ b/code/modules/power/power.dm @@ -316,17 +316,12 @@ //power_source is a source of electricity, can be powercell, area, apc, cable, powernet or null //source is an object caused electrocuting (airlock, grille, etc) //No animations will be performed by this proc. -/proc/electrocute_mob(mob/living/carbon/M as mob, var/power_source, var/obj/source, var/siemens_coeff = 1.0) +/proc/electrocute_mob(mob/living/carbon/M as mob, var/power_source, var/obj/source, var/siemens_coeff = 1.0, var/contact_zone = "hand") if (!M) return 0 if(istype(M.loc,/obj/mecha)) return 0 //feckin mechs are dumb - var/mob/living/carbon/human/H = null - if (ishuman(M)) - H = M //20/1/16 Insulation (vaurca) - if(isvaurca(H)) - return 0 var/area/source_area if(istype(power_source,/area)) source_area = power_source @@ -356,10 +351,13 @@ //If following checks determine user is protected we won't alarm for long. if(PN) PN.trigger_warning(5) + var/mob/living/carbon/human/H + if(ishuman(M)) + H = M if(H) if(H.species.siemens_coefficient == 0) return - if(H.gloves) + if(H.gloves && contact_zone == "hand") var/obj/item/clothing/gloves/G = H.gloves if(G.siemens_coefficient == 0) return 0 //to avoid spamming with insulated glvoes on @@ -383,12 +381,17 @@ else power_source = cell shock_damage = cell_damage + var/drained_hp var/touchy_hand - if(M.hand) - touchy_hand = "r_hand" + if(contact_zone == "hand") + if(M.hand) + touchy_hand = "r_hand" + else + touchy_hand = "l_hand" + if(!touchy_hand) + drained_hp = M.electrocute_act(shock_damage, source, siemens_coeff, ground_zero = contact_zone) //zzzzzzap! else - touchy_hand = "l_hand" - var/drained_hp = M.electrocute_act(shock_damage, source, siemens_coeff, ground_zero = touchy_hand) //zzzzzzap! + drained_hp = M.electrocute_act(shock_damage, source, siemens_coeff, ground_zero = touchy_hand) //zzzzzzap! var/drained_energy = drained_hp*20 if (source_area) diff --git a/code/modules/supermatter/supermatter.dm b/code/modules/supermatter/supermatter.dm index ffd43fdd1c2..1594ea3526b 100644 --- a/code/modules/supermatter/supermatter.dm +++ b/code/modules/supermatter/supermatter.dm @@ -265,6 +265,8 @@ for(var/mob/living/carbon/human/l in view(src, min(7, round(sqrt(power/6))))) // If they can see it without mesons on. Bad on them. if(!istype(l.glasses, /obj/item/clothing/glasses/meson) && !l.is_diona() && !l.isSynthetic()) l.hallucination = max(0, min(200, l.hallucination + power * config_hallucination_power * sqrt( 1 / max(1,get_dist(l, src)) ) ) ) + if(prob(15)) + l.cure_all_traumas(cure_type = CURE_HYPNOSIS) //adjusted range so that a power of 170 (pretty high) results in 9 tiles, roughly the distance from the core to the engine monitoring room. //note that the rads given at the maximum range is a constant 0.2 - as power increases the maximum range merely increases. diff --git a/code/modules/surgery/organs_internal.dm b/code/modules/surgery/organs_internal.dm index e0e9fb101f1..79dcead7b04 100644 --- a/code/modules/surgery/organs_internal.dm +++ b/code/modules/surgery/organs_internal.dm @@ -77,7 +77,7 @@ I.damage = 0 var/obj/item/organ/brain/sponge = target.internal_organs_by_name["brain"] if(sponge && istype(I, sponge)) - target.cure_all_traumas() + target.cure_all_traumas(cure_type = CURE_SURGERY) fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) diff --git a/html/changelogs/mentalhealthday.yml b/html/changelogs/mentalhealthday.yml new file mode 100644 index 00000000000..03a54c5059e --- /dev/null +++ b/html/changelogs/mentalhealthday.yml @@ -0,0 +1,39 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +################################# + +# Your name. +author: LordFowl + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Added electroshock, hypnotic, and isolation therapy. Each cures a specific set of traumas." + - tweak: "Brain surgery now only cures certain traumas." + - maptweak: "Expanded the psychiatry office into a mental health ward." diff --git a/icons/obj/Cryogenic2.dmi b/icons/obj/Cryogenic2.dmi index 3519217d2db..938ed0161d9 100644 Binary files a/icons/obj/Cryogenic2.dmi and b/icons/obj/Cryogenic2.dmi differ diff --git a/icons/obj/assemblies/new_assemblies.dmi b/icons/obj/assemblies/new_assemblies.dmi index 16203d23cec..f05f10faafd 100644 Binary files a/icons/obj/assemblies/new_assemblies.dmi and b/icons/obj/assemblies/new_assemblies.dmi differ diff --git a/icons/obj/furniture.dmi b/icons/obj/furniture.dmi index 1e804f06353..238e093a13f 100644 Binary files a/icons/obj/furniture.dmi and b/icons/obj/furniture.dmi differ diff --git a/icons/obj/items.dmi b/icons/obj/items.dmi index e88cf2a79cd..daf7a543706 100644 Binary files a/icons/obj/items.dmi and b/icons/obj/items.dmi differ diff --git a/icons/obj/objects.dmi b/icons/obj/objects.dmi index 4de4a9a9365..64dc6577d53 100644 Binary files a/icons/obj/objects.dmi and b/icons/obj/objects.dmi differ diff --git a/icons/obj/structures.dmi b/icons/obj/structures.dmi index 0f07846e259..3f1b7ba5366 100644 Binary files a/icons/obj/structures.dmi and b/icons/obj/structures.dmi differ diff --git a/maps/aurora/aurora-4_mainlevel.dmm b/maps/aurora/aurora-4_mainlevel.dmm index ace8859ff0e..d32c5674923 100644 --- a/maps/aurora/aurora-4_mainlevel.dmm +++ b/maps/aurora/aurora-4_mainlevel.dmm @@ -731,12 +731,6 @@ /obj/effect/floor_decal/corner/blue, /turf/simulated/floor/tiled, /area/security/vacantoffice2) -"abw" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice2) "abx" = ( /obj/structure/bed/chair/office/dark, /obj/effect/floor_decal/corner/blue{ @@ -1354,17 +1348,6 @@ }, /turf/simulated/floor/tiled, /area/security/vacantoffice2) -"acK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice2) "acL" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -1551,10 +1534,16 @@ /obj/effect/floor_decal/corner/blue{ dir = 10 }, -/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/security/vacantoffice2) "acZ" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/security/vacantoffice2) +"ada" = ( /obj/machinery/disposal, /obj/machinery/light{ dir = 4; @@ -1569,7 +1558,7 @@ }, /turf/simulated/floor/tiled, /area/security/vacantoffice2) -"ada" = ( +"adb" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -1587,7 +1576,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/vacantoffice2) -"adb" = ( +"adc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -1605,15 +1594,15 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adc" = ( +"add" = ( /obj/structure/barricade, /turf/simulated/floor/tiled, /area/maintenance/security_starboard) -"add" = ( +"ade" = ( /obj/structure/morgue, /turf/simulated/floor/tiled, /area/maintenance/security_starboard) -"ade" = ( +"adf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ d1 = 1; @@ -1622,16 +1611,16 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"adf" = ( +"adg" = ( /obj/item/bodybag, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/maintenance/security_starboard) -"adg" = ( +"adh" = ( /obj/effect/decal/cleanable/generic, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"adh" = ( +"adi" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -1643,7 +1632,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"adi" = ( +"adj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/hydrant{ pixel_x = 0; @@ -1651,63 +1640,63 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"adj" = ( +"adk" = ( /obj/item/device/t_scanner, /obj/structure/table/steel, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"adk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/civ) "adl" = ( -/obj/random/junk, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/maintenance/civ) "adm" = ( +/obj/random/junk, +/turf/simulated/floor/tiled, +/area/maintenance/civ) +"adn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/maintenance/civ) -"adn" = ( +"ado" = ( /obj/machinery/constructable_frame/machine_frame, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/civ) -"ado" = ( +"adp" = ( /obj/machinery/constructable_frame/machine_frame, /turf/simulated/floor/plating, /area/maintenance/civ) -"adp" = ( +"adq" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/civ) -"adq" = ( +"adr" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/effect/decal/cleanable/cobweb2, /obj/effect/decal/remains/mouse, /turf/simulated/floor/plating, /area/maintenance/civ) -"adr" = ( +"ads" = ( /obj/structure/grille/broken, /obj/structure/lattice, /obj/item/weapon/material/shard, /turf/simulated/floor/airless, /area/mine/unexplored) -"ads" = ( +"adt" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/airless, /area/mine/unexplored) -"adt" = ( +"adu" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance"; req_access = list(1) }, /turf/simulated/floor/plating, /area/security/vacantoffice2) -"adu" = ( +"adv" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/cups, /obj/effect/floor_decal/corner/blue/diagonal, @@ -1717,7 +1706,7 @@ }, /turf/simulated/floor/tiled, /area/security/vacantoffice2) -"adv" = ( +"adw" = ( /obj/item/device/radio/intercom/locked{ pixel_y = -32 }, @@ -1729,7 +1718,7 @@ /obj/machinery/papershredder, /turf/simulated/floor/tiled, /area/security/vacantoffice2) -"adw" = ( +"adx" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/effect/floor_decal/corner/blue/diagonal, /obj/machinery/alarm{ @@ -1739,7 +1728,7 @@ }, /turf/simulated/floor/tiled, /area/security/vacantoffice2) -"adx" = ( +"ady" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -1757,7 +1746,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ady" = ( +"adz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/airlock/maintenance{ @@ -1767,7 +1756,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"adz" = ( +"adA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ @@ -1777,13 +1766,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"adA" = ( +"adB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"adB" = ( +"adC" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -1795,45 +1784,45 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"adC" = ( +"adD" = ( /mob/living/simple_animal/mouse/gray, /turf/simulated/floor/tiled, /area/maintenance/civ) -"adD" = ( +"adE" = ( /obj/item/stack/tile/floor, /turf/simulated/floor/plating, /area/maintenance/civ) -"adE" = ( +"adF" = ( /obj/effect/decal/remains/mouse, /turf/simulated/floor/plating, /area/maintenance/civ) -"adF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/civ) "adG" = ( -/mob/living/simple_animal/mouse/gray, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/civ) "adH" = ( +/mob/living/simple_animal/mouse/gray, /turf/simulated/floor/plating, /area/maintenance/civ) "adI" = ( +/turf/simulated/floor/plating, +/area/maintenance/civ) +"adJ" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/civ) -"adJ" = ( +"adK" = ( /obj/structure/grille, /turf/simulated/floor/airless, /area/mine/unexplored) -"adK" = ( +"adL" = ( /obj/structure/grille/broken, /obj/structure/lattice, /turf/simulated/floor/airless, /area/mine/unexplored) -"adL" = ( +"adM" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -1847,7 +1836,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"adM" = ( +"adN" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -1862,7 +1851,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"adN" = ( +"adO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -1887,7 +1876,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adO" = ( +"adP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -1904,7 +1893,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adP" = ( +"adQ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -1923,7 +1912,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adQ" = ( +"adR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -1941,7 +1930,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adR" = ( +"adS" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1959,7 +1948,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adS" = ( +"adT" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -1972,7 +1961,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adT" = ( +"adU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -1992,7 +1981,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adU" = ( +"adV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2006,7 +1995,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adV" = ( +"adW" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2023,7 +2012,7 @@ dir = 4 }, /area/security/brig) -"adW" = ( +"adX" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2040,7 +2029,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adX" = ( +"adY" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2054,7 +2043,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adY" = ( +"adZ" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -2068,13 +2057,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adZ" = ( +"aea" = ( /obj/machinery/newscaster{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/security/brig) -"aea" = ( +"aeb" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -2082,11 +2071,11 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aeb" = ( +"aec" = ( /obj/item/bodybag, /turf/simulated/floor/tiled, /area/maintenance/security_starboard) -"aec" = ( +"aed" = ( /obj/item/stack/tile/floor, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -2097,7 +2086,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aed" = ( +"aee" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2107,14 +2096,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aee" = ( +"aef" = ( /obj/item/stack/tile/floor, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aef" = ( +"aeg" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance"; req_access = list(1) @@ -2125,7 +2114,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aeg" = ( +"aeh" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -2143,7 +2132,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aeh" = ( +"aei" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -2157,39 +2146,39 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aei" = ( +"aej" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aej" = ( +"aek" = ( /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/mouse/gray, /turf/simulated/floor/tiled, /area/maintenance/civ) -"aek" = ( +"ael" = ( /turf/simulated/floor/tiled, /area/maintenance/civ) -"ael" = ( +"aem" = ( /obj/item/stack/tile/floor, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/civ) -"aem" = ( +"aen" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/civ) -"aen" = ( +"aeo" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aeo" = ( +"aep" = ( /obj/item/weapon/material/shard{ icon_state = "small" }, /turf/simulated/floor/airless, /area/mine/unexplored) -"aep" = ( +"aeq" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -2197,7 +2186,7 @@ /obj/item/weapon/folder/sec, /turf/simulated/floor/tiled, /area/security/brig) -"aeq" = ( +"aer" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2206,7 +2195,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aer" = ( +"aes" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2215,7 +2204,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aes" = ( +"aet" = ( /obj/machinery/door/airlock/security{ name = "Interrogation Monitoring"; req_access = list(63) @@ -2229,7 +2218,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/brig) -"aet" = ( +"aeu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -2243,7 +2232,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aeu" = ( +"aev" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -2251,7 +2240,7 @@ /obj/effect/floor_decal/corner/blue, /turf/simulated/floor/tiled, /area/security/brig) -"aev" = ( +"aew" = ( /obj/structure/disposalpipe/junction{ dir = 8 }, @@ -2261,18 +2250,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aew" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/brig) "aex" = ( -/obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -2283,12 +2261,23 @@ /turf/simulated/floor/tiled, /area/security/brig) "aey" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"aez" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/brig) -"aez" = ( +"aeA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -2299,7 +2288,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aeA" = ( +"aeB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -2308,7 +2297,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aeB" = ( +"aeC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -2317,7 +2306,7 @@ dir = 4 }, /area/security/brig) -"aeC" = ( +"aeD" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -2330,7 +2319,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aeD" = ( +"aeE" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -2348,7 +2337,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aeE" = ( +"aeF" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2365,7 +2354,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aeF" = ( +"aeG" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance"; req_access = list(1) @@ -2387,7 +2376,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aeG" = ( +"aeH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2404,7 +2393,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/security_starboard) -"aeH" = ( +"aeI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2421,7 +2410,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aeI" = ( +"aeJ" = ( /obj/item/weapon/reagent_containers/food/snacks/donkpocket, /obj/effect/decal/cleanable/generic, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2440,7 +2429,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aeJ" = ( +"aeK" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -2451,7 +2440,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/security_starboard) -"aeK" = ( +"aeL" = ( /obj/structure/morgue{ icon_state = "morgue1"; dir = 8 @@ -2463,7 +2452,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/maintenance/security_starboard) -"aeL" = ( +"aeM" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -2476,7 +2465,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aeM" = ( +"aeN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -2495,48 +2484,48 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aeN" = ( +"aeO" = ( /turf/simulated/wall, /area/maintenance/civ) -"aeO" = ( +"aeP" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/maintenance/civ) -"aeP" = ( +"aeQ" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/maintenance/civ) -"aeQ" = ( +"aeR" = ( /obj/structure/table/reinforced, /obj/item/trash/tray, /obj/machinery/door/window/southleft, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"aeR" = ( +"aeS" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"aeS" = ( +"aeT" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, /obj/random/loot, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"aeT" = ( +"aeU" = ( /obj/structure/table/reinforced, /obj/item/trash/tray, /obj/machinery/door/window/southright, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"aeU" = ( +"aeV" = ( /obj/effect/landmark{ name = "carpspawn" }, @@ -2545,18 +2534,18 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"aeV" = ( +"aeW" = ( /obj/structure/grille/broken, /obj/effect/decal/cleanable/dirt, /obj/random/loot, /turf/simulated/floor/airless, /area/mine/unexplored) -"aeW" = ( +"aeX" = ( /obj/structure/closet, /obj/item/clothing/head/ushanka, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aeX" = ( +"aeY" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin{ pixel_x = 2; @@ -2569,7 +2558,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aeY" = ( +"aeZ" = ( /obj/machinery/computer/security/telescreen{ layer = 4; name = "Observation Screen"; @@ -2580,7 +2569,7 @@ /obj/structure/bed/chair, /turf/simulated/floor/tiled, /area/security/brig) -"aeZ" = ( +"afa" = ( /obj/structure/bed/chair, /obj/item/device/radio/intercom{ frequency = 1449; @@ -2592,7 +2581,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"afa" = ( +"afb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -2606,7 +2595,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"afb" = ( +"afc" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -2621,7 +2610,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"afc" = ( +"afd" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -2636,10 +2625,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"afd" = ( +"afe" = ( /turf/simulated/wall/r_wall, /area/security/investigations) -"afe" = ( +"aff" = ( /obj/machinery/door/airlock/security{ name = "Evidence Storage"; req_access = list(1) @@ -2650,32 +2639,32 @@ temperature = 278 }, /area/security/investigations) -"aff" = ( +"afg" = ( /obj/random/toolbox, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"afg" = ( +"afh" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"afh" = ( +"afi" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/maintenance/security_starboard) -"afi" = ( +"afj" = ( /obj/structure/morgue{ icon_state = "morgue1"; dir = 8 }, /turf/simulated/floor/tiled, /area/maintenance/security_starboard) -"afj" = ( +"afk" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"afk" = ( +"afl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -2689,39 +2678,39 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"afl" = ( +"afm" = ( /obj/effect/decal/cleanable/cobweb2{ icon_state = "cobweb1" }, /turf/simulated/floor/tiled, /area/maintenance/civ) -"afm" = ( +"afn" = ( /obj/effect/decal/remains/mouse, /turf/simulated/floor/tiled, /area/maintenance/civ) -"afn" = ( +"afo" = ( /obj/item/stack/tile/floor, /obj/effect/decal/cleanable/generic, /turf/simulated/floor/plating, /area/maintenance/civ) -"afo" = ( +"afp" = ( /obj/effect/decal/cleanable/vomit, /turf/simulated/floor/plating, /area/maintenance/civ) -"afp" = ( +"afq" = ( /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/mouse/gray, /turf/simulated/floor/plating, /area/maintenance/civ) -"afq" = ( +"afr" = ( /turf/simulated/wall, /area/maintenance/engineering) -"afr" = ( +"afs" = ( /obj/machinery/door/airlock/external, /obj/machinery/door/firedoor, /turf/simulated/floor/airless, /area/maintenance/engineering) -"afs" = ( +"aft" = ( /obj/structure/grille, /obj/structure/window/reinforced/tinted, /obj/structure/window/reinforced/tinted{ @@ -2734,7 +2723,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"aft" = ( +"afu" = ( /obj/structure/grille, /obj/structure/window/reinforced/tinted, /obj/structure/window/reinforced/tinted{ @@ -2743,7 +2732,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"afu" = ( +"afv" = ( /obj/structure/grille, /obj/structure/window/reinforced/tinted, /obj/structure/window/reinforced/tinted{ @@ -2756,7 +2745,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"afv" = ( +"afw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -2774,7 +2763,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"afw" = ( +"afx" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -2782,7 +2771,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"afx" = ( +"afy" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -2791,21 +2780,21 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"afy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/security/brig) "afz" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) "afA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/security/brig) +"afB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/tiled, /area/security/brig) -"afB" = ( +"afC" = ( /obj/structure/closet{ name = "Evidence Closet" }, @@ -2815,13 +2804,13 @@ temperature = 278 }, /area/security/investigations) -"afC" = ( +"afD" = ( /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 }, /area/security/investigations) -"afD" = ( +"afE" = ( /obj/structure/table/standard, /obj/machinery/firealarm/north, /obj/item/weapon/storage/box/bodybags, @@ -2831,7 +2820,7 @@ temperature = 278 }, /area/security/investigations) -"afE" = ( +"afF" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -2843,45 +2832,45 @@ /obj/structure/closet/crate, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"afF" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled, -/area/maintenance/civ) "afG" = ( /obj/item/weapon/stool/padded, -/mob/living/simple_animal/mouse/gray, /turf/simulated/floor/tiled, /area/maintenance/civ) "afH" = ( /obj/item/weapon/stool/padded, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, +/mob/living/simple_animal/mouse/gray, +/turf/simulated/floor/tiled, /area/maintenance/civ) "afI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/stool/padded, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/civ) "afJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/civ) +"afK" = ( /obj/structure/barricade, /obj/structure/grille, /turf/simulated/floor/plating, /area/maintenance/engineering) -"afK" = ( +"afL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled, /area/security/brig) -"afL" = ( +"afM" = ( /obj/structure/bed/chair, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/brig) -"afM" = ( +"afN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 6 @@ -2891,7 +2880,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"afN" = ( +"afO" = ( /obj/machinery/door/airlock/security{ name = "Interrogation"; req_access = list(63) @@ -2905,7 +2894,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/brig) -"afO" = ( +"afP" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -2920,7 +2909,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled, /area/security/brig) -"afP" = ( +"afQ" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -2939,7 +2928,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"afQ" = ( +"afR" = ( /obj/machinery/door/airlock/glass_security{ icon_state = "door_locked"; locked = 1; @@ -2967,7 +2956,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"afR" = ( +"afS" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -2982,14 +2971,14 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"afS" = ( +"afT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"afT" = ( +"afU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -2998,7 +2987,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"afU" = ( +"afV" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb2{ @@ -3007,27 +2996,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"afV" = ( +"afW" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"afW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/security/investigations) "afX" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 @@ -3037,12 +3012,11 @@ /obj/structure/closet{ name = "Evidence Closet" }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1"; - pixel_y = 0 +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 }, +/obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 @@ -3229,28 +3203,13 @@ /turf/simulated/floor/plating, /area/security/brig) "agv" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/security/investigations) -"agw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 }, /area/security/investigations) -"agx" = ( +"agw" = ( /obj/machinery/camera/network/security{ c_tag = "Security - Evidence Storage Starboard"; dir = 8 @@ -3260,14 +3219,14 @@ temperature = 278 }, /area/security/investigations) -"agy" = ( +"agx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agz" = ( +"agy" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -3279,7 +3238,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agA" = ( +"agz" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Maintenance Access"; @@ -3287,20 +3246,20 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agB" = ( +"agA" = ( /obj/item/weapon/stool/padded, /obj/item/weapon/material/shard, /turf/simulated/floor/tiled, /area/maintenance/civ) -"agC" = ( +"agB" = ( /obj/item/weapon/stool/padded, /obj/item/stack/tile/floor, /turf/simulated/floor/tiled, /area/maintenance/civ) -"agD" = ( +"agC" = ( /turf/simulated/wall/r_wall, /area/engineering/atmos) -"agE" = ( +"agD" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -3314,7 +3273,7 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"agF" = ( +"agE" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -3324,7 +3283,7 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"agG" = ( +"agF" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -3337,24 +3296,24 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"agH" = ( +"agG" = ( /obj/structure/sign/vacuum{ pixel_y = 32 }, /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/plating, /area/maintenance/engineering) -"agI" = ( +"agH" = ( /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/engineering) -"agJ" = ( +"agI" = ( /obj/item/stack/cable_coil, /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/engineering) -"agK" = ( +"agJ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -3366,18 +3325,18 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) +"agK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/engineering) "agL" = ( /obj/structure/grille, /obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"agM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 }, @@ -3387,7 +3346,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) -"agN" = ( +"agM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -3402,13 +3361,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agO" = ( +"agN" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/tiled, /area/security/brig) -"agP" = ( +"agO" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -3425,7 +3384,7 @@ /obj/structure/closet/walllocker/emerglocker/west, /turf/simulated/floor/tiled, /area/security/brig) -"agQ" = ( +"agP" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -3436,7 +3395,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"agR" = ( +"agQ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -3448,12 +3407,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"agS" = ( +"agR" = ( /obj/effect/floor_decal/industrial/loading, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"agT" = ( +"agS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 @@ -3463,7 +3422,7 @@ temperature = 278 }, /area/security/investigations) -"agU" = ( +"agT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -3472,37 +3431,37 @@ temperature = 278 }, /area/security/investigations) -"agV" = ( +"agU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/closet, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agW" = ( +"agV" = ( /obj/machinery/computer/arcade, /turf/simulated/floor/wood, /area/maintenance/civ) -"agX" = ( +"agW" = ( /obj/machinery/constructable_frame/machine_frame, /turf/simulated/floor/wood, /area/maintenance/civ) -"agY" = ( +"agX" = ( /obj/item/stack/tile/floor, /turf/simulated/floor/tiled, /area/maintenance/civ) -"agZ" = ( +"agY" = ( /obj/item/stack/rods, /obj/item/weapon/material/shard, /turf/simulated/floor/tiled, /area/maintenance/civ) -"aha" = ( +"agZ" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_waste) -"ahb" = ( +"aha" = ( /turf/simulated/wall/r_wall, /area/engineering/drone_fabrication) -"ahc" = ( +"ahb" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -3518,12 +3477,12 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"ahd" = ( +"ahc" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahe" = ( +"ahd" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/window/reinforced{ @@ -3531,7 +3490,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahf" = ( +"ahe" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/window/reinforced{ @@ -3540,7 +3499,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahg" = ( +"ahf" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/portables_connector, /obj/structure/window/reinforced{ @@ -3551,7 +3510,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahh" = ( +"ahg" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -3562,7 +3521,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahi" = ( +"ahh" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ icon_state = "map"; dir = 1 @@ -3576,7 +3535,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahj" = ( +"ahi" = ( /obj/machinery/atmospherics/pipe/zpipe/down/cyan{ icon_state = "down"; dir = 8 @@ -3585,7 +3544,7 @@ /obj/machinery/firealarm/east, /turf/simulated/open, /area/engineering/atmos) -"ahk" = ( +"ahj" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -3600,7 +3559,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ahl" = ( +"ahk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -3614,7 +3573,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ahm" = ( +"ahl" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -3632,7 +3591,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ahn" = ( +"ahm" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -3647,7 +3606,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aho" = ( +"ahn" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -3663,7 +3622,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ahp" = ( +"aho" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3679,21 +3638,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) +"ahp" = ( +/obj/structure/cable{ + 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/engineering) "ahq" = ( -/obj/structure/cable{ - 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/engineering) -"ahr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -3712,10 +3671,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"ahs" = ( +"ahr" = ( /turf/simulated/wall/r_wall, /area/security/brig) -"aht" = ( +"ahs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -3734,7 +3693,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ahu" = ( +"aht" = ( /obj/effect/floor_decal/corner/blue/full{ dir = 1 }, @@ -3751,22 +3710,22 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ahv" = ( +"ahu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/spiderling_remains, /turf/simulated/floor/tiled, /area/security/brig) -"ahw" = ( +"ahv" = ( /obj/machinery/door/firedoor, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"ahx" = ( +"ahw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/remains/mouse, /turf/simulated/floor/tiled, /area/security/brig) -"ahy" = ( +"ahx" = ( /obj/structure/filingcabinet/filingcabinet{ desc = "A large cabinet with drawers. There seems to be a layer of dust covering it." }, @@ -3782,7 +3741,7 @@ temperature = 278 }, /area/security/investigations) -"ahz" = ( +"ahy" = ( /obj/item/weapon/stool/padded{ desc = "Apply butt. This particular stool looks tattered and old. Perhaps there have been budget cuts?"; name = "Tattered Stool" @@ -3792,7 +3751,7 @@ temperature = 278 }, /area/security/investigations) -"ahA" = ( +"ahz" = ( /obj/machinery/alarm/cold{ dir = 8; icon_state = "alarm0"; @@ -3805,7 +3764,7 @@ temperature = 278 }, /area/security/investigations) -"ahB" = ( +"ahA" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -3818,10 +3777,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"ahC" = ( +"ahB" = ( /turf/simulated/floor/wood, /area/maintenance/civ) -"ahD" = ( +"ahC" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -3830,14 +3789,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahE" = ( +"ahD" = ( /obj/structure/grille, /obj/item/weapon/material/shard, /obj/structure/window/reinforced, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahF" = ( +"ahE" = ( /obj/structure/grille/broken, /obj/item/weapon/material/shard{ icon_state = "medium" @@ -3848,7 +3807,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahG" = ( +"ahF" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -3859,12 +3818,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahH" = ( +"ahG" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahI" = ( +"ahH" = ( /obj/structure/grille, /obj/item/weapon/material/shard{ icon_state = "small" @@ -3878,7 +3837,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahJ" = ( +"ahI" = ( /obj/item/stack/rods, /obj/item/weapon/material/shard{ icon_state = "small" @@ -3887,7 +3846,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahK" = ( +"ahJ" = ( /obj/structure/grille/broken, /obj/item/weapon/material/shard{ icon_state = "medium" @@ -3895,7 +3854,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahL" = ( +"ahK" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -3907,7 +3866,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahM" = ( +"ahL" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Maintenance Access"; @@ -3915,21 +3874,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahN" = ( +"ahM" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ahO" = ( +"ahN" = ( /obj/machinery/atmospherics/unary/freezer{ dir = 2; icon_state = "freezer" }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ahP" = ( +"ahO" = ( /obj/machinery/light{ dir = 1 }, @@ -3945,29 +3904,29 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ahQ" = ( +"ahP" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ahR" = ( +"ahQ" = ( /obj/machinery/computer/cryopod/robot{ pixel_y = 30 }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ahS" = ( +"ahR" = ( /obj/machinery/drone_fabricator, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ahT" = ( +"ahS" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ahU" = ( +"ahT" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -3976,12 +3935,12 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ahV" = ( +"ahU" = ( /obj/machinery/cryopod/robot, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ahW" = ( +"ahV" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -3994,7 +3953,7 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"ahX" = ( +"ahW" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ icon_state = "intact"; dir = 5 @@ -4008,7 +3967,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahY" = ( +"ahX" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -4019,7 +3978,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahZ" = ( +"ahY" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -4030,7 +3989,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aia" = ( +"ahZ" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, @@ -4041,7 +4000,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aib" = ( +"aia" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, @@ -4054,7 +4013,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aic" = ( +"aib" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, @@ -4065,7 +4024,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aid" = ( +"aic" = ( /obj/machinery/atmospherics/pipe/zpipe/down/yellow{ dir = 8; pixel_x = 0 @@ -4077,7 +4036,7 @@ /obj/structure/lattice/catwalk, /turf/simulated/open, /area/engineering/atmos) -"aie" = ( +"aid" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4089,21 +4048,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aif" = ( +"aie" = ( /obj/structure/bed, /obj/structure/sign/nosmoking_1{ pixel_y = 32 }, /turf/simulated/floor/plating, /area/security/brig) -"aig" = ( +"aif" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/newscaster{ pixel_x = 27 }, /turf/simulated/floor/plating, /area/security/brig) -"aih" = ( +"aig" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -4122,11 +4081,11 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aii" = ( +"aih" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"aij" = ( +"aii" = ( /obj/machinery/light_switch{ pixel_x = 0; pixel_y = -24 @@ -4134,7 +4093,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"aik" = ( +"aij" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -4143,12 +4102,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"ail" = ( +"aik" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"aim" = ( +"ail" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -4157,7 +4116,7 @@ temperature = 278 }, /area/security/investigations) -"ain" = ( +"aim" = ( /obj/structure/table/standard, /obj/item/weapon/folder/sec, /turf/simulated/floor/tiled/dark{ @@ -4165,7 +4124,7 @@ temperature = 278 }, /area/security/investigations) -"aio" = ( +"ain" = ( /obj/structure/plasticflaps/airtight, /obj/machinery/door/airlock/security{ name = "Evidence Storage"; @@ -4177,7 +4136,7 @@ temperature = 278 }, /area/security/investigations) -"aip" = ( +"aio" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -4188,7 +4147,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/security/investigations) -"aiq" = ( +"aip" = ( /obj/machinery/firealarm/north, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; @@ -4208,7 +4167,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"air" = ( +"aiq" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ icon_state = "up-scrubbers"; @@ -4231,10 +4190,10 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"ais" = ( +"air" = ( /turf/simulated/wall, /area/security/investigations) -"ait" = ( +"ais" = ( /obj/item/stack/tile/wood, /obj/effect/decal/cleanable/cobweb2{ icon_state = "cobweb1" @@ -4242,24 +4201,24 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/civ) -"aiu" = ( +"ait" = ( /obj/item/weapon/storage/toolbox, /turf/simulated/floor/plating, /area/maintenance/civ) -"aiv" = ( +"aiu" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/door/firedoor, /turf/simulated/floor/wood, /area/maintenance/civ) -"aiw" = ( +"aiv" = ( /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/civ) -"aix" = ( +"aiw" = ( /obj/item/weapon/material/shard, /turf/simulated/floor/tiled, /area/maintenance/civ) -"aiy" = ( +"aix" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -4274,24 +4233,24 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"aiz" = ( +"aiy" = ( /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/floor/tiled, /area/maintenance/civ) -"aiA" = ( +"aiz" = ( /obj/effect/decal/cleanable/cobweb2, /obj/effect/decal/cleanable/dirt, /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/floor/tiled, /area/maintenance/civ) -"aiB" = ( +"aiA" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"aiC" = ( +"aiB" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 5 }, @@ -4301,7 +4260,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"aiD" = ( +"aiC" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/black, /obj/machinery/meter, /obj/effect/floor_decal/industrial/warning{ @@ -4310,7 +4269,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"aiE" = ( +"aiD" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 9 }, @@ -4320,7 +4279,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"aiF" = ( +"aiE" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; @@ -4328,7 +4287,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"aiG" = ( +"aiF" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -4338,28 +4297,28 @@ }, /turf/simulated/wall/r_wall, /area/engineering/drone_fabrication) -"aiH" = ( +"aiG" = ( /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"aiI" = ( +"aiH" = ( /obj/machinery/computer/drone_control, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"aiJ" = ( +"aiI" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"aiK" = ( +"aiJ" = ( /obj/machinery/recharge_station, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"aiL" = ( +"aiK" = ( /turf/simulated/wall/r_wall, /area/maintenance/atmos_control) -"aiM" = ( +"aiL" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -4368,7 +4327,7 @@ }, /turf/simulated/wall/r_wall, /area/maintenance/atmos_control) -"aiN" = ( +"aiM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -4388,7 +4347,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiO" = ( +"aiN" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 @@ -4403,7 +4362,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiP" = ( +"aiO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4417,7 +4376,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiQ" = ( +"aiP" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; dir = 5 @@ -4436,7 +4395,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiR" = ( +"aiQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -4451,7 +4410,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/visible/red, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiS" = ( +"aiR" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, @@ -4460,7 +4419,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiT" = ( +"aiS" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, @@ -4471,7 +4430,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiU" = ( +"aiT" = ( /obj/machinery/atmospherics/pipe/zpipe/down/red{ icon_state = "down"; dir = 8 @@ -4479,7 +4438,7 @@ /obj/structure/lattice/catwalk, /turf/simulated/open, /area/engineering/atmos) -"aiV" = ( +"aiU" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4490,10 +4449,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aiW" = ( +"aiV" = ( /turf/simulated/wall/r_wall, /area/maintenance/security_starboard) -"aiX" = ( +"aiW" = ( /obj/machinery/light/small{ dir = 8 }, @@ -4504,7 +4463,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aiY" = ( +"aiX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -4516,7 +4475,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aiZ" = ( +"aiY" = ( /obj/machinery/door/airlock/glass_security{ name = "Solitary Confinement 2"; req_access = list(2) @@ -4530,7 +4489,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"aja" = ( +"aiZ" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -4543,13 +4502,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ajb" = ( +"aja" = ( /turf/simulated/wall, /area/security/main) -"ajc" = ( +"ajb" = ( /turf/simulated/wall/r_wall, /area/security/main) -"ajd" = ( +"ajc" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -4562,7 +4521,7 @@ temperature = 278 }, /area/security/investigations) -"aje" = ( +"ajd" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -4575,7 +4534,7 @@ temperature = 278 }, /area/security/investigations) -"ajf" = ( +"aje" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -4585,7 +4544,7 @@ temperature = 278 }, /area/security/investigations) -"ajg" = ( +"ajf" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -4606,7 +4565,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"ajh" = ( +"ajg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -4620,7 +4579,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/investigations) -"aji" = ( +"ajh" = ( /obj/structure/closet/crate{ name = "Case Folders Crate" }, @@ -4636,21 +4595,21 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/investigations) -"ajj" = ( +"aji" = ( /obj/structure/table/wood, /turf/simulated/floor/wood, /area/maintenance/civ) -"ajk" = ( +"ajj" = ( /obj/item/stack/material/wood, /obj/random/loot, /turf/simulated/floor/wood, /area/maintenance/civ) -"ajl" = ( +"ajk" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood, /area/maintenance/civ) -"ajm" = ( +"ajl" = ( /obj/structure/grille/broken, /obj/item/stack/rods, /obj/item/weapon/material/shard{ @@ -4662,24 +4621,24 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ajn" = ( +"ajm" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/civ) -"ajo" = ( +"ajn" = ( /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ajp" = ( +"ajo" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ajq" = ( +"ajp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ajr" = ( +"ajq" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -4695,7 +4654,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ajs" = ( +"ajr" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -4712,7 +4671,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ajt" = ( +"ajs" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -4724,7 +4683,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"aju" = ( +"ajt" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -4732,7 +4691,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ajv" = ( +"aju" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/light{ dir = 4; @@ -4745,16 +4704,16 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ajw" = ( +"ajv" = ( /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"ajx" = ( +"ajw" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"ajy" = ( +"ajx" = ( /obj/machinery/light{ dir = 1 }, @@ -4763,7 +4722,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"ajz" = ( +"ajy" = ( /obj/machinery/light{ dir = 1; icon_state = "tube1"; @@ -4771,7 +4730,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"ajA" = ( +"ajz" = ( /obj/machinery/door/airlock/maintenance{ name = "Atmospherics Maintenance Access"; req_access = list(24) @@ -4784,7 +4743,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"ajB" = ( +"ajA" = ( /obj/machinery/door/airlock/glass_atmos{ name = "Port Station"; req_access = list(24) @@ -4800,7 +4759,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ajC" = ( +"ajB" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -4818,7 +4777,7 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"ajD" = ( +"ajC" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -4832,26 +4791,26 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"ajE" = ( +"ajD" = ( /turf/simulated/wall/r_wall, /area/engineering/atmos/storage) -"ajF" = ( +"ajE" = ( /turf/simulated/wall/r_wall, /area/security/armoury) -"ajG" = ( +"ajF" = ( /obj/structure/table/standard, /obj/item/weapon/paper, /obj/item/weapon/pen, /turf/simulated/floor/plating, /area/security/brig) -"ajH" = ( +"ajG" = ( /obj/item/weapon/stool, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/plating, /area/security/brig) -"ajI" = ( +"ajH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -4866,7 +4825,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/security/brig) -"ajJ" = ( +"ajI" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -4887,7 +4846,7 @@ }, /turf/simulated/floor/plating, /area/security/main) -"ajK" = ( +"ajJ" = ( /obj/structure/table/standard, /obj/machinery/recharger/wallcharger{ pixel_y = 24 @@ -4906,7 +4865,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"ajL" = ( +"ajK" = ( /obj/structure/table/standard, /obj/machinery/recharger/wallcharger{ pixel_y = 24 @@ -4921,7 +4880,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"ajM" = ( +"ajL" = ( /obj/structure/table/standard, /obj/item/device/flashlight/maglight, /obj/item/device/flashlight/maglight, @@ -4941,12 +4900,12 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"ajN" = ( +"ajM" = ( /obj/machinery/vending/security, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/main) -"ajO" = ( +"ajN" = ( /obj/structure/closet/secure_closet/security, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -4955,7 +4914,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/main) -"ajP" = ( +"ajO" = ( /obj/structure/closet/secure_closet/security, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/status_display{ @@ -4964,32 +4923,27 @@ }, /turf/simulated/floor/tiled/dark, /area/security/main) -"ajQ" = ( +"ajP" = ( /obj/structure/closet/secure_closet/security, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/main) -"ajR" = ( +"ajQ" = ( /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 }, /area/security/investigations) -"ajS" = ( +"ajR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 }, /area/security/investigations) -"ajT" = ( +"ajS" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -5019,7 +4973,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"ajU" = ( +"ajT" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ d1 = 1; @@ -5033,33 +4987,14 @@ /turf/simulated/floor/tiled, /area/security/investigations) "ajV" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/investigations) -"ajW" = ( /obj/structure/table/wood, /turf/simulated/floor/plating, /area/maintenance/civ) -"ajX" = ( +"ajW" = ( /obj/item/stack/tile/wood, /turf/simulated/floor/plating, /area/maintenance/civ) -"ajY" = ( +"ajX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -5068,32 +5003,32 @@ }, /turf/simulated/floor/wood, /area/maintenance/civ) -"ajZ" = ( +"ajY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/civ) +"ajZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/maintenance/civ) "aka" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/civ) -"akb" = ( -/obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/tiled, /area/maintenance/civ) -"akc" = ( +"akb" = ( /obj/item/stack/tile/floor, /obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/maintenance/civ) -"akd" = ( +"akc" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -5102,25 +5037,25 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ake" = ( +"akd" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 6 }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"akf" = ( +"ake" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"akg" = ( +"akf" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"akh" = ( +"akg" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -5134,7 +5069,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"aki" = ( +"akh" = ( /obj/machinery/door/airlock/maintenance{ name = "Drone Fabrication/Engine Waste Handling"; req_one_access = list(11,24) @@ -5157,7 +5092,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"akj" = ( +"aki" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -5172,7 +5107,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"akk" = ( +"akj" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -5186,14 +5121,14 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"akl" = ( +"akk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"akm" = ( +"akl" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -5213,7 +5148,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"akn" = ( +"akm" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -5226,7 +5161,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ako" = ( +"akn" = ( /obj/machinery/door/airlock/maintenance{ name = "Drone Fabrication"; req_one_access = list(11,24) @@ -5249,7 +5184,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"akp" = ( +"ako" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -5264,6 +5199,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) +"akp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) "akq" = ( /obj/structure/cable{ d1 = 4; @@ -5271,24 +5221,9 @@ icon_state = "4-8"; pixel_x = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) "akr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"aks" = ( /obj/machinery/door/airlock/maintenance{ name = "Atmospherics Maintenance Access"; req_access = null; @@ -5303,7 +5238,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"akt" = ( +"aks" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -5311,7 +5246,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"aku" = ( +"akt" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -5324,7 +5259,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"akv" = ( +"aku" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Atmospherics Subgrid"; name_tag = "Atmospherics Subgrid" @@ -5340,7 +5275,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"akw" = ( +"akv" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 4 @@ -5350,7 +5285,7 @@ /obj/item/device/suit_cooling_unit, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"akx" = ( +"akw" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -5363,7 +5298,7 @@ /obj/item/weapon/storage/briefcase/inflatable, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aky" = ( +"akx" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -5382,7 +5317,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"akz" = ( +"aky" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -5401,7 +5336,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"akA" = ( +"akz" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 8 @@ -5409,11 +5344,11 @@ /obj/structure/window/reinforced, /turf/simulated/open, /area/engineering/atmos/storage) -"akB" = ( +"akA" = ( /obj/structure/window/reinforced, /turf/simulated/open, /area/engineering/atmos/storage) -"akC" = ( +"akB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/light{ icon_state = "tube1"; @@ -5428,7 +5363,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"akD" = ( +"akC" = ( /obj/machinery/newscaster{ pixel_x = 27 }, @@ -5438,7 +5373,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"akE" = ( +"akD" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -5449,7 +5384,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/engineering) -"akF" = ( +"akE" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 2; name = "Security"; @@ -5457,7 +5392,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"akG" = ( +"akF" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 2; @@ -5478,7 +5413,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"akH" = ( +"akG" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -5493,7 +5428,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"akI" = ( +"akH" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -5504,7 +5439,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"akJ" = ( +"akI" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -5520,13 +5455,13 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"akK" = ( +"akJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/main) -"akL" = ( +"akK" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -5539,13 +5474,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/main) -"akM" = ( +"akL" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, /turf/simulated/floor/tiled/dark, /area/security/main) -"akN" = ( +"akM" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -5559,7 +5494,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/main) -"akO" = ( +"akN" = ( /obj/structure/morgue{ icon_state = "morgue1"; dir = 1 @@ -5569,7 +5504,7 @@ temperature = 278 }, /area/security/investigations) -"akP" = ( +"akO" = ( /obj/structure/morgue{ icon_state = "morgue1"; dir = 1 @@ -5583,15 +5518,7 @@ temperature = 278 }, /area/security/investigations) -"akQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/security/investigations) -"akR" = ( +"akP" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -5606,14 +5533,14 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/investigations) -"akS" = ( +"akQ" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 }, /turf/simulated/floor/tiled, /area/security/investigations) -"akT" = ( +"akR" = ( /obj/structure/stairs/east, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -5621,12 +5548,12 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"akU" = ( +"akS" = ( /obj/item/stack/tile/wood, /obj/effect/decal/cleanable/generic, /turf/simulated/floor/plating, /area/maintenance/civ) -"akV" = ( +"akT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/sign/flag/hegemony{ @@ -5635,7 +5562,7 @@ }, /turf/simulated/floor/wood, /area/maintenance/civ) -"akW" = ( +"akU" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -5649,26 +5576,26 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"akX" = ( +"akV" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/civ) -"akY" = ( +"akW" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/maintenance/civ) -"akZ" = ( +"akX" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/random/junk, /turf/simulated/floor/tiled, /area/maintenance/civ) -"ala" = ( +"akY" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_room) -"alb" = ( +"akZ" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1; name = "Waste Pump" @@ -5685,7 +5612,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"alc" = ( +"ala" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 5 }, @@ -5699,7 +5626,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ald" = ( +"alb" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, @@ -5716,7 +5643,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ale" = ( +"alc" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -5725,7 +5652,7 @@ /obj/structure/cable, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"alf" = ( +"ald" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -5734,7 +5661,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"alg" = ( +"ale" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(11); req_one_access = null @@ -5744,7 +5671,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/maintenance/atmos_control) -"alh" = ( +"alf" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -5752,7 +5679,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"ali" = ( +"alg" = ( /obj/machinery/power/terminal{ dir = 4 }, @@ -5762,7 +5689,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"alj" = ( +"alh" = ( /obj/machinery/power/smes/buildable{ charge = 2e+006; input_attempt = 1; @@ -5772,7 +5699,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"alk" = ( +"ali" = ( /obj/structure/table/standard, /obj/item/device/multitool, /obj/structure/fireaxecabinet{ @@ -5780,20 +5707,20 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"all" = ( +"alj" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"alm" = ( +"alk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aln" = ( +"all" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; dir = 8 @@ -5809,7 +5736,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"alo" = ( +"alm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -5817,7 +5744,7 @@ /obj/machinery/pipedispenser, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"alp" = ( +"aln" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -5825,14 +5752,14 @@ /obj/machinery/pipedispenser/disposal, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"alq" = ( +"alo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 9 }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"alr" = ( +"alp" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -5840,7 +5767,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"als" = ( +"alq" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -5853,15 +5780,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/engineering) -"alt" = ( +"alr" = ( /obj/structure/closet/bombclosetsecurity, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"alu" = ( +"als" = ( /obj/structure/closet/l3closet/general, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"alv" = ( +"alt" = ( /obj/machinery/light{ dir = 1 }, @@ -5881,7 +5808,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"alw" = ( +"alu" = ( /obj/structure/table/rack, /obj/item/device/magnetic_lock/security{ pixel_x = -3; @@ -5897,7 +5824,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"alx" = ( +"alv" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/riot, /obj/item/clothing/head/helmet/riot, @@ -5918,14 +5845,14 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aly" = ( +"alw" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 5; pixel_y = 22 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"alz" = ( +"alx" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 5; pixel_y = 22 @@ -5939,7 +5866,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"alA" = ( +"aly" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Weaponry (Laser Rifle)"; req_access = list(3) @@ -5948,7 +5875,7 @@ /obj/item/weapon/gun/energy/rifle/laser, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"alB" = ( +"alz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -5958,7 +5885,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"alC" = ( +"alA" = ( /obj/structure/disposalpipe/segment, /obj/machinery/camera/network/security{ c_tag = "Security - Corridor Camera 9"; @@ -5971,7 +5898,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"alD" = ( +"alB" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -5989,17 +5916,17 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/security/main) -"alE" = ( +"alC" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/security/main) -"alF" = ( +"alD" = ( /turf/simulated/floor/tiled, /area/security/main) -"alG" = ( +"alE" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -6009,7 +5936,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/security/main) -"alH" = ( +"alF" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -6019,13 +5946,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/main) -"alI" = ( +"alG" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, /turf/simulated/floor/tiled/dark, /area/security/main) -"alJ" = ( +"alH" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -6036,7 +5963,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/dark, /area/security/main) -"alK" = ( +"alI" = ( /obj/machinery/door/airlock/security{ name = "Evidence Storage"; req_access = list(1) @@ -6049,7 +5976,7 @@ temperature = 278 }, /area/security/investigations) -"alL" = ( +"alJ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Investigations Division"; @@ -6065,7 +5992,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/investigations) -"alM" = ( +"alK" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -6079,7 +6006,7 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"alN" = ( +"alL" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -6092,16 +6019,16 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"alO" = ( +"alM" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/plating, /area/maintenance/civ) -"alP" = ( +"alN" = ( /obj/item/weapon/stool/padded, /obj/item/weapon/material/shard, /turf/simulated/floor/plating, /area/maintenance/civ) -"alQ" = ( +"alO" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -6112,7 +6039,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"alR" = ( +"alP" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -6120,7 +6047,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/civ) -"alS" = ( +"alQ" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -6132,12 +6059,12 @@ }, /turf/simulated/floor/tiled, /area/maintenance/civ) -"alT" = ( +"alR" = ( /obj/effect/decal/cleanable/generic, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/civ) -"alU" = ( +"alS" = ( /obj/machinery/button/remote/blast_door{ desc = "A remote control-switch for engine core."; id = "EngineVent"; @@ -6149,7 +6076,7 @@ /obj/structure/window/basic, /turf/simulated/floor/plating, /area/engineering/engine_room) -"alV" = ( +"alT" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/machinery/door/blast/regular{ dir = 4; @@ -6160,7 +6087,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"alW" = ( +"alU" = ( /obj/machinery/door/blast/regular{ dir = 4; icon_state = "pdoor1"; @@ -6170,7 +6097,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"alX" = ( +"alV" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -6185,40 +6112,40 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"alY" = ( +"alW" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 0; pixel_y = 30 }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"alZ" = ( +"alX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ama" = ( +"alY" = ( /turf/simulated/wall/r_wall, /area/engineering/storage) -"amb" = ( +"alZ" = ( /obj/machinery/power/emitter, /turf/simulated/floor/plating, /area/engineering/storage) -"amc" = ( +"ama" = ( /obj/structure/closet/crate, /obj/item/stack/material/phoron{ amount = 25 }, /turf/simulated/floor/plating, /area/engineering/storage) -"amd" = ( +"amb" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/structure/closet/crate/solar, /turf/simulated/floor/plating, /area/engineering/storage) -"ame" = ( +"amc" = ( /obj/machinery/light{ dir = 1 }, @@ -6231,15 +6158,15 @@ /obj/machinery/power/port_gen/pacman, /turf/simulated/floor/plating, /area/engineering/storage) -"amf" = ( +"amd" = ( /obj/machinery/shield_capacitor, /turf/simulated/floor/plating, /area/engineering/storage) -"amg" = ( +"ame" = ( /obj/machinery/shield_gen, /turf/simulated/floor/plating, /area/engineering/storage) -"amh" = ( +"amf" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /obj/structure/sign/nosmoking_2{ @@ -6247,14 +6174,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"ami" = ( +"amg" = ( /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"amj" = ( +"amh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"amk" = ( +"ami" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -6270,7 +6197,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aml" = ( +"amj" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -6278,7 +6205,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"amm" = ( +"amk" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -6290,7 +6217,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"amn" = ( +"aml" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -6301,7 +6228,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"amo" = ( +"amm" = ( /obj/machinery/door/airlock/atmos{ name = "Atmospherics Maintenance"; req_access = list(12,24) @@ -6317,7 +6244,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"amp" = ( +"amn" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -6328,7 +6255,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"amq" = ( +"amo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ d1 = 4; @@ -6341,7 +6268,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/engineering) -"amr" = ( +"amp" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -6357,20 +6284,20 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ams" = ( +"amq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"amt" = ( +"amr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"amu" = ( +"ams" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 4 @@ -6378,7 +6305,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) -"amv" = ( +"amt" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -6392,7 +6319,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"amw" = ( +"amu" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -6401,10 +6328,10 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/engineering) -"amx" = ( +"amv" = ( /turf/simulated/floor/tiled/dark, /area/security/armoury) -"amy" = ( +"amw" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/riot, /obj/item/clothing/head/helmet/riot, @@ -6424,7 +6351,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"amz" = ( +"amx" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Weaponry (Ion Rifle)"; req_access = list(3) @@ -6432,11 +6359,11 @@ /obj/item/weapon/gun/energy/ionrifle, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"amA" = ( +"amy" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/wall/r_wall, /area/maintenance/security_starboard) -"amB" = ( +"amz" = ( /obj/structure/table/standard, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -6453,11 +6380,11 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"amC" = ( +"amA" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/security/main) -"amD" = ( +"amB" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 8 @@ -6469,19 +6396,19 @@ /obj/item/clothing/accessory/holster/waist, /turf/simulated/floor/tiled/dark, /area/security/main) -"amE" = ( +"amC" = ( /obj/structure/window/reinforced, /obj/structure/table/standard, /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled/dark, /area/security/main) -"amF" = ( +"amD" = ( /obj/structure/window/reinforced, /obj/structure/closet/secure_closet/security_cadet, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/main) -"amG" = ( +"amE" = ( /obj/structure/window/reinforced, /obj/structure/closet/secure_closet/security_cadet, /obj/effect/floor_decal/industrial/outline/yellow, @@ -6491,18 +6418,18 @@ }, /turf/simulated/floor/tiled/dark, /area/security/main) -"amH" = ( +"amF" = ( /obj/structure/stairs/north, /turf/simulated/floor/tiled, /area/security/brig) -"amI" = ( +"amG" = ( /obj/structure/stairs/north, /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/brig) -"amJ" = ( +"amH" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -6510,21 +6437,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/brig) -"amK" = ( -/obj/structure/noticeboard{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"amL" = ( +"amJ" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -6538,7 +6451,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"amM" = ( +"amK" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -6550,7 +6463,7 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled, /area/security/brig) -"amN" = ( +"amL" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -6566,13 +6479,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"amO" = ( +"amM" = ( /obj/structure/table/wood, /obj/item/stack/material/wood, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood, /area/maintenance/civ) -"amP" = ( +"amN" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -6584,11 +6497,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"amQ" = ( +"amO" = ( /obj/item/stack/rods, /turf/simulated/floor/plating, /area/maintenance/civ) -"amR" = ( +"amP" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -6598,52 +6511,52 @@ }, /turf/simulated/floor/tiled, /area/maintenance/civ) -"amS" = ( +"amQ" = ( /obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/civ) -"amT" = ( +"amR" = ( /obj/machinery/light/spot, /obj/machinery/light/spot, /turf/simulated/floor/asteroid/ash/rocky, /area/bridge) -"amU" = ( +"amS" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"amV" = ( +"amT" = ( /turf/simulated/floor/plating, /area/engineering/engine_room) -"amW" = ( +"amU" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 0; pixel_y = 30 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"amX" = ( +"amV" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ icon_state = "map"; dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"amY" = ( +"amW" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, /obj/machinery/meter, /turf/simulated/floor/plating, /area/engineering/engine_room) -"amZ" = ( +"amX" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 10 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ana" = ( +"amY" = ( /obj/machinery/atmospherics/portables_connector, /obj/machinery/button/remote/blast_door{ desc = "A remote control-switch for the engine control room blast doors."; @@ -6656,10 +6569,10 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"anb" = ( +"amZ" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_smes) -"anc" = ( +"ana" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -6668,10 +6581,10 @@ }, /turf/simulated/wall/r_wall, /area/engineering/engine_smes) -"and" = ( +"anb" = ( /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ane" = ( +"anc" = ( /obj/structure/closet/crate, /obj/item/weapon/circuitboard/smes, /obj/item/weapon/circuitboard/smes, @@ -6683,20 +6596,20 @@ /obj/item/weapon/smes_coil/super_io, /turf/simulated/floor/plating, /area/engineering/storage) -"anf" = ( +"and" = ( /turf/simulated/floor/plating, /area/engineering/storage) -"ang" = ( +"ane" = ( /obj/machinery/shieldgen, /turf/simulated/floor/plating, /area/engineering/storage) -"anh" = ( +"anf" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_monitoring) -"ani" = ( +"ang" = ( /turf/simulated/open, /area/turbolift/engineering_station) -"anj" = ( +"anh" = ( /obj/structure/dispenser/oxygen{ phorontanks = 10 }, @@ -6707,7 +6620,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"ank" = ( +"ani" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -6720,17 +6633,17 @@ /obj/machinery/space_heater, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"anl" = ( +"anj" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"anm" = ( +"ank" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"ann" = ( +"anl" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 2; name = "Atmospherics"; @@ -6738,7 +6651,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"ano" = ( +"anm" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -6746,7 +6659,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"anp" = ( +"ann" = ( /obj/machinery/door/airlock/maintenance{ name = "Firefighting equipment"; req_access = list(12) @@ -6754,28 +6667,28 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) -"anq" = ( +"ano" = ( /obj/structure/disposalpipe/segment, /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/engineering) +"anp" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"anq" = ( +/obj/structure/table/rack, +/obj/item/weapon/reagent_containers/spray/pepper, +/obj/item/weapon/reagent_containers/spray/pepper, +/obj/item/weapon/reagent_containers/spray/pepper, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) "anr" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/storage/vest/heavy/officer, -/obj/item/clothing/suit/storage/vest/heavy/officer, -/obj/item/clothing/suit/storage/vest/heavy/officer, -/obj/item/clothing/suit/storage/vest/heavy/officer, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"ans" = ( -/obj/structure/table/rack, -/obj/item/weapon/reagent_containers/spray/pepper, -/obj/item/weapon/reagent_containers/spray/pepper, -/obj/item/weapon/reagent_containers/spray/pepper, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"ant" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -6783,7 +6696,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"anu" = ( +"ans" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/riot, /obj/item/clothing/head/helmet/riot, @@ -6806,11 +6719,11 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"anv" = ( +"ant" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"anw" = ( +"anu" = ( /obj/machinery/light/small/emergency{ icon_state = "bulb1"; dir = 4 @@ -6823,7 +6736,7 @@ /obj/item/weapon/gun/energy/gun, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"anx" = ( +"anv" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -6848,7 +6761,7 @@ }, /turf/simulated/floor/plating, /area/security/main) -"any" = ( +"anw" = ( /obj/structure/table/standard, /obj/structure/window/reinforced, /obj/effect/floor_decal/corner/blue{ @@ -6867,7 +6780,7 @@ /obj/item/weapon/folder/sec, /turf/simulated/floor/tiled, /area/security/main) -"anz" = ( +"anx" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -6878,7 +6791,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"anA" = ( +"any" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -6893,19 +6806,19 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"anB" = ( +"anz" = ( /obj/machinery/disposal, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/security/main) -"anC" = ( +"anA" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/main) -"anD" = ( +"anB" = ( /obj/structure/table/standard, /obj/machinery/newscaster{ pixel_x = 28; @@ -6913,13 +6826,13 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"anE" = ( +"anC" = ( /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/brig) -"anF" = ( +"anD" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; dir = 8 @@ -6942,7 +6855,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"anG" = ( +"anE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -6959,7 +6872,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"anH" = ( +"anF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -6979,7 +6892,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"anI" = ( +"anG" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -6991,13 +6904,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"anJ" = ( +"anH" = ( /obj/structure/grille/broken, /obj/item/weapon/material/shard, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"anK" = ( +"anI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -7006,15 +6919,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/civ) -"anL" = ( +"anJ" = ( /obj/effect/decal/cleanable/dirt, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/civ) -"anM" = ( +"anK" = ( /turf/simulated/wall/r_wall, /area/bridge) -"anN" = ( +"anL" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -7043,7 +6956,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"anO" = ( +"anM" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -7069,7 +6982,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"anP" = ( +"anN" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -7093,7 +7006,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"anQ" = ( +"anO" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -7117,7 +7030,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"anR" = ( +"anP" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -7143,7 +7056,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"anS" = ( +"anQ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -7172,10 +7085,10 @@ }, /turf/simulated/floor/plating, /area/bridge) -"anT" = ( +"anR" = ( /turf/simulated/mineral, /area/mine/unexplored) -"anU" = ( +"anS" = ( /obj/machinery/atmospherics/omni/filter{ tag_east = 4; tag_north = 2; @@ -7186,14 +7099,14 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"anV" = ( +"anT" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ icon_state = "map"; dir = 1 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"anW" = ( +"anU" = ( /obj/machinery/atmospherics/omni/filter{ tag_east = 0; tag_north = 2; @@ -7204,7 +7117,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"anX" = ( +"anV" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1 }, @@ -7215,7 +7128,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"anY" = ( +"anW" = ( /obj/machinery/power/smes/buildable{ charge = 1e+007; cur_coils = 4; @@ -7231,7 +7144,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_smes) -"anZ" = ( +"anX" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -7243,7 +7156,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aoa" = ( +"anY" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/box/lights/mixed, /obj/item/device/radio/intercom{ @@ -7258,7 +7171,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aob" = ( +"anZ" = ( /obj/structure/table/reinforced, /obj/structure/cable{ d1 = 1; @@ -7279,7 +7192,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aoc" = ( +"aoa" = ( /obj/structure/table/reinforced, /obj/item/stack/cable_coil{ pixel_x = 3; @@ -7295,7 +7208,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aod" = ( +"aob" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -7304,7 +7217,7 @@ }, /turf/simulated/wall/r_wall, /area/engineering/engine_smes) -"aoe" = ( +"aoc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/newscaster{ @@ -7312,34 +7225,34 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aof" = ( +"aod" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/plating, /area/engineering/storage) -"aog" = ( +"aoe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plating, /area/engineering/storage) -"aoh" = ( +"aof" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/plating, /area/engineering/storage) -"aoi" = ( +"aog" = ( /obj/machinery/shieldwallgen, /turf/simulated/floor/plating, /area/engineering/storage) -"aoj" = ( +"aoh" = ( /obj/machinery/suit_cycler/engineering, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aok" = ( +"aoi" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -7355,7 +7268,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aol" = ( +"aoj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -7363,21 +7276,21 @@ /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aom" = ( +"aok" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aon" = ( +"aol" = ( /obj/structure/table/standard, /obj/item/device/pipe_painter, /obj/item/weapon/pipewrench, /obj/item/weapon/pipewrench, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aoo" = ( +"aom" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -7394,7 +7307,7 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"aop" = ( +"aon" = ( /obj/machinery/requests_console{ department = "Atmospherics"; departmentType = 4; @@ -7412,7 +7325,7 @@ /obj/structure/closet/wardrobe/atmospherics_yellow, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aoq" = ( +"aoo" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -7427,7 +7340,7 @@ /obj/item/device/flashlight/heavy, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aor" = ( +"aop" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -7439,7 +7352,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aos" = ( +"aoq" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -7450,20 +7363,20 @@ /obj/item/device/radio/off, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aot" = ( +"aor" = ( /obj/structure/closet/hydrant{ pixel_x = -32 }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aou" = ( +"aos" = ( /turf/simulated/floor/plating, /area/maintenance/engineering) -"aov" = ( +"aot" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aow" = ( +"aou" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -7478,7 +7391,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aox" = ( +"aov" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -7497,7 +7410,7 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aoy" = ( +"aow" = ( /obj/structure/table/rack, /obj/item/clothing/mask/gas{ pixel_x = -3; @@ -7519,7 +7432,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aoz" = ( +"aox" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/seccarts{ pixel_x = -3; @@ -7532,7 +7445,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aoA" = ( +"aoy" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable/green{ d1 = 2; @@ -7541,7 +7454,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aoB" = ( +"aoz" = ( /obj/machinery/door/airlock/highsecurity{ name = "Secure Armoury Section"; req_access = list(3) @@ -7554,7 +7467,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aoC" = ( +"aoA" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -7562,11 +7475,11 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aoD" = ( +"aoB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aoE" = ( +"aoC" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Weaponry (Shotgun)"; req_access = list(3) @@ -7575,7 +7488,7 @@ /obj/item/weapon/gun/projectile/shotgun/pump, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aoF" = ( +"aoD" = ( /obj/machinery/light/small{ dir = 8 }, @@ -7586,7 +7499,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aoG" = ( +"aoE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -7595,7 +7508,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aoH" = ( +"aoF" = ( /obj/machinery/door/airlock/glass_security{ name = "Solitary Confinement 1"; req_access = list(2) @@ -7609,7 +7522,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"aoI" = ( +"aoG" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -7621,7 +7534,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aoJ" = ( +"aoH" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -7632,7 +7545,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aoK" = ( +"aoI" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -7649,7 +7562,7 @@ }, /turf/simulated/floor/plating, /area/security/main) -"aoL" = ( +"aoJ" = ( /obj/structure/table/standard, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -7662,7 +7575,7 @@ /obj/item/weapon/reagent_containers/spray/cleaner, /turf/simulated/floor/tiled, /area/security/main) -"aoM" = ( +"aoK" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -7682,7 +7595,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"aoN" = ( +"aoL" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -7696,7 +7609,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"aoO" = ( +"aoM" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -7711,7 +7624,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"aoP" = ( +"aoN" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -7725,7 +7638,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/security/main) -"aoQ" = ( +"aoO" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -7736,7 +7649,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"aoR" = ( +"aoP" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -7761,7 +7674,7 @@ }, /turf/simulated/floor/plating, /area/security/main) -"aoS" = ( +"aoQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; @@ -7775,43 +7688,27 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"aoT" = ( +"aoR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/brig) -"aoU" = ( +"aoS" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/security/brig) -"aoV" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 30; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aoW" = ( +"aoU" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood, /area/maintenance/civ) -"aoX" = ( +"aoV" = ( /obj/machinery/vending/boozeomat, /turf/simulated/floor/plating, /area/maintenance/civ) -"aoY" = ( +"aoW" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -7824,17 +7721,17 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aoZ" = ( +"aoX" = ( /obj/structure/largecrate/animal/cow, /turf/simulated/floor/plating, /area/maintenance/civ) -"apa" = ( +"aoY" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/civ) -"apb" = ( +"aoZ" = ( /obj/item/device/radio/intercom{ dir = 8; name = "Station Intercom (General)"; @@ -7854,7 +7751,7 @@ /obj/machinery/papershredder, /turf/simulated/floor/tiled, /area/bridge) -"apc" = ( +"apa" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 8 @@ -7866,7 +7763,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"apd" = ( +"apb" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -7874,7 +7771,7 @@ /obj/structure/bed/chair/comfy/blue, /turf/simulated/floor/tiled, /area/bridge) -"ape" = ( +"apc" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -7884,7 +7781,7 @@ /obj/item/device/multitool, /turf/simulated/floor/tiled, /area/bridge) -"apf" = ( +"apd" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Command Deck Fore" }, @@ -7903,7 +7800,7 @@ /obj/structure/table/reinforced, /turf/simulated/floor/tiled, /area/bridge) -"apg" = ( +"ape" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -7912,7 +7809,7 @@ /obj/item/weapon/storage/firstaid/regular, /turf/simulated/floor/tiled, /area/bridge) -"aph" = ( +"apf" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -7924,7 +7821,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"api" = ( +"apg" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -7945,29 +7842,29 @@ /obj/machinery/photocopier, /turf/simulated/floor/tiled, /area/bridge) -"apj" = ( +"aph" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"apk" = ( +"api" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan, /obj/machinery/meter, /turf/simulated/floor/plating, /area/engineering/engine_room) -"apl" = ( +"apj" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan, /turf/simulated/floor/plating, /area/engineering/engine_room) -"apm" = ( +"apk" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ icon_state = "intact"; dir = 9 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"apn" = ( +"apl" = ( /obj/machinery/power/terminal{ icon_state = "term"; dir = 1 @@ -7986,10 +7883,10 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"apo" = ( +"apm" = ( /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"app" = ( +"apn" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -7998,12 +7895,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"apq" = ( +"apo" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"apr" = ( +"app" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -8018,7 +7915,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aps" = ( +"apq" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -8030,7 +7927,7 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) -"apt" = ( +"apr" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -8039,11 +7936,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/engineering/storage) -"apu" = ( +"aps" = ( /obj/machinery/shield_gen/external, /turf/simulated/floor/plating, /area/engineering/storage) -"apv" = ( +"apt" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/atmos, /obj/item/clothing/head/helmet/space/void/atmos, @@ -8078,20 +7975,20 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apw" = ( +"apu" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apx" = ( +"apv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apy" = ( +"apw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -8104,7 +8001,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apz" = ( +"apx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -8114,7 +8011,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apA" = ( +"apy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -8123,7 +8020,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apB" = ( +"apz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -8132,7 +8029,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apC" = ( +"apA" = ( /obj/machinery/door/airlock/atmos{ name = "Atmospherics Locker Room"; req_access = list(24) @@ -8146,7 +8043,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apD" = ( +"apB" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 9 @@ -8159,7 +8056,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apE" = ( +"apC" = ( /obj/machinery/camera/network/engineering{ c_tag = "Engineering - Atmospherics Locker Room"; dir = 8 @@ -8174,7 +8071,7 @@ /obj/item/weapon/reagent_containers/pill/antitox, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apF" = ( +"apD" = ( /obj/structure/table/rack{ dir = 1 }, @@ -8186,18 +8083,18 @@ /obj/item/clothing/glasses/meson, /turf/simulated/floor/plating, /area/maintenance/engineering) -"apG" = ( +"apE" = ( /obj/structure/closet, /obj/item/clothing/head/ushanka, /obj/machinery/light/small, /turf/simulated/floor/plating, /area/maintenance/engineering) -"apH" = ( +"apF" = ( /obj/item/device/t_scanner, /obj/structure/table/steel, /turf/simulated/floor/plating, /area/maintenance/engineering) -"apI" = ( +"apG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -8211,20 +8108,20 @@ /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/maintenance/engineering) -"apJ" = ( +"apH" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apK" = ( +"apI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apL" = ( +"apJ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -8238,7 +8135,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apM" = ( +"apK" = ( /obj/machinery/door/airlock/highsecurity{ name = "Secure Armoury Section"; req_access = list(3) @@ -8252,7 +8149,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apN" = ( +"apL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -8266,7 +8163,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apO" = ( +"apM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -8275,13 +8172,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apP" = ( +"apN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apQ" = ( +"apO" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -8295,7 +8192,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/security/main) -"apR" = ( +"apP" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -8305,7 +8202,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/security/main) -"apS" = ( +"apQ" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 @@ -8315,7 +8212,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"apT" = ( +"apR" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -8324,17 +8221,17 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled, /area/security/main) -"apU" = ( +"apS" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/vending/coffee, /turf/simulated/floor/tiled, /area/security/main) -"apV" = ( +"apT" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/donut, /turf/simulated/floor/tiled, /area/security/main) -"apW" = ( +"apU" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -8348,7 +8245,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/security/main) -"apX" = ( +"apV" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 10 @@ -8364,7 +8261,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/main) -"apY" = ( +"apW" = ( /obj/structure/flora/pottedplant/random, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -8372,7 +8269,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"apZ" = ( +"apX" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -8386,7 +8283,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/security/main) -"aqa" = ( +"apY" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -8396,13 +8293,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aqb" = ( +"apZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/brig) -"aqc" = ( +"aqa" = ( /obj/effect/floor_decal/corner/blue, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -8416,7 +8313,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"aqd" = ( +"aqb" = ( /obj/structure/flora/pottedplant/random, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -8427,7 +8324,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aqe" = ( +"aqc" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 10 @@ -8436,7 +8333,7 @@ /obj/item/roller, /turf/simulated/floor/tiled, /area/security/brig) -"aqf" = ( +"aqd" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 10 @@ -8445,7 +8342,7 @@ /obj/item/bodybag/cryobag, /turf/simulated/floor/tiled, /area/security/brig) -"aqg" = ( +"aqe" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 10 @@ -8463,7 +8360,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/security/brig) -"aqh" = ( +"aqf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -8472,14 +8369,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aqi" = ( +"aqg" = ( /obj/machinery/door/airlock/maintenance{ name = "Firefighting equipment"; req_access = list(12) }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aqj" = ( +"aqh" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -8505,7 +8402,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aqk" = ( +"aqi" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 9 @@ -8517,14 +8414,14 @@ /obj/item/modular_computer/console/preset/engineering, /turf/simulated/floor/tiled, /area/bridge) -"aql" = ( +"aqj" = ( /obj/effect/floor_decal/corner/yellow/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/tiled, /area/bridge) -"aqm" = ( +"aqk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -8532,21 +8429,21 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aqn" = ( +"aql" = ( /turf/simulated/floor/tiled, /area/bridge) -"aqo" = ( +"aqm" = ( /obj/item/device/radio/beacon, /turf/simulated/floor/tiled, /area/bridge) -"aqp" = ( +"aqn" = ( /obj/effect/floor_decal/corner/lime/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/tiled, /area/bridge) -"aqq" = ( +"aqo" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/corner/lime{ dir = 6 @@ -8558,7 +8455,7 @@ /obj/machinery/computer/med_data/laptop, /turf/simulated/floor/tiled, /area/bridge) -"aqr" = ( +"aqp" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -8580,7 +8477,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aqs" = ( +"aqq" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -8592,11 +8489,11 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aqt" = ( +"aqr" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aqu" = ( +"aqs" = ( /obj/structure/cable/yellow{ d1 = 2; d2 = 4; @@ -8604,7 +8501,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aqv" = ( +"aqt" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -8612,7 +8509,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aqw" = ( +"aqu" = ( /obj/machinery/door/airlock/hatch{ icon_state = "door_locked"; id_tag = "engine_electrical_maintenance"; @@ -8627,7 +8524,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_smes) -"aqx" = ( +"aqv" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 8; @@ -8635,7 +8532,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aqy" = ( +"aqw" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -8647,7 +8544,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aqz" = ( +"aqx" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -8663,7 +8560,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aqA" = ( +"aqy" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -8679,7 +8576,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aqB" = ( +"aqz" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -8693,7 +8590,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aqC" = ( +"aqA" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "SMES Access"; req_access = list(11) @@ -8715,7 +8612,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aqD" = ( +"aqB" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -8733,7 +8630,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aqE" = ( +"aqC" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -8742,7 +8639,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aqF" = ( +"aqD" = ( /obj/item/device/radio/intercom{ dir = 8; name = "Station Intercom (General)"; @@ -8755,7 +8652,7 @@ /obj/item/weapon/storage/bag/circuits/basic, /turf/simulated/floor/plating, /area/engineering/storage) -"aqG" = ( +"aqE" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -8767,16 +8664,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/engineering/storage) -"aqH" = ( +"aqF" = ( /obj/machinery/portable_atmospherics/canister/phoron, /obj/machinery/firealarm/south, /turf/simulated/floor/plating, /area/engineering/storage) -"aqI" = ( +"aqG" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /turf/simulated/floor/plating, /area/engineering/storage) -"aqJ" = ( +"aqH" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/atmos, /obj/item/clothing/head/helmet/space/void/atmos, @@ -8803,12 +8700,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqK" = ( +"aqI" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqL" = ( +"aqJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -8823,7 +8720,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqM" = ( +"aqK" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 4; @@ -8835,7 +8732,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqN" = ( +"aqL" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -8847,7 +8744,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqO" = ( +"aqM" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -8860,7 +8757,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqP" = ( +"aqN" = ( /obj/machinery/power/apc/super{ name = "south bump"; pixel_y = -24 @@ -8871,7 +8768,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqQ" = ( +"aqO" = ( /obj/structure/closet/secure_closet/atmos_personal, /obj/item/device/flashlight, /obj/effect/floor_decal/industrial/outline/yellow, @@ -8883,7 +8780,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqR" = ( +"aqP" = ( /obj/structure/closet/secure_closet/atmos_personal, /obj/item/device/flashlight, /obj/effect/floor_decal/industrial/outline/yellow, @@ -8895,7 +8792,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqS" = ( +"aqQ" = ( /obj/structure/closet/secure_closet/atmos_personal, /obj/item/device/flashlight, /obj/effect/floor_decal/industrial/outline/yellow, @@ -8903,19 +8800,19 @@ /obj/item/weapon/storage/belt/utility, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqT" = ( +"aqR" = ( /obj/structure/dispenser/oxygen{ phorontanks = 10 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqU" = ( +"aqS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aqV" = ( +"aqT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -8929,12 +8826,12 @@ /obj/structure/closet/crate, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aqW" = ( +"aqU" = ( /obj/machinery/deployable/barrier, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aqX" = ( +"aqV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -8948,7 +8845,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aqY" = ( +"aqW" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -8956,7 +8853,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aqZ" = ( +"aqX" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Ammunition (.45 lethal)" }, @@ -8969,7 +8866,7 @@ /obj/item/ammo_magazine/c45m, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ara" = ( +"aqY" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Ammunition (45. less-than-lethal)" }, @@ -8981,7 +8878,7 @@ /obj/item/ammo_magazine/c45m/rubber, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"arb" = ( +"aqZ" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Ammunition (shotgun less-than-lethal)" }, @@ -9002,14 +8899,14 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"arc" = ( +"ara" = ( /obj/structure/sign/securearea{ pixel_x = 32; pixel_y = 0 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ard" = ( +"arb" = ( /obj/machinery/computer/sentencing/courtroom{ pixel_y = 28 }, @@ -9018,7 +8915,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/security/brig) -"are" = ( +"arc" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -9034,7 +8931,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"arf" = ( +"ard" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -9049,7 +8946,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"arg" = ( +"are" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -9064,7 +8961,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"arh" = ( +"arf" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -9076,7 +8973,7 @@ /obj/item/device/flashlight/lamp, /turf/simulated/floor/tiled/dark, /area/security/brig) -"ari" = ( +"arg" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -9091,7 +8988,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"arj" = ( +"arh" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/blue{ @@ -9100,7 +8997,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ark" = ( +"ari" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -9121,7 +9018,7 @@ }, /turf/simulated/floor/plating, /area/security/main) -"arl" = ( +"arj" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 1; @@ -9146,7 +9043,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"arm" = ( +"ark" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -9167,7 +9064,7 @@ }, /turf/simulated/floor/plating, /area/security/main) -"arn" = ( +"arl" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -9179,7 +9076,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aro" = ( +"arm" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -9195,7 +9092,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"arp" = ( +"arn" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -9215,7 +9112,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"arq" = ( +"aro" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -9229,7 +9126,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"arr" = ( +"arp" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -9239,7 +9136,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/brig) -"ars" = ( +"arq" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -9253,7 +9150,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"art" = ( +"arr" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -9271,7 +9168,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aru" = ( +"ars" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -9288,7 +9185,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"arv" = ( +"art" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; @@ -9306,7 +9203,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"arw" = ( +"aru" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; @@ -9325,7 +9222,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"arx" = ( +"arv" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -9348,7 +9245,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"ary" = ( +"arw" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -9356,12 +9253,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"arz" = ( +"arx" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"arA" = ( +"ary" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 4; @@ -9376,13 +9273,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"arB" = ( +"arz" = ( /obj/structure/sign/securearea{ pixel_y = 32 }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"arC" = ( +"arA" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -9410,7 +9307,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"arD" = ( +"arB" = ( /obj/machinery/computer/security/engineering, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -9422,7 +9319,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"arE" = ( +"arC" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 9 @@ -9433,13 +9330,13 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"arF" = ( +"arD" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/bridge) -"arG" = ( +"arE" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -9448,7 +9345,7 @@ /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled, /area/bridge) -"arH" = ( +"arF" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -9458,7 +9355,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/bridge) -"arI" = ( +"arG" = ( /obj/structure/window/reinforced, /obj/effect/floor_decal/industrial/warning, /obj/structure/table/reinforced, @@ -9467,7 +9364,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"arJ" = ( +"arH" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, @@ -9477,7 +9374,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"arK" = ( +"arI" = ( /obj/machinery/computer/med_data, /obj/effect/floor_decal/corner/lime{ dir = 6 @@ -9488,7 +9385,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"arL" = ( +"arJ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -9507,20 +9404,20 @@ }, /turf/simulated/floor/plating, /area/bridge) -"arM" = ( +"arK" = ( /turf/simulated/wall/r_wall, /area/mine/unexplored) -"arN" = ( +"arL" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/engineering/engine_room) -"arO" = ( +"arM" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"arP" = ( +"arN" = ( /obj/machinery/power/terminal{ dir = 4 }, @@ -9531,7 +9428,7 @@ /obj/structure/cable/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"arQ" = ( +"arO" = ( /obj/machinery/power/smes/buildable{ charge = 2e+006; input_attempt = 1; @@ -9546,7 +9443,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"arR" = ( +"arP" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "SMES Access"; req_access = list(11) @@ -9558,7 +9455,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"arS" = ( +"arQ" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -9568,7 +9465,7 @@ }, /turf/simulated/wall/r_wall, /area/engineering/engine_monitoring) -"arT" = ( +"arR" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -9584,13 +9481,13 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"arU" = ( +"arS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"arV" = ( +"arT" = ( /obj/machinery/door/airlock/engineering{ name = "Engineering Hard Storage"; req_access = list(11) @@ -9605,7 +9502,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/storage) -"arW" = ( +"arU" = ( /obj/machinery/door/airlock/engineering{ name = "Engineering Hard Storage"; req_access = list(11) @@ -9613,7 +9510,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/storage) -"arX" = ( +"arV" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -9626,7 +9523,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"arY" = ( +"arW" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -9639,12 +9536,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"arZ" = ( +"arX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red, /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/wall/r_wall, /area/engineering/atmos/storage) -"asa" = ( +"arY" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_atmos{ name = "Atmospherics Storage"; @@ -9655,11 +9552,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"asb" = ( +"arZ" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, /area/engineering/atmos/storage) -"asc" = ( +"asa" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_atmos{ name = "Atmospherics Storage"; @@ -9667,7 +9564,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"asd" = ( +"asb" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -9686,10 +9583,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/engineering/locker_room) -"ase" = ( +"asc" = ( /turf/simulated/wall/r_wall, /area/engineering/locker_room) -"asf" = ( +"asd" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -9703,7 +9600,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"asg" = ( +"ase" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -9718,7 +9615,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ash" = ( +"asf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -9734,7 +9631,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"asi" = ( +"asg" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -9754,7 +9651,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/engineering) -"asj" = ( +"ash" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/extinguisher_cabinet{ @@ -9767,7 +9664,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ask" = ( +"asi" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -9775,7 +9672,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"asl" = ( +"asj" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -9783,7 +9680,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"asm" = ( +"ask" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 4; @@ -9792,7 +9689,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"asn" = ( +"asl" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -9804,14 +9701,14 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aso" = ( +"asm" = ( /obj/machinery/newscaster{ pixel_x = -30; pixel_y = 0 }, /turf/simulated/floor/tiled, /area/security/brig) -"asp" = ( +"asn" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -9824,18 +9721,18 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/brig) -"asq" = ( +"aso" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, /area/security/brig) -"asr" = ( +"asp" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"ass" = ( +"asq" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -9851,7 +9748,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"ast" = ( +"asr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -9870,7 +9767,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asu" = ( +"ass" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -9888,7 +9785,7 @@ /obj/structure/closet, /turf/simulated/floor/tiled, /area/security/brig) -"asv" = ( +"ast" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -9912,7 +9809,7 @@ /obj/structure/closet, /turf/simulated/floor/tiled, /area/security/brig) -"asw" = ( +"asu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -9930,7 +9827,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asx" = ( +"asv" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -9952,7 +9849,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asy" = ( +"asw" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -9979,7 +9876,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asz" = ( +"asx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -10003,7 +9900,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asA" = ( +"asy" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -10024,7 +9921,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asB" = ( +"asz" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -10049,46 +9946,46 @@ }, /turf/simulated/floor/tiled, /area/security/brig) +"asA" = ( +/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/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"asB" = ( +/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/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/brig) "asC" = ( -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"asD" = ( -/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/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"asE" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -10108,7 +10005,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asF" = ( +"asD" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -10134,7 +10031,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asG" = ( +"asE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -10154,7 +10051,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asH" = ( +"asF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -10182,7 +10079,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asI" = ( +"asG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -10207,7 +10104,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asJ" = ( +"asH" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -10229,7 +10126,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asK" = ( +"asI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -10252,7 +10149,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asL" = ( +"asJ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -10269,7 +10166,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asM" = ( +"asK" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -10279,10 +10176,10 @@ /obj/structure/closet/walllocker/emerglocker/east, /turf/simulated/floor/tiled, /area/security/brig) -"asN" = ( +"asL" = ( /turf/simulated/wall, /area/lawoffice) -"asO" = ( +"asM" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -10294,12 +10191,12 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"asP" = ( +"asN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/rack, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"asQ" = ( +"asO" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -10313,7 +10210,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"asR" = ( +"asP" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -10322,7 +10219,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"asS" = ( +"asQ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -10336,7 +10233,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"asT" = ( +"asR" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -10365,7 +10262,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"asU" = ( +"asS" = ( /obj/machinery/computer/power_monitor, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -10382,7 +10279,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"asV" = ( +"asT" = ( /obj/effect/floor_decal/corner/yellow/full, /obj/structure/cable/green{ d1 = 4; @@ -10391,7 +10288,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"asW" = ( +"asU" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -10404,7 +10301,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"asX" = ( +"asV" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -10414,7 +10311,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"asY" = ( +"asW" = ( /obj/machinery/computer/message_monitor, /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; @@ -10422,7 +10319,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"asZ" = ( +"asX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/item/modular_computer/console/preset/command, @@ -10432,7 +10329,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"ata" = ( +"asY" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -10440,7 +10337,7 @@ /obj/item/modular_computer/console/preset/command, /turf/simulated/floor/tiled, /area/bridge) -"atb" = ( +"asZ" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -10449,7 +10346,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"atc" = ( +"ata" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -10462,7 +10359,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"atd" = ( +"atb" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 4 }, @@ -10473,7 +10370,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"ate" = ( +"atc" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, @@ -10489,7 +10386,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"atf" = ( +"atd" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -10518,13 +10415,13 @@ }, /turf/simulated/floor/plating, /area/bridge) -"atg" = ( +"ate" = ( /obj/structure/sign/securearea{ name = "\improper DANGER: REACTOR VENT SHAFT" }, /turf/simulated/wall/r_wall, /area/engineering/engine_waste) -"ath" = ( +"atf" = ( /obj/structure/window/phoronreinforced, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -10546,7 +10443,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ati" = ( +"atg" = ( /obj/structure/window/phoronreinforced, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -10564,7 +10461,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"atj" = ( +"ath" = ( /obj/structure/window/phoronreinforced, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -10586,11 +10483,11 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"atk" = ( +"ati" = ( /obj/structure/sign/nosmoking_2, /turf/simulated/wall/r_wall, /area/engineering/engine_room) -"atl" = ( +"atj" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -10602,7 +10499,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"atm" = ( +"atk" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -10610,13 +10507,13 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"atn" = ( +"atl" = ( /obj/structure/cable/orange{ icon_state = "1-2" }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ato" = ( +"atm" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -10637,7 +10534,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"atp" = ( +"atn" = ( /obj/machinery/computer/general_air_control/supermatter_core{ frequency = 1438; input_tag = "cooling_in"; @@ -10652,7 +10549,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atq" = ( +"ato" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -10669,7 +10566,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atr" = ( +"atp" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -10679,7 +10576,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ats" = ( +"atq" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -10687,7 +10584,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"att" = ( +"atr" = ( /obj/structure/table/reinforced, /obj/machinery/ringer{ department = "Engineering"; @@ -10698,7 +10595,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atu" = ( +"ats" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -10715,7 +10612,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"atv" = ( +"att" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -10728,7 +10625,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atw" = ( +"atu" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -10738,7 +10635,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atx" = ( +"atv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -10751,20 +10648,20 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aty" = ( +"atw" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atz" = ( +"atx" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atA" = ( +"aty" = ( /obj/machinery/light{ dir = 1 }, @@ -10776,24 +10673,24 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atB" = ( +"atz" = ( /obj/machinery/mech_recharger, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atC" = ( +"atA" = ( /turf/simulated/wall/r_wall, /area/engineering/atmos/monitoring) -"atD" = ( +"atB" = ( /obj/machinery/computer/security/engineering, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"atE" = ( +"atC" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"atF" = ( +"atD" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -10816,7 +10713,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"atG" = ( +"atE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -10828,7 +10725,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"atH" = ( +"atF" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -10844,7 +10741,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/locker_room) -"atI" = ( +"atG" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -10852,7 +10749,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atJ" = ( +"atH" = ( /obj/item/device/radio/intercom{ broadcasting = 0; frequency = 1475; @@ -10872,7 +10769,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atK" = ( +"atI" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/outline/yellow, @@ -10881,7 +10778,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atL" = ( +"atJ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -10898,7 +10795,7 @@ }, /turf/simulated/floor/plating, /area/engineering/locker_room) -"atM" = ( +"atK" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/engineering_personal, /obj/item/device/flashlight, @@ -10910,7 +10807,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atN" = ( +"atL" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/engineering_personal, /obj/item/device/flashlight, @@ -10924,7 +10821,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atO" = ( +"atM" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/engineering_personal, /obj/item/device/flashlight, @@ -10933,7 +10830,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atP" = ( +"atN" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/engineering_personal, /obj/item/device/flashlight, @@ -10951,11 +10848,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atQ" = ( +"atO" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/engineering) -"atR" = ( +"atP" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -10965,7 +10862,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/engineering) -"atS" = ( +"atQ" = ( /obj/machinery/hologram/holopad, /obj/machinery/light, /obj/machinery/camera/network/security{ @@ -10975,7 +10872,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"atT" = ( +"atR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -10985,27 +10882,27 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"atU" = ( +"atS" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = -32 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"atV" = ( +"atT" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"atW" = ( +"atU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"atX" = ( +"atV" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = 32 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"atY" = ( +"atW" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -11018,14 +10915,14 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"atZ" = ( +"atX" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled, /area/security/brig) -"aua" = ( +"atY" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -11046,7 +10943,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aub" = ( +"atZ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -11065,11 +10962,11 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"auc" = ( +"aua" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/security/brig) -"aud" = ( +"aub" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -11083,7 +10980,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aue" = ( +"auc" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11099,7 +10996,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"auf" = ( +"aud" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11115,7 +11012,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"aug" = ( +"aue" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11125,7 +11022,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled/dark, /area/security/brig) -"auh" = ( +"auf" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11135,7 +11032,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"aui" = ( +"aug" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue{ @@ -11144,7 +11041,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"auj" = ( +"auh" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -11157,7 +11054,7 @@ /obj/effect/floor_decal/corner/blue, /turf/simulated/floor/tiled, /area/security/brig) -"auk" = ( +"aui" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11166,7 +11063,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aul" = ( +"auj" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -11176,20 +11073,20 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aum" = ( +"auk" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, /turf/simulated/floor/tiled, /area/security/brig) -"aun" = ( +"aul" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/blue{ dir = 10 }, /turf/simulated/floor/tiled, /area/security/brig) -"auo" = ( +"aum" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11198,7 +11095,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aup" = ( +"aun" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11209,12 +11106,12 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"auq" = ( +"auo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/brig) -"aur" = ( +"aup" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -11231,7 +11128,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aus" = ( +"auq" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11240,7 +11137,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aut" = ( +"aur" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -11254,7 +11151,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"auu" = ( +"aus" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -11266,30 +11163,30 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"auv" = ( +"aut" = ( /turf/simulated/floor/carpet, /area/lawoffice) -"auw" = ( +"auu" = ( /obj/machinery/status_display{ pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/carpet, /area/lawoffice) -"aux" = ( +"auv" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/wood, /area/lawoffice) -"auy" = ( +"auw" = ( /obj/machinery/light_switch{ pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/wood, /area/lawoffice) -"auz" = ( +"aux" = ( /obj/structure/closet/lawcloset, /obj/item/weapon/storage/briefcase{ pixel_x = 3; @@ -11305,10 +11202,10 @@ /obj/item/device/flash, /turf/simulated/floor/wood, /area/lawoffice) -"auA" = ( +"auy" = ( /turf/simulated/wall, /area/hallway/primary/starboard) -"auB" = ( +"auz" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -11325,7 +11222,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/starboard) -"auC" = ( +"auA" = ( /obj/machinery/light{ dir = 4 }, @@ -11334,10 +11231,10 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/bridge) -"auD" = ( +"auB" = ( /turf/simulated/wall, /area/bridge) -"auE" = ( +"auC" = ( /obj/structure/table/reinforced, /obj/machinery/alarm{ dir = 4; @@ -11366,7 +11263,7 @@ /obj/item/device/taperecorder, /turf/simulated/floor/tiled, /area/bridge) -"auF" = ( +"auD" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -11375,7 +11272,7 @@ /obj/machinery/case_button/shuttle, /turf/simulated/floor/tiled, /area/bridge) -"auG" = ( +"auE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/bed/chair/office/bridge{ @@ -11384,7 +11281,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"auH" = ( +"auF" = ( /obj/structure/table/reinforced, /obj/machinery/button/remote/blast_door{ id = "bridge blast"; @@ -11399,7 +11296,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"auI" = ( +"auG" = ( /obj/structure/table/reinforced, /obj/item/device/radio/intercom{ dir = 4; @@ -11427,7 +11324,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"auJ" = ( +"auH" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -11440,10 +11337,10 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/bridge) -"auK" = ( +"auI" = ( /turf/simulated/open, /area/engineering/engine_waste) -"auL" = ( +"auJ" = ( /obj/machinery/door/blast/regular{ dir = 1; icon_state = "pdoor1"; @@ -11453,12 +11350,12 @@ }, /turf/simulated/floor/airless, /area/engineering/engine_waste) -"auM" = ( +"auK" = ( /turf/simulated/floor/airless{ icon_state = "asteroidplating" }, /area/mine/unexplored) -"auN" = ( +"auL" = ( /obj/machinery/camera/network/engine{ c_tag = "Engine Core West"; dir = 4 @@ -11468,13 +11365,13 @@ icon_state = "plating" }, /area/engineering/engine_room) -"auO" = ( +"auM" = ( /turf/simulated/floor/greengrid/nitrogen{ icon = 'icons/turf/flooring/plating.dmi'; icon_state = "plating" }, /area/engineering/engine_room) -"auP" = ( +"auN" = ( /obj/machinery/atmospherics/unary/outlet_injector{ dir = 4; frequency = 1438; @@ -11491,7 +11388,7 @@ icon_state = "plating" }, /area/engineering/engine_room) -"auQ" = ( +"auO" = ( /obj/machinery/door/airlock/hatch{ icon_state = "door_locked"; id_tag = "engine_access_hatch"; @@ -11504,7 +11401,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"auR" = ( +"auP" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4; icon_state = "intact" @@ -11515,20 +11412,20 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"auS" = ( +"auQ" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 10 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"auT" = ( +"auR" = ( /obj/structure/cable/orange{ icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plating, /area/engineering/engine_room) -"auU" = ( +"auS" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -11546,12 +11443,12 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"auV" = ( +"auT" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/item/modular_computer/console/preset/engineering, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"auW" = ( +"auU" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -11566,15 +11463,15 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"auX" = ( +"auV" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"auY" = ( +"auW" = ( /obj/structure/table/reinforced, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"auZ" = ( +"auX" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -11589,7 +11486,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"ava" = ( +"auY" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -11607,7 +11504,30 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) +"auZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"ava" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) "avb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11618,29 +11538,6 @@ /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) "avc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"avd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/engine_monitoring) -"ave" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11652,7 +11549,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avf" = ( +"avd" = ( /obj/machinery/door/firedoor{ dir = 1; name = "Engineering Firelock" @@ -11668,7 +11565,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avg" = ( +"ave" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11687,7 +11584,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avh" = ( +"avf" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11698,7 +11595,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avi" = ( +"avg" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11710,7 +11607,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avj" = ( +"avh" = ( /obj/structure/table/standard, /obj/structure/cable{ d1 = 2; @@ -11729,7 +11626,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avk" = ( +"avi" = ( /obj/machinery/computer/atmos_alert, /obj/machinery/alarm{ dir = 4; @@ -11739,13 +11636,13 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"avl" = ( +"avj" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"avm" = ( +"avk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -11754,7 +11651,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"avn" = ( +"avl" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -11768,7 +11665,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"avo" = ( +"avm" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -11784,7 +11681,7 @@ }, /turf/simulated/floor/plating, /area/engineering/locker_room) -"avp" = ( +"avn" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -11800,7 +11697,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avq" = ( +"avo" = ( /obj/machinery/meter, /obj/structure/cable/green{ d1 = 4; @@ -11813,7 +11710,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avr" = ( +"avp" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11828,7 +11725,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avs" = ( +"avq" = ( /obj/machinery/door/firedoor{ dir = 1; name = "Engineering Firelock" @@ -11847,7 +11744,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avt" = ( +"avr" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11860,7 +11757,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avu" = ( +"avs" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11868,7 +11765,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avv" = ( +"avt" = ( /obj/structure/closet/medical_wall{ pixel_x = 32 }, @@ -11884,7 +11781,7 @@ /obj/item/weapon/reagent_containers/pill/antitox, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avw" = ( +"avu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -11899,7 +11796,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"avx" = ( +"avv" = ( /obj/structure/table/standard, /obj/machinery/recharger, /obj/structure/sign/nosmoking_2{ @@ -11912,25 +11809,25 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"avy" = ( +"avw" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"avz" = ( +"avx" = ( /obj/machinery/flasher/portable, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"avA" = ( +"avy" = ( /obj/structure/window/reinforced, /obj/effect/floor_decal/corner/blue{ dir = 10 }, /turf/simulated/floor/tiled, /area/security/brig) -"avB" = ( +"avz" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11951,7 +11848,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"avC" = ( +"avA" = ( /obj/structure/window/reinforced, /obj/effect/floor_decal/corner/blue{ dir = 10 @@ -11968,7 +11865,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"avD" = ( +"avB" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -11985,11 +11882,11 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"avE" = ( +"avC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/security/brig) -"avF" = ( +"avD" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -12010,7 +11907,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"avG" = ( +"avE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue{ @@ -12025,7 +11922,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/security/brig) -"avH" = ( +"avF" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12038,18 +11935,18 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"avI" = ( +"avG" = ( /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled, /area/security/brig) -"avJ" = ( +"avH" = ( /obj/effect/floor_decal/corner/blue/diagonal, /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/tiled, /area/security/brig) -"avK" = ( +"avI" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -12060,7 +11957,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/brig) -"avL" = ( +"avJ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -12078,10 +11975,10 @@ }, /turf/simulated/floor/plating, /area/security/prison) -"avM" = ( +"avK" = ( /turf/simulated/wall, /area/security/prison) -"avN" = ( +"avL" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ id_tag = "prisonexit"; @@ -12097,7 +11994,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/prison) -"avO" = ( +"avM" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -12121,7 +12018,7 @@ }, /turf/simulated/floor/plating, /area/security/prison) -"avP" = ( +"avN" = ( /obj/machinery/door/firedoor, /obj/machinery/door/window/brigdoor/northright{ id = "Cell 1"; @@ -12141,7 +12038,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"avQ" = ( +"avO" = ( /obj/machinery/door/firedoor, /obj/machinery/door/window/brigdoor/northright{ id = "Cell 2"; @@ -12161,10 +12058,10 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"avR" = ( +"avP" = ( /turf/simulated/floor/tiled/ramp/bottom, /area/security/brig) -"avS" = ( +"avQ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -12177,7 +12074,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"avT" = ( +"avR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12191,7 +12088,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"avU" = ( +"avS" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -12199,21 +12096,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/security/brig) -"avV" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/machinery/button/windowtint{ - id = "iaa"; - pixel_x = -24; - pixel_y = 0 - }, -/obj/effect/landmark/start{ - name = "Internal Affairs Agent" - }, -/turf/simulated/floor/carpet, -/area/lawoffice) -"avW" = ( +"avU" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin, /obj/item/weapon/pen{ @@ -12227,23 +12110,23 @@ /obj/item/weapon/pen/red, /turf/simulated/floor/carpet, /area/lawoffice) -"avX" = ( +"avV" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 }, /turf/simulated/floor/carpet, /area/lawoffice) -"avY" = ( +"avW" = ( /turf/simulated/floor/wood, /area/lawoffice) -"avZ" = ( +"avX" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/simulated/floor/wood, /area/lawoffice) -"awa" = ( +"avY" = ( /obj/structure/table/wood, /obj/item/weapon/folder/red{ desc = "A red folder. You can make out a small scribble in the top right corner. It reads Top Secret."; @@ -12254,7 +12137,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"awb" = ( +"avZ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -12271,11 +12154,11 @@ }, /turf/simulated/floor/plating, /area/lawoffice) -"awc" = ( +"awa" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"awd" = ( +"awb" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -12287,18 +12170,18 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"awe" = ( +"awc" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"awf" = ( +"awd" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"awg" = ( +"awe" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -12310,14 +12193,14 @@ /obj/item/modular_computer/console/preset/security, /turf/simulated/floor/tiled, /area/bridge) -"awh" = ( +"awf" = ( /obj/effect/floor_decal/corner/blue/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/tiled, /area/bridge) -"awi" = ( +"awg" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -12328,14 +12211,14 @@ /obj/structure/banner, /turf/simulated/floor/tiled, /area/bridge) -"awj" = ( +"awh" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 1 }, /turf/simulated/floor/tiled, /area/bridge) -"awk" = ( +"awi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -12343,7 +12226,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/bridge) -"awl" = ( +"awj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -12353,7 +12236,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"awm" = ( +"awk" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -12368,14 +12251,14 @@ /obj/structure/banner, /turf/simulated/floor/tiled, /area/bridge) -"awn" = ( +"awl" = ( /obj/effect/floor_decal/corner/purple/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/tiled, /area/bridge) -"awo" = ( +"awm" = ( /obj/machinery/computer/mecha, /obj/effect/floor_decal/corner/purple{ icon_state = "corner_white"; @@ -12387,13 +12270,13 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"awp" = ( +"awn" = ( /obj/machinery/light/small/emergency{ dir = 8 }, /turf/simulated/open, /area/engineering/engine_waste) -"awq" = ( +"awo" = ( /obj/machinery/door/blast/regular{ dir = 4; icon_state = "pdoor1"; @@ -12410,10 +12293,10 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/engineering/engine_room) -"awr" = ( +"awp" = ( /turf/simulated/floor/greengrid/nitrogen, /area/engineering/engine_room) -"aws" = ( +"awq" = ( /obj/machinery/mass_driver{ icon_state = "mass_driver"; dir = 8; @@ -12424,7 +12307,7 @@ }, /turf/simulated/floor/greengrid/nitrogen, /area/engineering/engine_room) -"awt" = ( +"awr" = ( /obj/machinery/air_sensor{ frequency = 1438; id_tag = "engine_sensor"; @@ -12435,7 +12318,7 @@ icon_state = "plating" }, /area/engineering/engine_room) -"awu" = ( +"aws" = ( /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; dir = 4 @@ -12461,7 +12344,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"awv" = ( +"awt" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning, /obj/effect/floor_decal/industrial/warning{ @@ -12469,7 +12352,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aww" = ( +"awu" = ( /obj/machinery/power/emitter{ anchored = 1; dir = 8; @@ -12487,14 +12370,14 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"awx" = ( +"awv" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/structure/cable/orange{ icon_state = "4-8" }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"awy" = ( +"aww" = ( /obj/structure/cable/orange{ icon_state = "4-8" }, @@ -12505,7 +12388,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"awz" = ( +"awx" = ( /obj/structure/cable/orange{ icon_state = "1-8" }, @@ -12526,7 +12409,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"awA" = ( +"awy" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -12550,7 +12433,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"awB" = ( +"awz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -12565,7 +12448,7 @@ /obj/item/modular_computer/console/preset/engineering, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awC" = ( +"awA" = ( /obj/structure/table/reinforced, /obj/machinery/button/remote/blast_door{ desc = "A remote control-switch for the engine control room blast doors."; @@ -12608,7 +12491,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awD" = ( +"awB" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12620,7 +12503,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awE" = ( +"awC" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12639,7 +12522,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awF" = ( +"awD" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12653,7 +12536,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awG" = ( +"awE" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Engine Monitoring Room"; req_access = list(11) @@ -12675,7 +12558,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awH" = ( +"awF" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12699,7 +12582,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awI" = ( +"awG" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12714,7 +12597,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awJ" = ( +"awH" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12729,7 +12612,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awK" = ( +"awI" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12743,7 +12626,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awL" = ( +"awJ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12761,7 +12644,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awM" = ( +"awK" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12783,7 +12666,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awN" = ( +"awL" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12801,7 +12684,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awO" = ( +"awM" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -12815,7 +12698,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awP" = ( +"awN" = ( /obj/structure/table/rack, /obj/item/weapon/pickaxe{ pixel_x = 8 @@ -12840,18 +12723,18 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awQ" = ( +"awO" = ( /obj/item/modular_computer/console/preset/engineering, /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"awR" = ( +"awP" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"awS" = ( +"awQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -12861,7 +12744,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"awT" = ( +"awR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12878,7 +12761,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"awU" = ( +"awS" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -12894,7 +12777,7 @@ }, /turf/simulated/floor/plating, /area/engineering/locker_room) -"awV" = ( +"awT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12910,7 +12793,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"awW" = ( +"awU" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 @@ -12920,7 +12803,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"awX" = ( +"awV" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 10 @@ -12930,7 +12813,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"awY" = ( +"awW" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -12950,7 +12833,7 @@ }, /turf/simulated/floor/plating, /area/engineering/locker_room) -"awZ" = ( +"awX" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/light_switch{ pixel_x = 0; @@ -12958,32 +12841,32 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"axa" = ( +"awY" = ( /obj/machinery/light, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"axb" = ( +"awZ" = ( /obj/structure/table/standard, /obj/item/device/floor_painter, /obj/item/clothing/head/hardhat, /obj/item/clothing/head/hardhat, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"axc" = ( +"axa" = ( /obj/structure/closet/radiation, /obj/item/clothing/glasses/meson, /obj/item/clothing/glasses/meson, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"axd" = ( +"axb" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/maintenance/engineering) -"axe" = ( +"axc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -12998,7 +12881,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"axf" = ( +"axd" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -13007,7 +12890,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"axg" = ( +"axe" = ( /obj/machinery/alarm{ pixel_y = 23 }, @@ -13017,10 +12900,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"axh" = ( +"axf" = ( /turf/simulated/wall, /area/security/armoury) -"axi" = ( +"axg" = ( /obj/machinery/computer/prisoner, /obj/machinery/requests_console{ department = "Security"; @@ -13029,7 +12912,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"axj" = ( +"axh" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -13060,7 +12943,7 @@ /obj/structure/table/rack, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"axk" = ( +"axi" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -13076,7 +12959,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"axl" = ( +"axj" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/laserproof{ pixel_x = -2; @@ -13104,7 +12987,7 @@ /obj/item/clothing/head/helmet/ablative, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"axm" = ( +"axk" = ( /obj/machinery/flasher/portable, /obj/machinery/light/small/emergency{ icon_state = "bulb1"; @@ -13113,7 +12996,7 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"axn" = ( +"axl" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -13128,7 +13011,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"axo" = ( +"axm" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -13142,7 +13025,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"axp" = ( +"axn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -13161,7 +13044,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"axq" = ( +"axo" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Security Processing"; @@ -13175,14 +13058,14 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"axr" = ( +"axp" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/security/brig) -"axs" = ( +"axq" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -13191,7 +13074,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/security/brig) -"axt" = ( +"axr" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -13208,7 +13091,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"axu" = ( +"axs" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -13227,7 +13110,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"axv" = ( +"axt" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -13240,7 +13123,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"axw" = ( +"axu" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -13251,7 +13134,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"axx" = ( +"axv" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -13264,7 +13147,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/brig) -"axy" = ( +"axw" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -13284,7 +13167,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/security/prison) -"axz" = ( +"axx" = ( /obj/machinery/flasher{ id = "permentryflash"; name = "Floor mounted flash"; @@ -13301,7 +13184,7 @@ /obj/structure/closet/walllocker/emerglocker/north, /turf/simulated/floor/tiled, /area/security/prison) -"axA" = ( +"axy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green, @@ -13320,7 +13203,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"axB" = ( +"axz" = ( /obj/structure/sink{ dir = 8; icon_state = "sink"; @@ -13332,7 +13215,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"axC" = ( +"axA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -13341,7 +13224,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"axD" = ( +"axB" = ( /obj/structure/bed, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -13355,7 +13238,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"axE" = ( +"axC" = ( /obj/structure/bed, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -13369,7 +13252,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"axF" = ( +"axD" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -13377,10 +13260,10 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"axG" = ( +"axE" = ( /turf/simulated/floor/plating, /area/security/brig) -"axH" = ( +"axF" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -13390,7 +13273,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"axI" = ( +"axG" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/light/small{ dir = 8 @@ -13403,13 +13286,13 @@ /obj/structure/window/reinforced, /turf/simulated/floor/carpet, /area/lawoffice) -"axJ" = ( +"axH" = ( /obj/structure/table/wood, /obj/machinery/computer/skills, /obj/structure/window/reinforced, /turf/simulated/floor/carpet, /area/lawoffice) -"axK" = ( +"axI" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 }, @@ -13420,23 +13303,23 @@ }, /turf/simulated/floor/carpet, /area/lawoffice) -"axL" = ( +"axJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /turf/simulated/floor/wood, /area/lawoffice) -"axM" = ( +"axK" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/wood, /area/lawoffice) -"axN" = ( +"axL" = ( /obj/machinery/photocopier, /turf/simulated/floor/wood, /area/lawoffice) -"axO" = ( +"axM" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -13449,7 +13332,7 @@ }, /turf/simulated/floor/plating, /area/lawoffice) -"axP" = ( +"axN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -13458,7 +13341,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"axQ" = ( +"axO" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -13472,10 +13355,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"axR" = ( +"axP" = ( /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"axS" = ( +"axQ" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -13486,19 +13369,19 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) +"axR" = ( +/turf/simulated/open, +/area/turbolift/vault_station) +"axS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) "axT" = ( -/turf/simulated/open, -/area/turbolift/vault_station) -"axU" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"axV" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -13526,7 +13409,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"axW" = ( +"axU" = ( /obj/machinery/computer/secure_data, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -13538,7 +13421,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"axX" = ( +"axV" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -13549,26 +13432,26 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"axY" = ( +"axW" = ( /turf/simulated/floor/tiled/ramp/bottom{ icon_state = "rampbot"; dir = 8 }, /area/bridge) -"axZ" = ( +"axX" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/bridge) -"aya" = ( +"axY" = ( /turf/simulated/floor/tiled/ramp/bottom{ icon_state = "rampbot"; dir = 4 }, /area/bridge) -"ayb" = ( +"axZ" = ( /obj/effect/floor_decal/corner/purple{ icon_state = "corner_white"; dir = 6 @@ -13579,7 +13462,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"ayc" = ( +"aya" = ( /obj/machinery/computer/robotics, /obj/effect/floor_decal/corner/purple{ icon_state = "corner_white"; @@ -13591,7 +13474,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"ayd" = ( +"ayb" = ( /obj/machinery/atmospherics/unary/vent_pump/engine{ dir = 4; external_pressure_bound = 100; @@ -13610,7 +13493,7 @@ icon_state = "plating" }, /area/engineering/engine_room) -"aye" = ( +"ayc" = ( /obj/machinery/door/airlock/hatch{ icon_state = "door_locked"; id_tag = "engine_access_hatch"; @@ -13622,7 +13505,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ayf" = ( +"ayd" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ icon_state = "intact"; dir = 10 @@ -13633,14 +13516,14 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ayg" = ( +"aye" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ icon_state = "intact"; dir = 6 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ayh" = ( +"ayf" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -13656,7 +13539,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ayi" = ( +"ayg" = ( /obj/structure/cable/orange{ icon_state = "1-2" }, @@ -13668,7 +13551,7 @@ /obj/structure/cable/orange, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ayj" = ( +"ayh" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -13678,18 +13561,18 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayk" = ( +"ayi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayl" = ( +"ayj" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aym" = ( +"ayk" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -13709,7 +13592,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"ayn" = ( +"ayl" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -13734,7 +13617,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayo" = ( +"aym" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ @@ -13747,13 +13630,13 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayp" = ( +"ayn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayq" = ( +"ayo" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -13762,7 +13645,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayr" = ( +"ayp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -13772,7 +13655,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ays" = ( +"ayq" = ( /obj/machinery/door/firedoor{ dir = 1; name = "Engineering Firelock" @@ -13786,14 +13669,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayt" = ( +"ayr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/floor_decal/corner/yellow/full, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayu" = ( +"ays" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -13802,7 +13685,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayv" = ( +"ayt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -13812,7 +13695,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayw" = ( +"ayu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -13822,7 +13705,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayx" = ( +"ayv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -13838,7 +13721,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayy" = ( +"ayw" = ( /obj/item/weapon/shovel{ pixel_x = 8 }, @@ -13855,7 +13738,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayz" = ( +"ayx" = ( /obj/machinery/computer/general_air_control{ frequency = 1441; name = "Tank Monitor"; @@ -13870,7 +13753,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"ayA" = ( +"ayy" = ( /obj/machinery/computer/general_air_control{ frequency = 1441; level = 3; @@ -13879,7 +13762,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"ayB" = ( +"ayz" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -13893,7 +13776,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"ayC" = ( +"ayA" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -13906,7 +13789,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/engineering/locker_room) -"ayD" = ( +"ayB" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -13921,7 +13804,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"ayE" = ( +"ayC" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -13929,17 +13812,17 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"ayF" = ( +"ayD" = ( /turf/simulated/wall/r_wall, /area/maintenance/substation/engineering) -"ayG" = ( +"ayE" = ( /turf/simulated/wall, /area/maintenance/substation/engineering) -"ayH" = ( +"ayF" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ayI" = ( +"ayG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -13949,7 +13832,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ayJ" = ( +"ayH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; @@ -13958,7 +13841,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ayK" = ( +"ayI" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -13967,13 +13850,13 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ayL" = ( +"ayJ" = ( /obj/machinery/recharger/wallcharger{ pixel_x = -24 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ayM" = ( +"ayK" = ( /obj/machinery/door/window/brigdoor/southright{ dir = 4; icon_state = "rightsecure"; @@ -13982,7 +13865,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ayN" = ( +"ayL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -13997,7 +13880,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ayO" = ( +"ayM" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/bulletproof{ pixel_x = -2; @@ -14022,7 +13905,7 @@ /obj/item/clothing/head/helmet/ballistic, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ayP" = ( +"ayN" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -14039,7 +13922,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ayQ" = ( +"ayO" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; dir = 4 @@ -14052,7 +13935,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ayR" = ( +"ayP" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -14076,26 +13959,26 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ayS" = ( +"ayQ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/security/brig) -"ayT" = ( +"ayR" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"ayU" = ( +"ayS" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/brig) -"ayV" = ( +"ayT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14113,7 +13996,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ayW" = ( +"ayU" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -14122,7 +14005,7 @@ /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled, /area/security/brig) -"ayX" = ( +"ayV" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -14131,13 +14014,13 @@ /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled, /area/security/brig) -"ayY" = ( +"ayW" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/meter, /turf/simulated/floor/tiled, /area/security/brig) -"ayZ" = ( +"ayX" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -14150,12 +14033,12 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/prison) -"aza" = ( +"ayY" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/security/prison) -"azb" = ( +"ayZ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14165,17 +14048,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/prison) -"azc" = ( +"aza" = ( /obj/structure/toilet{ dir = 4; pixel_y = 5 }, /turf/simulated/floor/tiled, /area/security/prison) -"azd" = ( +"azb" = ( /turf/simulated/floor/tiled, /area/security/prison) -"aze" = ( +"azc" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 1"; name = "Cell 1 Locker" @@ -14185,7 +14068,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"azf" = ( +"azd" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 2"; name = "Cell 2 Locker" @@ -14195,15 +14078,15 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"azg" = ( +"aze" = ( /obj/machinery/recharge_station, /turf/simulated/floor/greengrid, /area/security/brig) -"azh" = ( +"azf" = ( /obj/machinery/computer/area_atmos, /turf/simulated/floor/plating, /area/security/brig) -"azi" = ( +"azg" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -14214,7 +14097,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/brig) -"azj" = ( +"azh" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/light/small{ dir = 8 @@ -14229,7 +14112,7 @@ }, /turf/simulated/floor/carpet, /area/lawoffice) -"azk" = ( +"azi" = ( /obj/structure/table/wood, /obj/machinery/computer/skills, /obj/structure/window/reinforced{ @@ -14237,7 +14120,7 @@ }, /turf/simulated/floor/carpet, /area/lawoffice) -"azl" = ( +"azj" = ( /obj/structure/bed/chair/comfy/brown, /obj/structure/window/reinforced{ dir = 1 @@ -14248,12 +14131,12 @@ }, /turf/simulated/floor/carpet, /area/lawoffice) -"azm" = ( +"azk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/lawoffice) -"azn" = ( +"azl" = ( /obj/structure/table/wood, /obj/item/device/taperecorder{ pixel_x = 3; @@ -14266,13 +14149,13 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"azo" = ( +"azm" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"azp" = ( +"azn" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -14284,11 +14167,11 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"azq" = ( +"azo" = ( /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"azr" = ( +"azp" = ( /obj/machinery/computer/prisoner, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -14305,7 +14188,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azs" = ( +"azq" = ( /obj/effect/floor_decal/corner/blue/full, /obj/structure/cable/green{ d1 = 4; @@ -14319,7 +14202,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azt" = ( +"azr" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -14337,7 +14220,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azu" = ( +"azs" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 6; pixel_y = -32 @@ -14352,7 +14235,7 @@ dir = 8 }, /area/bridge) -"azv" = ( +"azt" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -14361,7 +14244,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/bridge) -"azw" = ( +"azu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -14377,7 +14260,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azx" = ( +"azv" = ( /obj/machinery/requests_console{ announcementConsole = 1; department = "Bridge"; @@ -14392,7 +14275,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azy" = ( +"azw" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -14406,7 +14289,7 @@ dir = 4 }, /area/bridge) -"azz" = ( +"azx" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -14422,7 +14305,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azA" = ( +"azy" = ( /obj/effect/floor_decal/corner/purple/full{ dir = 4 }, @@ -14433,7 +14316,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azB" = ( +"azz" = ( /obj/effect/floor_decal/corner/purple{ icon_state = "corner_white"; dir = 6 @@ -14450,11 +14333,11 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azC" = ( +"azA" = ( /obj/structure/sign/vacuum, /turf/simulated/wall/r_wall, /area/engineering/engine_waste) -"azD" = ( +"azB" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/machinery/button/remote/blast_door{ desc = "A remote control-switch for the engine charging port."; @@ -14484,12 +14367,12 @@ /obj/machinery/meter, /turf/simulated/floor/plating, /area/engineering/engine_room) -"azE" = ( +"azC" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/machinery/meter, /turf/simulated/floor/plating, /area/engineering/engine_room) -"azF" = ( +"azD" = ( /obj/structure/cable/orange{ icon_state = "1-2" }, @@ -14498,7 +14381,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"azG" = ( +"azE" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -14517,12 +14400,12 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"azH" = ( +"azF" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/computer/security/engineering, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azI" = ( +"azG" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 10 @@ -14530,7 +14413,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azJ" = ( +"azH" = ( /obj/item/device/radio/intercom{ layer = 4; name = "Station Intercom (General)"; @@ -14544,7 +14427,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azK" = ( +"azI" = ( /obj/machinery/newscaster{ layer = 3.3; pixel_x = 0; @@ -14552,7 +14435,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azL" = ( +"azJ" = ( /obj/structure/closet/radiation, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light_switch{ @@ -14561,7 +14444,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azM" = ( +"azK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -14574,7 +14457,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azN" = ( +"azL" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -14594,7 +14477,7 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) -"azO" = ( +"azM" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Engineering EVA Storage"; req_access = list(11); @@ -14603,7 +14486,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/engineering/storage) -"azP" = ( +"azN" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -14619,36 +14502,36 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) +"azO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor{ + dir = 1; + name = "Engineering Firelock" + }, +/turf/simulated/floor/plating, +/area/engineering/storage) +"azP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor{ + dir = 1; + name = "Engineering Firelock" + }, +/turf/simulated/floor/plating, +/area/engineering/storage) "azQ" = ( /obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor{ - dir = 1; - name = "Engineering Firelock" - }, -/turf/simulated/floor/plating, -/area/engineering/storage) -"azR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor{ - dir = 1; - name = "Engineering Firelock" - }, -/turf/simulated/floor/plating, -/area/engineering/storage) -"azS" = ( -/obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -14664,7 +14547,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"azT" = ( +"azR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14682,7 +14565,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azU" = ( +"azS" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -14704,7 +14587,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"azV" = ( +"azT" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -14716,7 +14599,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/atmos/monitoring) -"azW" = ( +"azU" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -14728,7 +14611,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/atmos/monitoring) -"azX" = ( +"azV" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_atmos{ name = "Atmospherics Monitoring Room"; @@ -14743,11 +14626,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"azY" = ( +"azW" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, /area/engineering/locker_room) -"azZ" = ( +"azX" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_engineering{ name = "Engineering Hallway"; @@ -14760,7 +14643,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"aAa" = ( +"azY" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -14772,7 +14655,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/locker_room) -"aAb" = ( +"azZ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -14784,10 +14667,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/locker_room) -"aAc" = ( +"aAa" = ( /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aAd" = ( +"aAb" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -14811,7 +14694,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aAe" = ( +"aAc" = ( /obj/machinery/power/smes/buildable{ charge = 0; RCon_tag = "Substation - \[F.3] Engineering" @@ -14826,13 +14709,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aAf" = ( +"aAd" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "\[F.3] Engineering Substation Bypass" }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aAg" = ( +"aAe" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -14841,11 +14724,11 @@ }, /turf/simulated/wall, /area/maintenance/substation/engineering) -"aAh" = ( +"aAf" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/wall, /area/maintenance/engineering) -"aAi" = ( +"aAg" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -14856,7 +14739,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aAj" = ( +"aAh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -14866,7 +14749,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aAk" = ( +"aAi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -14876,7 +14759,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aAl" = ( +"aAj" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14889,7 +14772,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aAm" = ( +"aAk" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/flashbangs{ pixel_x = 2; @@ -14899,7 +14782,7 @@ /obj/item/weapon/storage/box/firingpins, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aAn" = ( +"aAl" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -14911,7 +14794,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/security/brig) -"aAo" = ( +"aAm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -14921,7 +14804,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aAp" = ( +"aAn" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -14937,7 +14820,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aAq" = ( +"aAo" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/evidence, /obj/item/weapon/hand_labeler{ @@ -14950,7 +14833,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aAr" = ( +"aAp" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -14958,7 +14841,7 @@ /obj/machinery/computer/secure_data, /turf/simulated/floor/tiled, /area/security/brig) -"aAs" = ( +"aAq" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/blue{ dir = 10 @@ -14969,7 +14852,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"aAt" = ( +"aAr" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -14981,7 +14864,7 @@ /obj/item/device/flashlight/lamp, /turf/simulated/floor/tiled/dark, /area/security/brig) -"aAu" = ( +"aAs" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14999,10 +14882,10 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aAv" = ( +"aAt" = ( /turf/simulated/wall, /area/security/warden) -"aAw" = ( +"aAu" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Warden's Office"; @@ -15020,7 +14903,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aAx" = ( +"aAv" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -15039,7 +14922,7 @@ }, /turf/simulated/floor/plating, /area/security/warden) -"aAy" = ( +"aAw" = ( /obj/machinery/door/firedoor, /obj/structure/table/reinforced/steel, /obj/item/weapon/paper_bin{ @@ -15056,11 +14939,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/security/warden) -"aAz" = ( +"aAx" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, /area/security/warden) -"aAA" = ( +"aAy" = ( /obj/machinery/door/airlock/glass_security{ id_tag = "prisonentry"; name = "Brig Entry"; @@ -15076,7 +14959,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/prison) -"aAB" = ( +"aAz" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -15095,7 +14978,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/prison) -"aAC" = ( +"aAA" = ( /obj/machinery/door/blast/regular{ dir = 1; id = "Cell 1"; @@ -15105,7 +14988,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/prison) -"aAD" = ( +"aAB" = ( /obj/machinery/door/blast/regular{ dir = 1; id = "Cell 2"; @@ -15115,7 +14998,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/prison) -"aAE" = ( +"aAC" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 1; @@ -15133,7 +15016,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aAF" = ( +"aAD" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -15145,11 +15028,11 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aAG" = ( +"aAE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/lawoffice) -"aAH" = ( +"aAF" = ( /obj/structure/table/wood, /obj/machinery/photocopier/faxmachine{ anchored = 0; @@ -15157,7 +15040,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aAI" = ( +"aAG" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -15173,7 +15056,7 @@ }, /turf/simulated/floor/plating, /area/lawoffice) -"aAJ" = ( +"aAH" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -15182,7 +15065,7 @@ /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aAK" = ( +"aAI" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -15196,23 +15079,23 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aAL" = ( +"aAJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aAM" = ( +"aAK" = ( /turf/simulated/wall/r_wall, /area/teleporter) -"aAN" = ( +"aAL" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(17) }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/teleporter) -"aAO" = ( +"aAM" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -15225,7 +15108,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/bridge) -"aAP" = ( +"aAN" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -15238,7 +15121,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/bridge) -"aAQ" = ( +"aAO" = ( /obj/machinery/door/airlock/glass_command{ id_tag = ""; name = "Bridge"; @@ -15255,10 +15138,10 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aAR" = ( +"aAP" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/captain) -"aAS" = ( +"aAQ" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -15283,55 +15166,55 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) +"aAR" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/captain) +"aAS" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/captain) "aAT" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aAU" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aAV" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 6 }, @@ -15341,7 +15224,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aAW" = ( +"aAU" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, @@ -15351,7 +15234,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aAX" = ( +"aAV" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ icon_state = "map"; dir = 1 @@ -15362,7 +15245,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aAY" = ( +"aAW" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 9 }, @@ -15372,7 +15255,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aAZ" = ( +"aAX" = ( /obj/structure/cable/orange, /obj/machinery/power/apc/super/critical{ dir = 4; @@ -15381,7 +15264,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aBa" = ( +"aAY" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -15400,7 +15283,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aBb" = ( +"aAZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -15412,7 +15295,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aBc" = ( +"aBa" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -15431,7 +15314,7 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) -"aBd" = ( +"aBb" = ( /obj/item/stack/material/steel{ amount = 50 }, @@ -15445,23 +15328,23 @@ /obj/structure/table/rack, /turf/simulated/floor/tiled, /area/engineering/storage) -"aBe" = ( +"aBc" = ( /turf/simulated/floor/tiled, /area/engineering/storage) -"aBf" = ( +"aBd" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/engineering_welding, /obj/item/clothing/glasses/welding, /obj/item/clothing/glasses/welding, /turf/simulated/floor/tiled, /area/engineering/storage) -"aBg" = ( +"aBe" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/engineering_electrical, /obj/item/device/debugger, /turf/simulated/floor/tiled, /area/engineering/storage) -"aBh" = ( +"aBf" = ( /obj/structure/table/standard, /obj/machinery/cell_charger{ pixel_y = 4 @@ -15472,12 +15355,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aBi" = ( +"aBg" = ( /obj/machinery/vending/engivend, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/engineering/storage) -"aBj" = ( +"aBh" = ( /obj/machinery/vending/tool, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/light{ @@ -15487,7 +15370,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aBk" = ( +"aBi" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light{ dir = 1 @@ -15501,7 +15384,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBl" = ( +"aBj" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -15515,7 +15398,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBm" = ( +"aBk" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -15524,7 +15407,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBn" = ( +"aBl" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -15535,7 +15418,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBo" = ( +"aBm" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -15547,7 +15430,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBp" = ( +"aBn" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -15555,16 +15438,16 @@ /obj/item/modular_computer/console/preset/engineering, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBq" = ( +"aBo" = ( /obj/machinery/papershredder, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBr" = ( +"aBp" = ( /obj/machinery/vending/snack, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBs" = ( +"aBq" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -15581,7 +15464,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBt" = ( +"aBr" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -15589,7 +15472,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBu" = ( +"aBs" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -15600,7 +15483,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBv" = ( +"aBt" = ( /obj/machinery/door/airlock/engineering{ name = "Engineering Substation"; req_one_access = list(11,24) @@ -15613,7 +15496,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/maintenance/substation/engineering) -"aBw" = ( +"aBu" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -15626,7 +15509,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aBx" = ( +"aBv" = ( /obj/structure/cable/green, /obj/structure/cable/green{ d1 = 1; @@ -15640,7 +15523,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aBy" = ( +"aBw" = ( /obj/machinery/power/terminal{ icon_state = "term"; dir = 1 @@ -15651,7 +15534,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aBz" = ( +"aBx" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -15665,7 +15548,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aBA" = ( +"aBy" = ( /obj/machinery/door/airlock/engineering{ name = "Engineering Substation"; req_one_access = list(11,24) @@ -15678,7 +15561,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aBB" = ( +"aBz" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -15693,7 +15576,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aBC" = ( +"aBA" = ( /obj/machinery/door/firedoor, /obj/structure/table/reinforced/steel, /obj/machinery/door/window/brigdoor/southright{ @@ -15708,7 +15591,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aBD" = ( +"aBB" = ( /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ dir = 4 @@ -15723,7 +15606,7 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/security/armoury) -"aBE" = ( +"aBC" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 1; @@ -15738,27 +15621,27 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) +"aBD" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "armoury"; + name = "Emergency Access" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"aBE" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "armoury"; + name = "Emergency Access" + }, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) "aBF" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "armoury"; - name = "Emergency Access" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aBG" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "armoury"; - name = "Emergency Access" - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aBH" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -15778,7 +15661,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aBI" = ( +"aBG" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Holding Cell"; @@ -15803,7 +15686,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aBJ" = ( +"aBH" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -15823,7 +15706,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aBK" = ( +"aBI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue{ @@ -15833,7 +15716,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/brig) -"aBL" = ( +"aBJ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -15847,7 +15730,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/brig) -"aBM" = ( +"aBK" = ( /obj/structure/cable/green, /obj/structure/cable/green{ d2 = 2; @@ -15860,7 +15743,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aBN" = ( +"aBL" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -15872,7 +15755,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aBO" = ( +"aBM" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -15900,7 +15783,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aBP" = ( +"aBN" = ( /obj/item/modular_computer/console/preset/security, /obj/machinery/computer/security/telescreen{ name = "Armoury Cameras"; @@ -15910,7 +15793,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aBQ" = ( +"aBO" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -15929,7 +15812,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/warden) -"aBR" = ( +"aBP" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -15943,7 +15826,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aBS" = ( +"aBQ" = ( /obj/item/device/radio/intercom{ desc = "Talk... listen through this."; name = "Station Intercom (Brig Radio)"; @@ -15964,7 +15847,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aBT" = ( +"aBR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -15978,7 +15861,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aBU" = ( +"aBS" = ( /obj/machinery/computer/arcade, /obj/structure/cable/green{ d1 = 1; @@ -15988,7 +15871,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aBV" = ( +"aBT" = ( /obj/machinery/computer/arcade, /obj/machinery/light{ dir = 1 @@ -15996,7 +15879,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aBW" = ( +"aBU" = ( /obj/structure/table/standard, /obj/machinery/librarycomp, /obj/structure/cable/green{ @@ -16007,7 +15890,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aBX" = ( +"aBV" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -16015,7 +15898,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aBY" = ( +"aBW" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -16028,7 +15911,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aBZ" = ( +"aBX" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -16047,20 +15930,20 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/prison) -"aCa" = ( +"aBY" = ( /obj/structure/toilet{ pixel_y = 5 }, /turf/simulated/floor/tiled, /area/security/prison) -"aCb" = ( +"aBZ" = ( /obj/structure/sink{ pixel_y = 22 }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/security/prison) -"aCc" = ( +"aCa" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -16087,7 +15970,7 @@ }, /turf/simulated/floor/plating, /area/security/prison) -"aCd" = ( +"aCb" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -16106,45 +15989,45 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aCe" = ( +"aCc" = ( /obj/structure/sign/nosmoking_2{ pixel_x = -32 }, /obj/structure/window/reinforced, /turf/simulated/floor/carpet, /area/lawoffice) -"aCf" = ( +"aCd" = ( /obj/structure/window/reinforced, /turf/simulated/floor/carpet, /area/lawoffice) -"aCg" = ( +"aCe" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/structure/window/reinforced, /turf/simulated/floor/carpet, /area/lawoffice) -"aCh" = ( +"aCf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/lawoffice) -"aCi" = ( +"aCg" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/lawoffice) -"aCj" = ( +"aCh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood, /area/lawoffice) -"aCk" = ( +"aCi" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ desc = "It opens and closes. Bring your relationship affairs here."; @@ -16156,13 +16039,13 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aCl" = ( +"aCj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aCm" = ( +"aCk" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -16177,7 +16060,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aCn" = ( +"aCl" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -16185,10 +16068,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aCo" = ( +"aCm" = ( /turf/simulated/floor/tiled, /area/teleporter) -"aCp" = ( +"aCn" = ( /obj/structure/table/standard, /obj/structure/sign/nosmoking_1{ pixel_y = 32 @@ -16199,24 +16082,24 @@ }, /turf/simulated/floor/tiled, /area/teleporter) -"aCq" = ( +"aCo" = ( /obj/machinery/suit_storage_unit/standard_unit, /turf/simulated/floor/tiled, /area/teleporter) -"aCr" = ( +"aCp" = ( /obj/item/device/radio/beacon, /obj/machinery/camera/network/command{ c_tag = "Bridge - Teleporter" }, /turf/simulated/floor/tiled, /area/teleporter) -"aCs" = ( +"aCq" = ( /obj/machinery/alarm{ pixel_y = 23 }, /turf/simulated/floor/tiled, /area/teleporter) -"aCt" = ( +"aCr" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -16229,19 +16112,19 @@ }, /turf/simulated/floor/tiled, /area/teleporter) -"aCu" = ( +"aCs" = ( /obj/effect/decal/cleanable/cobweb2, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/teleporter) -"aCv" = ( +"aCt" = ( /obj/structure/flora/ausbushes/fernybush, /turf/simulated/floor/grass, /area/bridge) -"aCw" = ( +"aCu" = ( /turf/simulated/floor/grass, /area/bridge) -"aCx" = ( +"aCv" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -16259,7 +16142,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aCy" = ( +"aCw" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 4 @@ -16272,7 +16155,7 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/bridge) -"aCz" = ( +"aCx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -16289,17 +16172,17 @@ }, /turf/simulated/floor/tiled/white, /area/bridge) -"aCA" = ( +"aCy" = ( /obj/effect/floor_decal/corner/paleblue/full, /turf/simulated/floor/tiled, /area/bridge) -"aCB" = ( +"aCz" = ( /obj/structure/toilet{ dir = 4 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aCC" = ( +"aCA" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -16316,10 +16199,10 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aCD" = ( +"aCB" = ( /turf/simulated/wall, /area/crew_quarters/captain) -"aCE" = ( +"aCC" = ( /obj/structure/table/wood, /obj/item/weapon/storage/photo_album{ pixel_y = 0 @@ -16330,7 +16213,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCF" = ( +"aCD" = ( /obj/structure/table/rack, /obj/item/weapon/tank/jetpack/oxygen, /obj/item/clothing/suit/space/void/captain, @@ -16344,14 +16227,14 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCG" = ( +"aCE" = ( /obj/structure/closet/secure_closet/captains, /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCH" = ( +"aCF" = ( /obj/machinery/atm{ pixel_y = 32 }, @@ -16359,7 +16242,7 @@ /mob/living/simple_animal/corgi/fox/Chauncey, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCI" = ( +"aCG" = ( /obj/structure/ladder/up, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'ACCESS RESTRICTED - ONLY AUTHORIZED PERSONNEL'."; @@ -16368,7 +16251,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCJ" = ( +"aCH" = ( /obj/structure/table/wood, /obj/machinery/computer/skills{ icon_state = "medlaptop" @@ -16380,7 +16263,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCK" = ( +"aCI" = ( /obj/structure/table/wood, /obj/item/weapon/paper/monitorkey, /obj/structure/cable/green{ @@ -16400,7 +16283,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCL" = ( +"aCJ" = ( /obj/structure/table/wood, /obj/structure/cable/green{ d1 = 1; @@ -16415,7 +16298,7 @@ /obj/item/weapon/card/id/captains_spare, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCM" = ( +"aCK" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -16443,7 +16326,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aCN" = ( +"aCL" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/machinery/light{ dir = 8; @@ -16456,7 +16339,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aCO" = ( +"aCM" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4; icon_state = "intact" @@ -16464,18 +16347,18 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aCP" = ( +"aCN" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4; icon_state = "intact" }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aCQ" = ( +"aCO" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aCR" = ( +"aCP" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 }, @@ -16486,17 +16369,17 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aCS" = ( +"aCQ" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aCT" = ( +"aCR" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_airlock) -"aCU" = ( +"aCS" = ( /obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ id_tag = "engine_room_airlock"; name = "Engine Room Airlock"; @@ -16516,7 +16399,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aCV" = ( +"aCT" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, @@ -16530,7 +16413,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aCW" = ( +"aCU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 }, @@ -16547,7 +16430,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aCX" = ( +"aCV" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -16557,7 +16440,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aCY" = ( +"aCW" = ( /obj/structure/closet/radiation, /obj/item/clothing/glasses/meson, /obj/item/clothing/glasses/meson, @@ -16566,7 +16449,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aCZ" = ( +"aCX" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -16584,7 +16467,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aDa" = ( +"aCY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -16594,7 +16477,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aDb" = ( +"aCZ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -16610,7 +16493,7 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) -"aDc" = ( +"aDa" = ( /obj/item/stack/material/plasteel{ amount = 10 }, @@ -16632,11 +16515,11 @@ /obj/structure/table/rack, /turf/simulated/floor/tiled, /area/engineering/storage) -"aDd" = ( +"aDb" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/engineering/storage) -"aDe" = ( +"aDc" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -16648,7 +16531,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aDf" = ( +"aDd" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -16656,7 +16539,7 @@ /obj/structure/closet/wardrobe/engineering_yellow, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDg" = ( +"aDe" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -16668,7 +16551,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDh" = ( +"aDf" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -16683,7 +16566,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDi" = ( +"aDg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -16692,7 +16575,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDj" = ( +"aDh" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -16706,11 +16589,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDk" = ( +"aDi" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDl" = ( +"aDj" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -16718,10 +16601,10 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDm" = ( +"aDk" = ( /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDn" = ( +"aDl" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -16737,10 +16620,10 @@ /obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDo" = ( +"aDm" = ( /turf/simulated/wall/r_wall, /area/ai_monitored/storage/eva) -"aDp" = ( +"aDn" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -16748,7 +16631,7 @@ }, /turf/simulated/wall/r_wall, /area/ai_monitored/storage/eva) -"aDq" = ( +"aDo" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "E.V.A. Maintenance"; @@ -16758,11 +16641,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aDr" = ( +"aDp" = ( /obj/structure/sign/securearea, /turf/simulated/wall/r_wall, /area/ai_monitored/storage/eva) -"aDs" = ( +"aDq" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -16778,13 +16661,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDt" = ( +"aDr" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled, /area/security/brig) -"aDu" = ( +"aDs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -16797,7 +16680,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDv" = ( +"aDt" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -16807,14 +16690,14 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDw" = ( +"aDu" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled, /area/security/brig) -"aDx" = ( +"aDv" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -16831,7 +16714,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDy" = ( +"aDw" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -16844,7 +16727,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDz" = ( +"aDx" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -16862,7 +16745,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDA" = ( +"aDy" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16885,7 +16768,29 @@ }, /turf/simulated/floor/tiled, /area/security/brig) +"aDz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"aDA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled, +/area/security/brig) "aDB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16896,28 +16801,6 @@ /turf/simulated/floor/tiled, /area/security/brig) "aDC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 5 - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/security/brig) -"aDD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"aDE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16930,7 +16813,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDF" = ( +"aDD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16944,7 +16827,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDG" = ( +"aDE" = ( /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2" @@ -16955,7 +16838,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDH" = ( +"aDF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -16971,7 +16854,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDI" = ( +"aDG" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -16987,7 +16870,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDJ" = ( +"aDH" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -17038,7 +16921,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aDK" = ( +"aDI" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -17052,15 +16935,15 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aDL" = ( +"aDJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aDM" = ( +"aDK" = ( /obj/machinery/computer/secure_data, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aDN" = ( +"aDL" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -17079,7 +16962,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/warden) -"aDO" = ( +"aDM" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -17098,7 +16981,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aDP" = ( +"aDN" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -17106,7 +16989,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aDQ" = ( +"aDO" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17121,7 +17004,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/prison) -"aDR" = ( +"aDP" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17129,7 +17012,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aDS" = ( +"aDQ" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -17142,7 +17025,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aDT" = ( +"aDR" = ( /obj/machinery/door/blast/regular{ dir = 4; id = "Cell 3"; @@ -17152,7 +17035,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/prison) -"aDU" = ( +"aDS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 6 @@ -17162,7 +17045,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aDV" = ( +"aDT" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ density = 0; @@ -17186,7 +17069,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aDW" = ( +"aDU" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -17200,7 +17083,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDX" = ( +"aDV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -17212,7 +17095,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDY" = ( +"aDW" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -17224,21 +17107,21 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aDZ" = ( +"aDX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/banner, /turf/simulated/floor/wood, /area/lawoffice) -"aEa" = ( +"aDY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/papershredder, /turf/simulated/floor/wood, /area/lawoffice) -"aEb" = ( +"aDZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ dir = 4 @@ -17246,14 +17129,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/lawoffice) -"aEc" = ( +"aEa" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/lawoffice) -"aEd" = ( +"aEb" = ( /obj/structure/table/wood, /obj/item/weapon/folder{ pixel_x = 5; @@ -17282,49 +17165,49 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aEe" = ( +"aEc" = ( /obj/machinery/atm{ pixel_x = -32 }, -/obj/machinery/camera/network/civilian_main{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Starboard Corridor - Internal Affairs Entrance"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aEf" = ( +"aEd" = ( /obj/machinery/computer/guestpass{ pixel_x = 32; pixel_y = 0 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aEg" = ( +"aEe" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 10 }, /turf/simulated/floor/tiled, /area/teleporter) -"aEh" = ( +"aEf" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/teleporter) -"aEi" = ( +"aEg" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/industrial/warning{ dir = 6 }, /turf/simulated/floor/tiled, /area/teleporter) -"aEj" = ( +"aEh" = ( /obj/machinery/shieldwallgen, /obj/structure/window/reinforced{ dir = 8 }, /turf/simulated/floor/tiled, /area/teleporter) -"aEk" = ( +"aEi" = ( /obj/machinery/shieldwallgen, /obj/structure/cable/green{ d1 = 1; @@ -17333,7 +17216,7 @@ }, /turf/simulated/floor/tiled, /area/teleporter) -"aEl" = ( +"aEj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 2; @@ -17342,7 +17225,7 @@ }, /turf/simulated/floor/tiled, /area/teleporter) -"aEm" = ( +"aEk" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/machinery/light{ dir = 8; @@ -17351,11 +17234,11 @@ }, /turf/simulated/floor/grass, /area/bridge) -"aEn" = ( +"aEl" = ( /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/grass, /area/bridge) -"aEo" = ( +"aEm" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -17370,7 +17253,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aEp" = ( +"aEn" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ d1 = 4; @@ -17379,11 +17262,11 @@ }, /turf/simulated/floor/tiled/white, /area/bridge) -"aEq" = ( +"aEo" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aEr" = ( +"aEp" = ( /obj/structure/window/reinforced/tinted{ dir = 4; icon_state = "twindow" @@ -17399,7 +17282,7 @@ /obj/item/weapon/bikehorn/rubberducky, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aEs" = ( +"aEq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -17408,7 +17291,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aEt" = ( +"aEr" = ( /obj/machinery/door/airlock{ name = "Private Restroom" }, @@ -17420,7 +17303,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aEu" = ( +"aEs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -17429,7 +17312,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aEv" = ( +"aEt" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; @@ -17437,7 +17320,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aEw" = ( +"aEu" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/captain, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -17448,7 +17331,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aEx" = ( +"aEv" = ( /obj/machinery/papershredder, /obj/item/weapon/storage/secure/safe{ pixel_x = -28; @@ -17456,7 +17339,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aEy" = ( +"aEw" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -17475,7 +17358,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aEz" = ( +"aEx" = ( /obj/structure/table/wood, /obj/machinery/recharger, /obj/structure/cable/green{ @@ -17499,7 +17382,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aEA" = ( +"aEy" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -17523,7 +17406,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aEB" = ( +"aEz" = ( /obj/machinery/light{ dir = 8 }, @@ -17532,13 +17415,13 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/crew_quarters/captain) -"aEC" = ( +"aEA" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aED" = ( +"aEB" = ( /obj/machinery/atmospherics/binary/circulator{ anchored = 1; dir = 4; @@ -17547,14 +17430,14 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aEE" = ( +"aEC" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ icon_state = "intact"; dir = 5 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aEF" = ( +"aED" = ( /obj/machinery/atmospherics/valve/digital{ dir = 1; icon_state = "map_valve0"; @@ -17562,7 +17445,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aEG" = ( +"aEE" = ( /obj/machinery/door/airlock/maintenance_hatch{ frequency = 1379; icon_state = "door_closed"; @@ -17573,14 +17456,14 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aEH" = ( +"aEF" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aEI" = ( +"aEG" = ( /obj/machinery/atmospherics/binary/dp_vent_pump/high_volume{ dir = 2; frequency = 1379; @@ -17592,7 +17475,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aEJ" = ( +"aEH" = ( /obj/machinery/door/airlock/maintenance_hatch{ frequency = 1379; icon_state = "door_closed"; @@ -17603,7 +17486,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aEK" = ( +"aEI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -17621,7 +17504,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aEL" = ( +"aEJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -17635,7 +17518,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aEM" = ( +"aEK" = ( /obj/machinery/door/airlock/maintenance_hatch{ icon_state = "door_closed"; locked = 0; @@ -17659,7 +17542,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aEN" = ( +"aEL" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -17683,7 +17566,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aEO" = ( +"aEM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -17698,7 +17581,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aEP" = ( +"aEN" = ( /obj/item/stack/material/glass{ amount = 50 }, @@ -17715,15 +17598,15 @@ /obj/structure/table/rack, /turf/simulated/floor/tiled, /area/engineering/storage) -"aEQ" = ( +"aEO" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/engineering/storage) -"aER" = ( +"aEP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/storage) -"aES" = ( +"aEQ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -17735,7 +17618,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aET" = ( +"aER" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_engineering{ name = "Engineering EVA Storage"; @@ -17748,7 +17631,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aEU" = ( +"aES" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17764,7 +17647,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aEV" = ( +"aET" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -17787,7 +17670,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aEW" = ( +"aEU" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17805,7 +17688,7 @@ /obj/effect/floor_decal/corner/yellow, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aEX" = ( +"aEV" = ( /obj/item/weapon/stool/padded, /obj/structure/cable/green{ d1 = 4; @@ -17824,7 +17707,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aEY" = ( +"aEW" = ( /obj/item/weapon/stool/padded, /obj/structure/cable/green{ d1 = 4; @@ -17843,7 +17726,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aEZ" = ( +"aEX" = ( /obj/item/weapon/stool/padded, /obj/structure/cable/green{ d1 = 4; @@ -17862,7 +17745,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aFa" = ( +"aEY" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17884,7 +17767,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aFb" = ( +"aEZ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17898,7 +17781,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aFc" = ( +"aFa" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -17906,7 +17789,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aFd" = ( +"aFb" = ( /obj/structure/table/standard, /obj/machinery/microwave{ pixel_x = -2; @@ -17921,7 +17804,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aFe" = ( +"aFc" = ( /obj/machinery/light/small{ dir = 8 }, @@ -17935,7 +17818,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFf" = ( +"aFd" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17943,7 +17826,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFg" = ( +"aFe" = ( /obj/machinery/door/airlock/glass_medical{ name = "Medical Voidsuits"; req_one_access = list(5) @@ -17955,7 +17838,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFh" = ( +"aFf" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -17972,7 +17855,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFi" = ( +"aFg" = ( /obj/machinery/light{ dir = 1 }, @@ -17983,7 +17866,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFj" = ( +"aFh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue/full{ @@ -17991,7 +17874,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFk" = ( +"aFi" = ( /obj/machinery/alarm{ pixel_y = 23 }, @@ -18001,14 +17884,14 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFl" = ( +"aFj" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFm" = ( +"aFk" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Security Voidsuits"; @@ -18016,10 +17899,10 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFn" = ( +"aFl" = ( /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFo" = ( +"aFm" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, /obj/item/clothing/head/helmet/space/void/security, @@ -18034,11 +17917,11 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFp" = ( +"aFn" = ( /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/tiled, /area/security/brig) -"aFq" = ( +"aFo" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -18047,7 +17930,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFr" = ( +"aFp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -18062,7 +17945,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFs" = ( +"aFq" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -18085,7 +17968,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFt" = ( +"aFr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18105,7 +17988,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFu" = ( +"aFs" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -18123,7 +18006,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFv" = ( +"aFt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18148,7 +18031,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFw" = ( +"aFu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -18162,7 +18045,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFx" = ( +"aFv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18194,7 +18077,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFy" = ( +"aFw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -18213,7 +18096,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFz" = ( +"aFx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18230,7 +18113,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFA" = ( +"aFy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18249,7 +18132,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFB" = ( +"aFz" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -18263,7 +18146,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFC" = ( +"aFA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18283,7 +18166,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"aFD" = ( +"aFB" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -18298,7 +18181,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFE" = ( +"aFC" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -18308,7 +18191,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFF" = ( +"aFD" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -18320,7 +18203,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aFG" = ( +"aFE" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -18332,7 +18215,7 @@ /obj/machinery/papershredder, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aFH" = ( +"aFF" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -18341,7 +18224,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aFI" = ( +"aFG" = ( /obj/structure/closet/secure_closet/warden, /obj/item/device/megaphone, /obj/item/weapon/crowbar, @@ -18355,7 +18238,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aFJ" = ( +"aFH" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -18377,7 +18260,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/warden) -"aFK" = ( +"aFI" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -18388,7 +18271,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aFL" = ( +"aFJ" = ( /obj/machinery/flasher{ id = "permflash"; name = "Floor mounted flash"; @@ -18399,18 +18282,18 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aFM" = ( +"aFK" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled, /area/security/prison) -"aFN" = ( +"aFL" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, /turf/simulated/floor/tiled, /area/security/prison) -"aFO" = ( +"aFM" = ( /obj/structure/table/standard, /obj/item/weapon/newspaper, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -18418,14 +18301,14 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aFP" = ( +"aFN" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/prison) -"aFQ" = ( +"aFO" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -18446,7 +18329,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aFR" = ( +"aFP" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 3"; name = "Cell 3 Locker" @@ -18457,7 +18340,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aFS" = ( +"aFQ" = ( /obj/structure/bed, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -18468,7 +18351,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aFT" = ( +"aFR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -18496,7 +18379,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFU" = ( +"aFS" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -18508,7 +18391,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/brig) -"aFV" = ( +"aFT" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ desc = "It opens and closes. Bring your relationship affairs here."; @@ -18528,7 +18411,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aFW" = ( +"aFU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18542,7 +18425,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aFX" = ( +"aFV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18557,7 +18440,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/wood, /area/lawoffice) -"aFY" = ( +"aFW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -18575,7 +18458,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aFZ" = ( +"aFX" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -18587,7 +18470,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aGa" = ( +"aFY" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -18601,7 +18484,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aGb" = ( +"aFZ" = ( /obj/structure/table/reinforced, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -18620,7 +18503,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aGc" = ( +"aGa" = ( /obj/item/device/radio/intercom{ dir = 8; name = "Station Intercom (General)"; @@ -18628,29 +18511,29 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aGd" = ( +"aGb" = ( /turf/simulated/wall/r_wall, /area/hallway/primary/starboard) -"aGe" = ( +"aGc" = ( /obj/machinery/computer/teleporter, /turf/simulated/floor/plating, /area/teleporter) -"aGf" = ( +"aGd" = ( /obj/machinery/teleport/station, /turf/simulated/floor/plating, /area/teleporter) -"aGg" = ( +"aGe" = ( /obj/machinery/teleport/hub, /obj/effect/decal/warning_stripes, /turf/simulated/floor/plating, /area/teleporter) -"aGh" = ( +"aGf" = ( /obj/structure/table/rack, /obj/item/weapon/tank/oxygen, /obj/item/clothing/mask/gas, /turf/simulated/floor/plating, /area/teleporter) -"aGi" = ( +"aGg" = ( /obj/machinery/shieldwallgen, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -18658,7 +18541,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/teleporter) -"aGj" = ( +"aGh" = ( /obj/machinery/light_switch{ pixel_x = 24 }, @@ -18673,16 +18556,16 @@ }, /turf/simulated/floor/tiled, /area/teleporter) -"aGk" = ( +"aGi" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, /area/bridge) -"aGl" = ( +"aGj" = ( /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/grass, /area/bridge) -"aGm" = ( +"aGk" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -18698,7 +18581,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aGn" = ( +"aGl" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -18710,7 +18593,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aGo" = ( +"aGm" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Command Deck Entrance"; dir = 1 @@ -18721,11 +18604,11 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aGp" = ( +"aGn" = ( /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aGq" = ( +"aGo" = ( /obj/item/device/radio/intercom{ frequency = 1449; pixel_x = 0; @@ -18736,7 +18619,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aGr" = ( +"aGp" = ( /obj/structure/table/wood, /obj/item/weapon/storage/fancy/cigar, /obj/item/weapon/flame/lighter/zippo, @@ -18747,7 +18630,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGs" = ( +"aGq" = ( /obj/structure/table/wood, /obj/item/weapon/pinpointer, /obj/item/weapon/disk/nuclear, @@ -18757,11 +18640,11 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGt" = ( +"aGr" = ( /obj/structure/displaycase, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGu" = ( +"aGs" = ( /obj/machinery/light_switch{ pixel_y = -24 }, @@ -18770,7 +18653,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGv" = ( +"aGt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 @@ -18780,7 +18663,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGw" = ( +"aGu" = ( /obj/machinery/door/airlock/command{ name = "Captain's Quarters"; req_access = list(20) @@ -18793,7 +18676,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGx" = ( +"aGv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -18802,7 +18685,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGy" = ( +"aGw" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -18810,7 +18693,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGz" = ( +"aGx" = ( /obj/structure/table/wood, /obj/machinery/photocopier/faxmachine{ department = "Captain's Office" @@ -18822,7 +18705,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGA" = ( +"aGy" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, @@ -18847,7 +18730,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aGB" = ( +"aGz" = ( /obj/machinery/atmospherics/valve/digital{ name = "Emergency Cooling Valve 2"; icon_state = "map_valve0"; @@ -18855,7 +18738,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aGC" = ( +"aGA" = ( /obj/machinery/power/generator{ anchored = 1 }, @@ -18866,7 +18749,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aGD" = ( +"aGB" = ( /obj/machinery/power/generator{ anchored = 1 }, @@ -18881,7 +18764,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aGE" = ( +"aGC" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -18890,7 +18773,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aGF" = ( +"aGD" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 8; @@ -18898,7 +18781,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aGG" = ( +"aGE" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -18906,7 +18789,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aGH" = ( +"aGF" = ( /obj/machinery/airlock_sensor{ frequency = 1379; id_tag = "eng_al_c_snsr"; @@ -18927,7 +18810,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aGI" = ( +"aGG" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; icon_state = "intact" @@ -18939,7 +18822,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aGJ" = ( +"aGH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/power/apc{ dir = 2; @@ -18953,7 +18836,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aGK" = ( +"aGI" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -18963,12 +18846,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aGL" = ( +"aGJ" = ( /obj/machinery/light, /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aGM" = ( +"aGK" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -18985,7 +18868,7 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) -"aGN" = ( +"aGL" = ( /obj/structure/table/standard, /obj/item/device/radio/off, /obj/item/device/radio/off, @@ -18995,16 +18878,34 @@ /obj/item/device/flashlight/heavy, /turf/simulated/floor/tiled, /area/engineering/storage) -"aGO" = ( +"aGM" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/storage) +"aGN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/storage) +"aGO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/engineering/storage) "aGP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/engineering/storage) "aGQ" = ( @@ -19012,11 +18913,20 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 }, /turf/simulated/floor/tiled, /area/engineering/storage) "aGR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering EVA Storage"; + req_one_access = list(11,24) + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19026,33 +18936,6 @@ /turf/simulated/floor/tiled, /area/engineering/storage) "aGS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage) -"aGT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering EVA Storage"; - req_one_access = list(11,24) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage) -"aGU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19065,7 +18948,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aGV" = ( +"aGT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -19080,7 +18963,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aGW" = ( +"aGU" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -19093,21 +18976,21 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aGX" = ( +"aGV" = ( /obj/structure/table/wood/gamblingtable, /obj/machinery/recharger, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aGY" = ( +"aGW" = ( /obj/structure/table/wood/gamblingtable, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aGZ" = ( +"aGX" = ( /obj/structure/table/wood/gamblingtable, /obj/item/weapon/book/manual/supermatter_engine, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aHa" = ( +"aGY" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -19120,11 +19003,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aHb" = ( +"aGZ" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aHc" = ( +"aHa" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/drinkingglasses{ pixel_x = 1; @@ -19140,7 +19023,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aHd" = ( +"aHb" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -19153,7 +19036,7 @@ /obj/machinery/chemical_dispenser/bar_soft/full, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aHe" = ( +"aHc" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -19165,7 +19048,7 @@ /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHf" = ( +"aHd" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -19176,7 +19059,7 @@ /obj/item/clothing/suit/space/void/medical, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHg" = ( +"aHe" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -19193,26 +19076,26 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aHh" = ( +"aHf" = ( /obj/structure/table/reinforced, /obj/item/clothing/head/welding, /obj/item/weapon/storage/belt/utility, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHi" = ( +"aHg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHj" = ( +"aHh" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHk" = ( +"aHi" = ( /obj/structure/table/reinforced, /obj/item/stack/material/glass{ amount = 50 @@ -19226,7 +19109,7 @@ /obj/item/weapon/ladder_mobile, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHl" = ( +"aHj" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -19242,7 +19125,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aHm" = ( +"aHk" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, /obj/item/clothing/head/helmet/space/void/security, @@ -19254,10 +19137,10 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHn" = ( +"aHl" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/heads/hos) -"aHo" = ( +"aHm" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -19277,7 +19160,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hos) -"aHp" = ( +"aHn" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -19297,7 +19180,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hos) -"aHq" = ( +"aHo" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -19321,7 +19204,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hos) -"aHr" = ( +"aHp" = ( /obj/machinery/door/airlock/command{ desc = "It opens and closes. It does not look very robust."; id_tag = "HoSdoor"; @@ -19349,7 +19232,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/crew_quarters/heads/hos) -"aHs" = ( +"aHq" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -19373,7 +19256,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hos) -"aHt" = ( +"aHr" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -19393,7 +19276,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hos) -"aHu" = ( +"aHs" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -19413,10 +19296,10 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hos) -"aHv" = ( +"aHt" = ( /turf/simulated/wall/r_wall, /area/security/lobby) -"aHw" = ( +"aHu" = ( /obj/machinery/door/firedoor{ layer = 2.4 }, @@ -19437,7 +19320,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aHx" = ( +"aHv" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -19461,7 +19344,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/security/lobby) -"aHy" = ( +"aHw" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 1; @@ -19486,7 +19369,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aHz" = ( +"aHx" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -19505,7 +19388,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aHA" = ( +"aHy" = ( /obj/machinery/door/firedoor, /obj/machinery/door/window/brigdoor/northleft{ name = "Security Office" @@ -19514,7 +19397,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/brig) -"aHB" = ( +"aHz" = ( /obj/machinery/door/firedoor, /obj/machinery/door/window/brigdoor/northright{ name = "Security Office" @@ -19532,7 +19415,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"aHC" = ( +"aHA" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -19552,7 +19435,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aHD" = ( +"aHB" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -19569,7 +19452,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aHE" = ( +"aHC" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -19585,11 +19468,11 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aHF" = ( +"aHD" = ( /obj/structure/sign/nosmoking_2, /turf/simulated/wall, /area/security/brig) -"aHG" = ( +"aHE" = ( /obj/machinery/recharger/wallcharger{ pixel_x = -32; pixel_y = -6 @@ -19604,13 +19487,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aHH" = ( +"aHF" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aHI" = ( +"aHG" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; @@ -19618,7 +19501,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aHJ" = ( +"aHH" = ( /obj/machinery/button/flasher{ id = "permflash"; name = "Brig flashes"; @@ -19631,7 +19514,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aHK" = ( +"aHI" = ( /obj/machinery/door/airlock/glass_security{ name = "Warden's Office"; req_access = list(3) @@ -19648,13 +19531,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/warden) -"aHL" = ( +"aHJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/prison) -"aHM" = ( +"aHK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -19662,7 +19545,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aHN" = ( +"aHL" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1; @@ -19670,7 +19553,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aHO" = ( +"aHM" = ( /obj/structure/table/standard, /obj/item/weapon/book/manual/security_space_law, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -19679,12 +19562,12 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aHP" = ( +"aHN" = ( /obj/structure/table/standard, /obj/item/toy/blink, /turf/simulated/floor/tiled, /area/security/prison) -"aHQ" = ( +"aHO" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -19692,7 +19575,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aHR" = ( +"aHP" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/structure/sign/nosmoking_2{ pixel_x = 32 @@ -19703,7 +19586,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aHS" = ( +"aHQ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -19729,7 +19612,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aHT" = ( +"aHR" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -19739,11 +19622,11 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aHU" = ( +"aHS" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aHV" = ( +"aHT" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; @@ -19756,7 +19639,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aHW" = ( +"aHU" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, /obj/structure/sign/drop{ @@ -19765,18 +19648,18 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) +"aHV" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"aHW" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) "aHX" = ( /obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aHY" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aHZ" = ( -/obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ name = "Teleport Access"; req_access = list(17) @@ -19798,7 +19681,7 @@ }, /turf/simulated/floor/tiled, /area/teleporter) -"aIa" = ( +"aHY" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -19815,7 +19698,7 @@ /obj/structure/sign/flag/nanotrasen/left, /turf/simulated/floor/plating, /area/bridge) -"aIb" = ( +"aHZ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -19832,7 +19715,7 @@ /obj/structure/sign/flag/nanotrasen/right, /turf/simulated/floor/plating, /area/bridge) -"aIc" = ( +"aIa" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -19851,7 +19734,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aId" = ( +"aIb" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -19879,7 +19762,7 @@ }, /turf/simulated/floor/tiled/white, /area/bridge) -"aIe" = ( +"aIc" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -19898,16 +19781,16 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aIf" = ( +"aId" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aIg" = ( +"aIe" = ( /obj/machinery/account_database, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aIh" = ( +"aIf" = ( /obj/machinery/atmospherics/binary/circulator{ anchored = 1; dir = 8; @@ -19916,36 +19799,36 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aIi" = ( +"aIg" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ icon_state = "intact"; dir = 10 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aIj" = ( +"aIh" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 6 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aIk" = ( +"aIi" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ dir = 1 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aIl" = ( +"aIj" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aIm" = ( +"aIk" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aIn" = ( +"aIl" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -19955,7 +19838,7 @@ }, /turf/simulated/wall/r_wall, /area/engineering/engine_airlock) -"aIo" = ( +"aIm" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(11) }, @@ -19972,11 +19855,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aIp" = ( +"aIn" = ( /obj/structure/sign/securearea, /turf/simulated/wall/r_wall, /area/engineering/engine_monitoring) -"aIq" = ( +"aIo" = ( /obj/structure/table/standard, /obj/item/device/suit_cooling_unit, /obj/item/device/suit_cooling_unit, @@ -20011,11 +19894,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIr" = ( +"aIp" = ( /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIs" = ( +"aIq" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/portable_atmospherics/canister/oxygen, /obj/structure/sign/nosmoking_2{ @@ -20024,12 +19907,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIt" = ( +"aIr" = ( /obj/structure/dispenser/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIu" = ( +"aIs" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/engineering, /obj/item/clothing/head/helmet/space/void/engineering, @@ -20046,7 +19929,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIv" = ( +"aIt" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/engineering, /obj/item/clothing/head/helmet/space/void/engineering, @@ -20060,7 +19943,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIw" = ( +"aIu" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/engineering, /obj/item/clothing/head/helmet/space/void/engineering, @@ -20077,12 +19960,12 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIx" = ( +"aIv" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/suit_cycler/engineering, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIy" = ( +"aIw" = ( /obj/machinery/newscaster{ pixel_x = -27 }, @@ -20091,7 +19974,7 @@ /obj/item/weapon/ladder_mobile, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aIz" = ( +"aIx" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20100,7 +19983,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aIA" = ( +"aIy" = ( /obj/item/weapon/stool/padded, /obj/structure/cable{ d1 = 1; @@ -20117,12 +20000,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aIB" = ( +"aIz" = ( /obj/structure/table/wood/gamblingtable, /obj/item/device/flashlight/lamp/green, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aIC" = ( +"aIA" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -20132,11 +20015,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aID" = ( +"aIB" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aIE" = ( +"aIC" = ( /obj/structure/bookcase/manuals/engineering, /obj/item/weapon/book/manual/atmospipes, /obj/item/weapon/book/manual/engineering_guide, @@ -20146,7 +20029,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aIF" = ( +"aID" = ( /obj/machinery/requests_console{ department = "EVA"; pixel_x = -32; @@ -20164,7 +20047,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aIG" = ( +"aIE" = ( /obj/structure/table/reinforced, /obj/machinery/camera/network/security{ c_tag = "EVA - Starboard Camera"; @@ -20178,7 +20061,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aIH" = ( +"aIF" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -20192,7 +20075,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aII" = ( +"aIG" = ( /obj/machinery/suit_cycler/security, /obj/effect/floor_decal/corner/blue/full{ icon_state = "corner_white_full"; @@ -20200,20 +20083,20 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aIJ" = ( +"aIH" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aIK" = ( +"aII" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aIL" = ( +"aIJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -20227,7 +20110,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aIM" = ( +"aIK" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -20236,7 +20119,7 @@ /obj/machinery/papershredder, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aIN" = ( +"aIL" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -20245,7 +20128,7 @@ /obj/structure/banner, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aIO" = ( +"aIM" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -20258,7 +20141,7 @@ /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aIP" = ( +"aIN" = ( /obj/structure/bookcase/manuals, /obj/item/weapon/book/manual/security_space_law, /obj/item/weapon/book/manual/security_space_law, @@ -20266,7 +20149,7 @@ /obj/item/weapon/book/manual/security_space_law, /turf/simulated/floor/tiled, /area/security/lobby) -"aIQ" = ( +"aIO" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -20279,7 +20162,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aIR" = ( +"aIP" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -20287,7 +20170,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aIS" = ( +"aIQ" = ( /obj/machinery/light{ dir = 1 }, @@ -20301,7 +20184,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aIT" = ( +"aIR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20315,7 +20198,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aIU" = ( +"aIS" = ( /obj/structure/banner, /obj/machinery/status_display{ pixel_x = 0; @@ -20323,7 +20206,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aIV" = ( +"aIT" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -20350,7 +20233,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aIW" = ( +"aIU" = ( /obj/machinery/computer/secure_data, /obj/structure/cable/green{ d1 = 1; @@ -20367,7 +20250,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aIX" = ( +"aIV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -20376,7 +20259,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aIY" = ( +"aIW" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20391,7 +20274,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"aIZ" = ( +"aIX" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -20409,7 +20292,7 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled, /area/security/brig) -"aJa" = ( +"aIY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -20418,7 +20301,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aJb" = ( +"aIZ" = ( /obj/machinery/door/airlock/glass_security{ name = "Warden's Office"; req_access = list(3) @@ -20432,7 +20315,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/security/brig) -"aJc" = ( +"aJa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -20445,7 +20328,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aJd" = ( +"aJb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -20458,7 +20341,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aJe" = ( +"aJc" = ( /obj/structure/table/standard, /obj/item/weapon/book/manual/security_space_law, /obj/item/device/eftpos{ @@ -20467,7 +20350,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aJf" = ( +"aJd" = ( /obj/machinery/light, /obj/machinery/camera/network/security{ c_tag = "Security - Warden's Office"; @@ -20481,7 +20364,7 @@ /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aJg" = ( +"aJe" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, @@ -20499,7 +20382,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aJh" = ( +"aJf" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -20519,18 +20402,18 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/warden) -"aJi" = ( +"aJg" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge, /turf/simulated/floor/tiled, /area/security/prison) -"aJj" = ( +"aJh" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/prison) -"aJk" = ( +"aJi" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -20538,14 +20421,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/security/prison) -"aJl" = ( +"aJj" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/prison) -"aJm" = ( +"aJk" = ( /obj/structure/table/standard, /obj/item/weapon/dice, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -20553,14 +20436,14 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aJn" = ( +"aJl" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/prison) -"aJo" = ( +"aJm" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20576,7 +20459,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aJp" = ( +"aJn" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/cups, /obj/structure/cable/green{ @@ -20586,14 +20469,14 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aJq" = ( +"aJo" = ( /obj/structure/toilet{ pixel_x = 0; pixel_y = 5 }, /turf/simulated/floor/tiled, /area/security/prison) -"aJr" = ( +"aJp" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ id_tag = ""; @@ -20611,7 +20494,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aJs" = ( +"aJq" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -20622,26 +20505,26 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJt" = ( +"aJr" = ( /obj/machinery/newscaster{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJu" = ( +"aJs" = ( /obj/machinery/alarm{ pixel_y = 23 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJv" = ( +"aJt" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/atm{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJw" = ( +"aJu" = ( /obj/structure/sign/directions/evac{ dir = 8; icon_state = "direction_evac"; @@ -20660,7 +20543,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJx" = ( +"aJv" = ( /obj/machinery/light{ dir = 1 }, @@ -20669,7 +20552,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJy" = ( +"aJw" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; @@ -20677,13 +20560,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJz" = ( +"aJx" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJA" = ( +"aJy" = ( /obj/structure/sign/securearea{ pixel_y = 32 }, @@ -20697,7 +20580,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJB" = ( +"aJz" = ( /obj/machinery/door/airlock/glass_command{ id_tag = "sbridgedoor"; name = "Bridge"; @@ -20709,7 +20592,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJC" = ( +"aJA" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/disposalpipe/segment{ dir = 4 @@ -20724,7 +20607,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJD" = ( +"aJB" = ( /obj/effect/floor_decal/corner/paleblue/full, /obj/structure/disposalpipe/segment{ dir = 4 @@ -20735,7 +20618,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJE" = ( +"aJC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20753,7 +20636,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJF" = ( +"aJD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20766,7 +20649,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJG" = ( +"aJE" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -20780,7 +20663,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJH" = ( +"aJF" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -20791,7 +20674,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJI" = ( +"aJG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -20805,7 +20688,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJJ" = ( +"aJH" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -20816,7 +20699,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJK" = ( +"aJI" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -20828,7 +20711,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJL" = ( +"aJJ" = ( /obj/structure/noticeboard{ pixel_y = 32 }, @@ -20838,14 +20721,14 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJM" = ( +"aJK" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/tiled, /area/bridge) -"aJN" = ( +"aJL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -20857,14 +20740,14 @@ }, /turf/simulated/floor/tiled/white, /area/bridge) -"aJO" = ( +"aJM" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/bridge) -"aJP" = ( +"aJN" = ( /obj/structure/bed/chair/comfy/brown{ dir = 8 }, @@ -20874,7 +20757,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJQ" = ( +"aJO" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -20895,7 +20778,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aJR" = ( +"aJP" = ( /obj/structure/bed/chair/comfy/brown, /obj/structure/cable/green{ d1 = 2; @@ -20904,14 +20787,14 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aJS" = ( +"aJQ" = ( /obj/structure/bed/chair/comfy/brown, /obj/structure/sign/nosmoking_2{ pixel_y = 32 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aJT" = ( +"aJR" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -20924,7 +20807,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aJU" = ( +"aJS" = ( /obj/structure/table/wood, /obj/machinery/camera/network/command{ c_tag = "Bridge - Captain's Office West" @@ -20935,17 +20818,17 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aJV" = ( +"aJT" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aJW" = ( +"aJU" = ( /obj/structure/bed/chair/comfy/brown{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aJX" = ( +"aJV" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -20960,7 +20843,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aJY" = ( +"aJW" = ( /obj/structure/filingcabinet, /obj/machinery/requests_console{ announcementConsole = 1; @@ -20972,25 +20855,25 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aJZ" = ( +"aJX" = ( /obj/machinery/suit_cycler/captain, /obj/structure/sign/nosmoking_2{ pixel_x = 32 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aKa" = ( +"aJY" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aKb" = ( +"aJZ" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ icon_state = "intact"; dir = 5 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aKc" = ( +"aKa" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/machinery/atmospherics/pipe/simple/visible/green{ icon_state = "intact"; @@ -20998,14 +20881,14 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aKd" = ( +"aKb" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ icon_state = "intact"; dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aKe" = ( +"aKc" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ icon_state = "map"; dir = 4 @@ -21013,7 +20896,7 @@ /obj/machinery/meter, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aKf" = ( +"aKd" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -21021,7 +20904,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aKg" = ( +"aKe" = ( /obj/machinery/atmospherics/pipe/zpipe/up/supply, /obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, /obj/structure/cable{ @@ -21036,7 +20919,7 @@ roof_type = null }, /area/maintenance/research_port) -"aKh" = ( +"aKf" = ( /obj/structure/ladder/up{ pixel_y = 16 }, @@ -21048,7 +20931,7 @@ roof_type = null }, /area/maintenance/research_port) -"aKi" = ( +"aKg" = ( /obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, /obj/machinery/atmospherics/pipe/zpipe/down/supply, /obj/structure/cable{ @@ -21058,22 +20941,22 @@ /obj/structure/lattice/catwalk, /turf/simulated/open, /area/maintenance/research_port) -"aKj" = ( +"aKh" = ( /obj/structure/ladder{ icon_state = "ladder01"; pixel_y = 16 }, /turf/simulated/open, /area/maintenance/research_port) -"aKk" = ( +"aKi" = ( /turf/simulated/wall/r_wall, /area/maintenance/research_port) -"aKl" = ( +"aKj" = ( /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aKm" = ( +"aKk" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -21082,10 +20965,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aKn" = ( +"aKl" = ( /turf/simulated/floor/plating, /area/maintenance/research_port) -"aKo" = ( +"aKm" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -21098,7 +20981,7 @@ /obj/machinery/photocopier, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKp" = ( +"aKn" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -21109,7 +20992,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKq" = ( +"aKo" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -21122,7 +21005,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKr" = ( +"aKp" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -21133,7 +21016,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKs" = ( +"aKq" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -21144,7 +21027,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKt" = ( +"aKr" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -21155,7 +21038,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKu" = ( +"aKs" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -21168,7 +21051,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKv" = ( +"aKt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21178,7 +21061,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKw" = ( +"aKu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21187,7 +21070,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKx" = ( +"aKv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -21197,7 +21080,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKy" = ( +"aKw" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 6 @@ -21214,7 +21097,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKz" = ( +"aKx" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -21228,7 +21111,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aKA" = ( +"aKy" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -21239,14 +21122,14 @@ /obj/item/clothing/head/helmet/space/void/atmos, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aKB" = ( +"aKz" = ( /obj/structure/table/reinforced, /obj/item/device/assembly/signaler, /obj/item/device/assembly/signaler, /obj/item/device/flashlight/heavy, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aKC" = ( +"aKA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -21254,7 +21137,7 @@ /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aKD" = ( +"aKB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -21264,7 +21147,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aKE" = ( +"aKC" = ( /obj/structure/table/reinforced, /obj/structure/extinguisher_cabinet{ pixel_x = 25; @@ -21284,7 +21167,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aKF" = ( +"aKD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -21295,7 +21178,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aKG" = ( +"aKE" = ( /obj/structure/filingcabinet, /obj/machinery/recharger/wallcharger{ pixel_x = -24; @@ -21307,48 +21190,48 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aKH" = ( +"aKF" = ( /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aKI" = ( +"aKG" = ( /obj/structure/table/wood, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aKJ" = ( +"aKH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aKK" = ( +"aKI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aKL" = ( +"aKJ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aKM" = ( +"aKK" = ( /obj/structure/table/wood, /obj/item/weapon/reagent_containers/food/drinks/flask/barflask, /obj/item/device/flashlight/heavy, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aKN" = ( +"aKL" = ( /obj/machinery/newscaster{ pixel_x = -27 }, /turf/simulated/floor/tiled, /area/security/lobby) -"aKO" = ( +"aKM" = ( /turf/simulated/floor/tiled, /area/security/lobby) -"aKP" = ( +"aKN" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -21359,7 +21242,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aKQ" = ( +"aKO" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -21376,7 +21259,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aKR" = ( +"aKP" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -21403,7 +21286,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aKS" = ( +"aKQ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -21414,7 +21297,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aKT" = ( +"aKR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -21426,14 +21309,14 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aKU" = ( +"aKS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/brig) -"aKV" = ( +"aKT" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -21448,7 +21331,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aKW" = ( +"aKU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/computer/cryopod{ @@ -21456,15 +21339,15 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aKX" = ( +"aKV" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/security/prison) -"aKY" = ( +"aKW" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/security/prison) -"aKZ" = ( +"aKX" = ( /obj/machinery/door/blast/regular{ dir = 4; id = "Cell 4"; @@ -21474,7 +21357,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/prison) -"aLa" = ( +"aKY" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ density = 0; @@ -21498,7 +21381,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aLb" = ( +"aKZ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -21525,7 +21408,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aLc" = ( +"aLa" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -21533,7 +21416,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLd" = ( +"aLb" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -21547,35 +21430,35 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) +"aLc" = ( +/obj/structure/cable{ + 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/hallway/primary/starboard) +"aLd" = ( +/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 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) "aLe" = ( -/obj/structure/cable{ - 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/hallway/primary/starboard) -"aLf" = ( -/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 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aLg" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -21587,7 +21470,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLh" = ( +"aLf" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -21606,7 +21489,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLi" = ( +"aLg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21618,7 +21501,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLj" = ( +"aLh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21630,7 +21513,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLk" = ( +"aLi" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -21643,7 +21526,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLl" = ( +"aLj" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -21660,7 +21543,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLm" = ( +"aLk" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -21677,7 +21560,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLn" = ( +"aLl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21703,7 +21586,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLo" = ( +"aLm" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -21721,7 +21604,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLp" = ( +"aLn" = ( /obj/structure/disposalpipe/junction/yjunction{ icon_state = "pipe-y"; dir = 8 @@ -21743,14 +21626,14 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/camera/network/civilian_main{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Starboard Corridor - Camera 4"; dir = 8; - network = list("Civilian Main","Capt_Office") + network = list("Civilian West","Capt_Office") }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLq" = ( +"aLo" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/blast/regular{ density = 0; @@ -21762,7 +21645,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aLr" = ( +"aLp" = ( /obj/machinery/computer/guestpass{ pixel_x = -32 }, @@ -21774,12 +21657,12 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aLs" = ( +"aLq" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/bridge) -"aLt" = ( +"aLr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -21798,7 +21681,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aLu" = ( +"aLs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -21816,7 +21699,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aLv" = ( +"aLt" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -21835,6 +21718,47 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) +"aLu" = ( +/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/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/bridge) +"aLv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-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/white, +/area/bridge) "aLw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -21851,55 +21775,14 @@ dir = 4 }, /obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/tiled/white, /area/bridge) "aLx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-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/white, -/area/bridge) -"aLy" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aLz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21918,7 +21801,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aLA" = ( +"aLy" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -21943,7 +21826,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aLB" = ( +"aLz" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -21952,7 +21835,7 @@ /obj/structure/table/wood, /turf/simulated/floor/tiled, /area/bridge) -"aLC" = ( +"aLA" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -21969,7 +21852,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aLD" = ( +"aLB" = ( /obj/structure/table/wood, /obj/structure/cable/green{ d1 = 2; @@ -21986,12 +21869,12 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aLE" = ( +"aLC" = ( /obj/structure/table/wood, /obj/item/weapon/storage/box/donut, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aLF" = ( +"aLD" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -22000,16 +21883,16 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aLG" = ( +"aLE" = ( /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aLH" = ( +"aLF" = ( /obj/structure/table/wood, /obj/item/weapon/folder/blue, /obj/item/weapon/stamp/captain, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aLI" = ( +"aLG" = ( /obj/structure/bed/chair/office/bridge{ icon_state = "bridge"; dir = 8 @@ -22037,7 +21920,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aLJ" = ( +"aLH" = ( /obj/machinery/photocopier, /obj/machinery/camera/network/command{ c_tag = "Bridge - Captain's Office East"; @@ -22049,48 +21932,48 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aLK" = ( +"aLI" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 5 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLL" = ( +"aLJ" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLM" = ( +"aLK" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLN" = ( +"aLL" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 10 }, /obj/machinery/meter, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLO" = ( +"aLM" = ( /obj/machinery/atmospherics/binary/pump/high_power{ icon_state = "map_off"; dir = 1 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLP" = ( +"aLN" = ( /obj/structure/closet/walllocker/emerglocker/south, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLQ" = ( +"aLO" = ( /obj/structure/closet/hydrant{ pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLR" = ( +"aLP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -22103,7 +21986,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aLS" = ( +"aLQ" = ( /obj/random/junk, /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; @@ -22114,7 +21997,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aLT" = ( +"aLR" = ( /obj/machinery/light/small/emergency{ icon_state = "bulb1"; dir = 4 @@ -22124,7 +22007,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aLU" = ( +"aLS" = ( /obj/structure/table/rack, /obj/random/loot, /obj/machinery/light/small/emergency{ @@ -22132,14 +22015,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aLV" = ( +"aLT" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aLW" = ( +"aLU" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/heads/chief) -"aLX" = ( +"aLV" = ( /obj/structure/table/rack, /obj/item/weapon/rig/ce/equipped, /obj/item/clothing/mask/breath, @@ -22153,7 +22036,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) -"aLY" = ( +"aLW" = ( /obj/structure/table/reinforced, /obj/item/weapon/rcd_ammo, /obj/item/weapon/rcd_ammo, @@ -22172,7 +22055,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) -"aLZ" = ( +"aLX" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -22184,7 +22067,7 @@ /mob/living/bot/floorbot/floorbob, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) -"aMa" = ( +"aLY" = ( /obj/machinery/power/apc/high{ dir = 1; name = "north bump"; @@ -22196,7 +22079,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aMb" = ( +"aLZ" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 1 @@ -22205,14 +22088,14 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aMc" = ( +"aMa" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/machinery/papershredder, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aMd" = ( +"aMb" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /obj/item/device/radio/intercom{ @@ -22221,7 +22104,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aMe" = ( +"aMc" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -22242,7 +22125,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aMf" = ( +"aMd" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -22258,7 +22141,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aMg" = ( +"aMe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -22267,7 +22150,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aMh" = ( +"aMf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -22278,11 +22161,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aMi" = ( +"aMg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aMj" = ( +"aMh" = ( /obj/machinery/light{ dir = 4 }, @@ -22294,28 +22177,28 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aMk" = ( +"aMi" = ( /obj/machinery/light/small{ dir = 8 }, /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMl" = ( +"aMj" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Engineering Voidsuits"; req_one_access = list(11,24) }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMm" = ( +"aMk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/blue/diagonal, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMn" = ( +"aMl" = ( /obj/item/weapon/storage/briefcase/inflatable{ pixel_x = 3; pixel_y = 6 @@ -22329,7 +22212,7 @@ /obj/structure/table/reinforced, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMo" = ( +"aMm" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -22346,7 +22229,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMp" = ( +"aMn" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -22356,7 +22239,7 @@ /obj/item/device/suit_cooling_unit, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMq" = ( +"aMo" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -22370,7 +22253,7 @@ /obj/item/device/suit_cooling_unit, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMr" = ( +"aMp" = ( /obj/machinery/computer/secure_data, /obj/structure/sign/goldenplaque{ pixel_x = -32 @@ -22386,7 +22269,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aMs" = ( +"aMq" = ( /obj/structure/bed/chair/comfy/red{ dir = 4 }, @@ -22418,7 +22301,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aMt" = ( +"aMr" = ( /obj/structure/table/wood, /obj/item/weapon/folder/sec, /obj/item/weapon/pen/blue{ @@ -22431,21 +22314,21 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aMu" = ( +"aMs" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aMv" = ( +"aMt" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aMw" = ( +"aMu" = ( /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aMx" = ( +"aMv" = ( /obj/structure/table/wood, /obj/item/device/megaphone, /obj/item/device/radio, @@ -22460,7 +22343,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aMy" = ( +"aMw" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -22470,7 +22353,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aMz" = ( +"aMx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue{ @@ -22484,7 +22367,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aMA" = ( +"aMy" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -22501,7 +22384,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aMB" = ( +"aMz" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -22522,11 +22405,11 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aMC" = ( +"aMA" = ( /obj/structure/bed/chair/office/dark, /turf/simulated/floor/tiled, /area/security/brig) -"aMD" = ( +"aMB" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -22538,28 +22421,28 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aME" = ( +"aMC" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aMF" = ( +"aMD" = ( /obj/machinery/door/airlock{ desc = "It opens and closes. A repulsive smell eminates from the door."; name = "Brig Toilet" }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aMG" = ( +"aME" = ( /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aMH" = ( +"aMF" = ( /obj/item/toy/figure/warden, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aMI" = ( +"aMG" = ( /obj/machinery/shower{ dir = 8; icon_state = "shower"; @@ -22570,41 +22453,41 @@ /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aMJ" = ( +"aMH" = ( /obj/structure/cryofeed{ icon_state = "cryo_rear"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/security/prison) -"aMK" = ( +"aMI" = ( /obj/machinery/cryopod{ icon_state = "body_scanner_0"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/security/prison) -"aML" = ( +"aMJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, /turf/simulated/floor/tiled, /area/security/prison) -"aMM" = ( +"aMK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/security/prison) -"aMN" = ( +"aML" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/security/prison) -"aMO" = ( +"aMM" = ( /obj/machinery/flasher{ id = "permflash"; name = "Floor mounted flash"; @@ -22623,7 +22506,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aMP" = ( +"aMN" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 4"; name = "Cell 4 Locker" @@ -22634,7 +22517,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aMQ" = ( +"aMO" = ( /obj/structure/bed, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -22645,7 +22528,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aMR" = ( +"aMP" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -22669,7 +22552,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aMS" = ( +"aMQ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22677,7 +22560,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aMT" = ( +"aMR" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ id_tag = ""; @@ -22705,7 +22588,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aMU" = ( +"aMS" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -22717,7 +22600,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aMV" = ( +"aMT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -22728,20 +22611,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aMW" = ( +"aMU" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Com"; location = "S2" }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aMX" = ( +"aMV" = ( /obj/item/device/radio/intercom{ pixel_y = -27 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aMY" = ( +"aMW" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -22751,15 +22634,15 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aMZ" = ( +"aMX" = ( /obj/machinery/light, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNa" = ( +"aMY" = ( /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNb" = ( +"aMZ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22771,11 +22654,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNc" = ( +"aNa" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNd" = ( +"aNb" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -22791,18 +22674,18 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNe" = ( +"aNc" = ( /obj/machinery/status_display{ pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNf" = ( +"aNd" = ( /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNg" = ( +"aNe" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -22812,7 +22695,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNh" = ( +"aNf" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -22820,7 +22703,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNi" = ( +"aNg" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -22835,7 +22718,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNj" = ( +"aNh" = ( /obj/machinery/door/airlock/glass_command{ id_tag = "sbridgedoor"; name = "Bridge"; @@ -22855,7 +22738,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aNk" = ( +"aNi" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -22878,7 +22761,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aNl" = ( +"aNj" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22896,7 +22779,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aNm" = ( +"aNk" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22915,7 +22798,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aNn" = ( +"aNl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -22934,7 +22817,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/bridge) -"aNo" = ( +"aNm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -22953,7 +22836,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aNp" = ( +"aNn" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -22963,22 +22846,22 @@ }, /turf/simulated/floor/tiled, /area/bridge) +"aNo" = ( +/obj/effect/floor_decal/corner/paleblue{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/bridge) +"aNp" = ( +/obj/effect/floor_decal/corner/paleblue{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/bridge) "aNq" = ( -/obj/effect/floor_decal/corner/paleblue{ - icon_state = "corner_white"; - dir = 5 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/bridge) -"aNr" = ( -/obj/effect/floor_decal/corner/paleblue{ - icon_state = "corner_white"; - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"aNs" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -22990,7 +22873,7 @@ /obj/item/stack/medical/ointment, /turf/simulated/floor/tiled, /area/bridge) -"aNt" = ( +"aNr" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -22998,7 +22881,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/bridge) -"aNu" = ( +"aNs" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23009,13 +22892,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/bridge) -"aNv" = ( +"aNt" = ( /obj/structure/bed/chair/comfy/brown{ dir = 8 }, /turf/simulated/floor/tiled, /area/bridge) -"aNw" = ( +"aNu" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -23035,7 +22918,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aNx" = ( +"aNv" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 }, @@ -23051,13 +22934,13 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aNy" = ( +"aNw" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aNz" = ( +"aNx" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23066,20 +22949,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aNA" = ( +"aNy" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aNB" = ( +"aNz" = ( /obj/structure/table/wood, /obj/item/weapon/book/manual/security_space_law, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aNC" = ( +"aNA" = ( /obj/item/modular_computer/console/preset/captain, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aND" = ( +"aNB" = ( /obj/structure/table/wood, /obj/item/device/megaphone, /obj/structure/cable/green{ @@ -23089,17 +22972,17 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aNE" = ( +"aNC" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aNF" = ( +"aND" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aNG" = ( +"aNE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -23113,7 +22996,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aNH" = ( +"aNF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -23127,7 +23010,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aNI" = ( +"aNG" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable{ @@ -23142,7 +23025,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aNJ" = ( +"aNH" = ( /obj/machinery/door/airlock/maintenance_hatch{ req_access = list(12) }, @@ -23160,7 +23043,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aNK" = ( +"aNI" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -23174,7 +23057,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aNL" = ( +"aNJ" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -23191,7 +23074,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aNM" = ( +"aNK" = ( /obj/machinery/requests_console{ announcementConsole = 1; department = "Chief Engineer's Desk"; @@ -23202,10 +23085,10 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aNN" = ( +"aNL" = ( /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aNO" = ( +"aNM" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23213,15 +23096,15 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aNP" = ( +"aNN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aNQ" = ( +"aNO" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aNR" = ( +"aNP" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23243,7 +23126,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aNS" = ( +"aNQ" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -23254,20 +23137,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNT" = ( +"aNR" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNU" = ( +"aNS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNV" = ( +"aNT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -23278,7 +23161,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNW" = ( +"aNU" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 8; name = "Engineering Break Room"; @@ -23286,20 +23169,20 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNX" = ( +"aNV" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNY" = ( +"aNW" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNZ" = ( +"aNX" = ( /obj/item/device/radio/intercom{ dir = 0; name = "Station Intercom (General)"; @@ -23307,7 +23190,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aOa" = ( +"aNY" = ( /obj/item/device/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; @@ -23323,7 +23206,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aOb" = ( +"aNZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -23333,7 +23216,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aOc" = ( +"aOa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -23341,7 +23224,7 @@ /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aOd" = ( +"aOb" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_command{ name = "E.V.A."; @@ -23349,23 +23232,23 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aOe" = ( +"aOc" = ( /obj/machinery/keycard_auth{ pixel_x = -28 }, /obj/item/modular_computer/console/preset/security, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aOf" = ( +"aOd" = ( /obj/structure/table/wood, /obj/machinery/computer/skills, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aOg" = ( +"aOe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aOh" = ( +"aOf" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -23377,7 +23260,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aOi" = ( +"aOg" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -23390,13 +23273,13 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aOj" = ( +"aOh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/lobby) -"aOk" = ( +"aOi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -23407,7 +23290,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aOl" = ( +"aOj" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -23422,7 +23305,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aOm" = ( +"aOk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -23439,7 +23322,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aOn" = ( +"aOl" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -23469,7 +23352,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aOo" = ( +"aOm" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -23484,19 +23367,19 @@ /obj/item/modular_computer/console/preset/security, /turf/simulated/floor/tiled, /area/security/brig) -"aOp" = ( +"aOn" = ( /obj/machinery/computer/station_alert, /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/security/brig) -"aOq" = ( +"aOo" = ( /obj/machinery/papershredder, /obj/machinery/light_switch{ pixel_y = -23 }, /turf/simulated/floor/tiled, /area/security/brig) -"aOr" = ( +"aOp" = ( /obj/machinery/recharger/wallcharger{ pixel_y = -26 }, @@ -23506,7 +23389,7 @@ /obj/machinery/photocopier, /turf/simulated/floor/tiled, /area/security/brig) -"aOs" = ( +"aOq" = ( /obj/machinery/recharger/wallcharger{ pixel_y = -26 }, @@ -23517,7 +23400,7 @@ /obj/item/weapon/folder/sec, /turf/simulated/floor/tiled, /area/security/brig) -"aOt" = ( +"aOr" = ( /obj/effect/floor_decal/corner/blue/full{ icon_state = "corner_white_full"; dir = 4 @@ -23540,14 +23423,14 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/security/brig) -"aOu" = ( +"aOs" = ( /obj/structure/toilet/noose{ icon_state = "toilet00"; dir = 1 }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aOv" = ( +"aOt" = ( /obj/structure/sink{ dir = 8; icon_state = "sink"; @@ -23565,11 +23448,11 @@ }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aOw" = ( +"aOu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aOx" = ( +"aOv" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -23581,12 +23464,12 @@ }, /turf/simulated/floor/tiled/white, /area/security/prison) -"aOy" = ( +"aOw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/prison) -"aOz" = ( +"aOx" = ( /obj/structure/window/reinforced, /obj/structure/table/standard, /obj/item/weapon/storage/box/donkpockets{ @@ -23596,26 +23479,26 @@ /obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/tiled, /area/security/prison) -"aOA" = ( +"aOy" = ( /obj/structure/window/reinforced, /obj/structure/table/standard, /obj/machinery/microwave, /turf/simulated/floor/tiled, /area/security/prison) -"aOB" = ( +"aOz" = ( /obj/structure/window/reinforced, /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/security/prison) -"aOC" = ( +"aOA" = ( /obj/machinery/newscaster{ pixel_x = 27 }, /turf/simulated/floor/tiled, /area/security/prison) -"aOD" = ( +"aOB" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23634,7 +23517,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aOE" = ( +"aOC" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -23644,7 +23527,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aOF" = ( +"aOD" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23653,7 +23536,7 @@ /obj/structure/closet/walllocker/emerglocker/west, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aOG" = ( +"aOE" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -23664,10 +23547,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aOH" = ( +"aOF" = ( /turf/simulated/wall, /area/store) -"aOI" = ( +"aOG" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -23680,7 +23563,7 @@ }, /turf/simulated/floor/plating, /area/store) -"aOJ" = ( +"aOH" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -23692,7 +23575,7 @@ }, /turf/simulated/floor/plating, /area/store) -"aOK" = ( +"aOI" = ( /obj/machinery/door/blast/shutters{ id = "merch_shop"; name = "Merchandise Store" @@ -23709,7 +23592,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aOL" = ( +"aOJ" = ( /obj/machinery/door/blast/shutters{ id = "merch_shop"; name = "Merchandise Store" @@ -23718,7 +23601,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/store) -"aOM" = ( +"aOK" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, @@ -23732,7 +23615,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/primary/starboard) -"aON" = ( +"aOL" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -23744,10 +23627,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aOO" = ( +"aOM" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/heads/hop) -"aOP" = ( +"aON" = ( /obj/machinery/door/airlock/command{ name = "Head of Personnel"; req_access = list(57) @@ -23757,7 +23640,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aOQ" = ( +"aOO" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -23773,7 +23656,7 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"aOR" = ( +"aOP" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -23789,10 +23672,10 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"aOS" = ( +"aOQ" = ( /turf/simulated/wall/r_wall, /area/bridge/meeting_room) -"aOT" = ( +"aOR" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -23804,7 +23687,7 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"aOU" = ( +"aOS" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -23816,7 +23699,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aOV" = ( +"aOT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23839,7 +23722,7 @@ }, /turf/simulated/floor/tiled/white, /area/bridge) -"aOW" = ( +"aOU" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -23860,7 +23743,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aOX" = ( +"aOV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -23877,7 +23760,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aOY" = ( +"aOW" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ id_tag = "captaindoor"; @@ -23900,7 +23783,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aOZ" = ( +"aOX" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -23927,7 +23810,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aPa" = ( +"aOY" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -23944,7 +23827,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aPb" = ( +"aOZ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -23964,7 +23847,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aPc" = ( +"aPa" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -23976,7 +23859,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aPd" = ( +"aPb" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -23989,12 +23872,12 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aPe" = ( +"aPc" = ( /obj/item/toy/figure/captain, /obj/structure/flora/pottedplant/random, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aPf" = ( +"aPd" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -24006,7 +23889,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aPg" = ( +"aPe" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -24018,14 +23901,14 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aPh" = ( +"aPf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aPi" = ( +"aPg" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -24041,7 +23924,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aPj" = ( +"aPh" = ( /obj/structure/table/wood, /obj/item/weapon/storage/lockbox/medal, /obj/structure/cable/green{ @@ -24065,7 +23948,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aPk" = ( +"aPi" = ( /obj/structure/sign/drop{ pixel_y = -32 }, @@ -24075,19 +23958,19 @@ }, /turf/simulated/open, /area/engineering/engine_room) -"aPl" = ( +"aPj" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/zpipe/down/green{ dir = 1 }, /turf/simulated/open, /area/engineering/engine_room) -"aPm" = ( +"aPk" = ( /obj/random/junk, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aPn" = ( +"aPl" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -24097,7 +23980,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aPo" = ( +"aPm" = ( /obj/machinery/button/remote/driver{ id = "enginecore"; name = "Emergency Core Eject"; @@ -24109,10 +23992,10 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) -"aPp" = ( +"aPn" = ( /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aPq" = ( +"aPo" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/food/drinks/flask/barflask{ pixel_x = -5; @@ -24122,13 +24005,13 @@ /obj/item/weapon/flame/lighter/zippo, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aPr" = ( +"aPp" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aPs" = ( +"aPq" = ( /obj/structure/table/standard, /obj/structure/cable/green{ d1 = 1; @@ -24138,11 +24021,11 @@ /obj/machinery/computer/skills, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aPt" = ( +"aPr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aPu" = ( +"aPs" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -24158,7 +24041,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aPv" = ( +"aPt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -24184,7 +24067,7 @@ /obj/structure/window/reinforced/polarized, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aPw" = ( +"aPu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -24194,7 +24077,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPx" = ( +"aPv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -24210,7 +24093,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPy" = ( +"aPw" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24229,7 +24112,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPz" = ( +"aPx" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24241,7 +24124,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPA" = ( +"aPy" = ( /obj/structure/table/rack, /obj/machinery/power/apc{ dir = 4; @@ -24259,10 +24142,10 @@ /obj/item/weapon/storage/box/lights/mixed, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPB" = ( +"aPz" = ( /turf/simulated/wall, /area/engineering/foyer) -"aPC" = ( +"aPA" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -24270,23 +24153,23 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPD" = ( +"aPB" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPE" = ( +"aPC" = ( /obj/item/modular_computer/console/preset/engineering, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPF" = ( +"aPD" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPG" = ( +"aPE" = ( /obj/machinery/button/remote/blast_door{ id = "Singuloth"; name = "Engineering delivery Control"; @@ -24294,14 +24177,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPH" = ( +"aPF" = ( /obj/machinery/suit_cycler/medical, /obj/effect/floor_decal/corner/blue/full{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aPI" = ( +"aPG" = ( /obj/structure/table/reinforced, /obj/machinery/cell_charger, /obj/item/weapon/cell/high{ @@ -24325,13 +24208,13 @@ /obj/item/device/radio/off, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aPJ" = ( +"aPH" = ( /obj/structure/table/reinforced, /obj/item/hoist_kit, /obj/item/weapon/ladder_mobile, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aPK" = ( +"aPI" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -24347,7 +24230,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aPL" = ( +"aPJ" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -24355,32 +24238,32 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aPM" = ( +"aPK" = ( /obj/structure/closet/secure_closet/hos, /obj/item/device/multitool, /obj/item/weapon/reagent_containers/spray/pepper, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPN" = ( +"aPL" = ( /obj/item/device/radio/intercom{ pixel_y = -28 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPO" = ( +"aPM" = ( /obj/machinery/newscaster/security_unit{ pixel_y = -30 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPP" = ( +"aPN" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPQ" = ( +"aPO" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 8 @@ -24395,7 +24278,7 @@ /mob/living/simple_animal/hostile/commanded/dog/columbo, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPR" = ( +"aPP" = ( /obj/machinery/photocopier, /obj/machinery/requests_console{ announcementConsole = 1; @@ -24407,7 +24290,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPS" = ( +"aPQ" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -24421,7 +24304,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPT" = ( +"aPR" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -24432,7 +24315,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/security/lobby) -"aPU" = ( +"aPS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -24445,7 +24328,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aPV" = ( +"aPT" = ( /obj/machinery/ringer_button{ id = "brig_ringer"; pixel_x = 24; @@ -24453,10 +24336,10 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aPW" = ( +"aPU" = ( /turf/simulated/wall/r_wall, /area/security/prison) -"aPX" = ( +"aPV" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -24467,7 +24350,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aPY" = ( +"aPW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -24476,7 +24359,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aPZ" = ( +"aPX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -24485,7 +24368,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aQa" = ( +"aPY" = ( /obj/machinery/door/airlock{ name = "Brig Showers" }, @@ -24498,7 +24381,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aQb" = ( +"aPZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -24508,7 +24391,7 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/white, /area/security/prison) -"aQc" = ( +"aQa" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -24517,7 +24400,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aQd" = ( +"aQb" = ( /obj/machinery/atmospherics/unary/outlet_injector{ dir = 1; id = null; @@ -24525,7 +24408,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aQe" = ( +"aQc" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -24533,7 +24416,7 @@ /obj/item/weapon/mop, /turf/simulated/floor/tiled, /area/security/prison) -"aQf" = ( +"aQd" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -24541,7 +24424,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aQg" = ( +"aQe" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -24549,7 +24432,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aQh" = ( +"aQf" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -24562,7 +24445,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aQi" = ( +"aQg" = ( /obj/item/toy/prize/deathripley{ desc = "This is Johnny 5. Is he alive?"; name = "Johnny 5" @@ -24574,7 +24457,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aQj" = ( +"aQh" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -24593,7 +24476,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aQk" = ( +"aQi" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -24605,7 +24488,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aQl" = ( +"aQj" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -24626,14 +24509,7 @@ }, /turf/simulated/floor/plating, /area/store) -"aQm" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/dark, -/area/store) -"aQn" = ( +"aQl" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -24643,10 +24519,7 @@ }, /turf/simulated/floor/tiled/dark, /area/store) -"aQo" = ( -/turf/simulated/floor/tiled, -/area/store) -"aQp" = ( +"aQn" = ( /obj/machinery/door/window/northleft{ dir = 4; name = "Store Access"; @@ -24669,7 +24542,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aQq" = ( +"aQo" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -24689,14 +24562,14 @@ }, /turf/simulated/floor/tiled, /area/store) -"aQr" = ( +"aQp" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled, /area/store) -"aQs" = ( +"aQq" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -24708,20 +24581,20 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/store) -"aQt" = ( +"aQr" = ( /obj/item/device/t_scanner, /obj/structure/table/steel, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aQu" = ( +"aQs" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aQv" = ( +"aQt" = ( /turf/simulated/wall, /area/maintenance/maintcentral) -"aQw" = ( +"aQu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ d1 = 1; @@ -24732,7 +24605,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aQx" = ( +"aQv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -24747,11 +24620,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aQy" = ( +"aQw" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aQz" = ( +"aQx" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor{ base_state = "rightsecure"; @@ -24787,7 +24660,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aQA" = ( +"aQy" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -24801,7 +24674,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aQB" = ( +"aQz" = ( /obj/machinery/button/remote/blast_door{ desc = "A remote control-switch for shutters."; id = "hop_office_desk"; @@ -24823,7 +24696,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aQC" = ( +"aQA" = ( /obj/machinery/computer/guestpass{ pixel_y = 32 }, @@ -24839,7 +24712,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aQD" = ( +"aQB" = ( /obj/machinery/keycard_auth{ pixel_x = 24 }, @@ -24856,11 +24729,11 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aQE" = ( +"aQC" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aQF" = ( +"aQD" = ( /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; dir = 4 @@ -24871,7 +24744,7 @@ }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aQG" = ( +"aQE" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -24883,21 +24756,21 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aQH" = ( +"aQF" = ( /obj/structure/bed/chair/office/bridge{ icon_state = "bridge"; dir = 8 }, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aQI" = ( +"aQG" = ( /obj/effect/floor_decal/corner/purple{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aQJ" = ( +"aQH" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -24914,7 +24787,7 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"aQK" = ( +"aQI" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Corridor Camera 2"; dir = 4; @@ -24927,7 +24800,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aQL" = ( +"aQJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -24940,7 +24813,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aQM" = ( +"aQK" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -24950,11 +24823,11 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aQN" = ( +"aQL" = ( /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled, /area/bridge) -"aQO" = ( +"aQM" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -24978,7 +24851,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aQP" = ( +"aQN" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -24999,7 +24872,7 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aQQ" = ( +"aQO" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -25008,7 +24881,7 @@ /obj/structure/table/wood, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aQR" = ( +"aQP" = ( /obj/machinery/light_switch{ pixel_y = -24 }, @@ -25020,7 +24893,7 @@ /obj/structure/banner, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aQS" = ( +"aQQ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25034,7 +24907,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aQT" = ( +"aQR" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25058,7 +24931,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aQU" = ( +"aQS" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25076,7 +24949,7 @@ /obj/machinery/light, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aQV" = ( +"aQT" = ( /obj/machinery/door/window{ base_state = "left"; dir = 8; @@ -25100,7 +24973,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aQW" = ( +"aQU" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25117,7 +24990,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aQX" = ( +"aQV" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25139,7 +25012,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aQY" = ( +"aQW" = ( /obj/machinery/keycard_auth{ pixel_x = 0; pixel_y = -24 @@ -25158,7 +25031,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aQZ" = ( +"aQX" = ( /obj/machinery/disposal, /obj/structure/cable/green{ d1 = 1; @@ -25173,7 +25046,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aRa" = ( +"aQY" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -25198,14 +25071,14 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aRb" = ( +"aQZ" = ( /obj/machinery/meter{ name = "Scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aRc" = ( +"aRa" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -25218,7 +25091,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aRd" = ( +"aRb" = ( /obj/machinery/keycard_auth{ pixel_x = -24; pixel_y = 0 @@ -25245,13 +25118,13 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aRe" = ( +"aRc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aRf" = ( +"aRd" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -25272,7 +25145,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aRg" = ( +"aRe" = ( /obj/structure/table/standard, /obj/structure/cable/green{ d1 = 1; @@ -25286,7 +25159,7 @@ /obj/item/weapon/stamp/ce, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aRh" = ( +"aRf" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -25305,7 +25178,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aRi" = ( +"aRg" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25320,7 +25193,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aRj" = ( +"aRh" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25344,7 +25217,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aRk" = ( +"aRi" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 4; @@ -25364,7 +25237,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aRl" = ( +"aRj" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25382,7 +25255,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRm" = ( +"aRk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -25401,7 +25274,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRn" = ( +"aRl" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -25416,7 +25289,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRo" = ( +"aRm" = ( /obj/structure/closet/wardrobe/engineering_yellow, /obj/structure/sign/nosmoking_2{ pixel_x = 32 @@ -25427,7 +25300,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRp" = ( +"aRn" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -25435,7 +25308,7 @@ /obj/effect/floor_decal/corner/yellow/full, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRq" = ( +"aRo" = ( /obj/machinery/computer/security/engineering{ name = "Drone Monitoring Cameras" }, @@ -25445,7 +25318,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRr" = ( +"aRp" = ( /obj/structure/bed/chair/office/dark, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -25453,7 +25326,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRs" = ( +"aRq" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 10 @@ -25461,7 +25334,7 @@ /obj/machinery/computer/station_alert/engineering, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRt" = ( +"aRr" = ( /obj/machinery/conveyor_switch/oneway{ id = "Engie Delivery"; name = "Engineering Conveyor" @@ -25472,14 +25345,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRu" = ( +"aRs" = ( /obj/machinery/conveyor{ backwards = 1; id = "Engie Delivery" }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRv" = ( +"aRt" = ( /obj/machinery/suit_cycler/engineering, /obj/machinery/light/small{ dir = 8 @@ -25490,7 +25363,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aRw" = ( +"aRu" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_command{ name = "E.V.A. Cycler Access"; @@ -25498,7 +25371,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aRx" = ( +"aRv" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -25511,7 +25384,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aRy" = ( +"aRw" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -25548,13 +25421,13 @@ /obj/item/clothing/shoes/magboots, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aRz" = ( +"aRx" = ( /obj/item/device/radio/intercom{ pixel_x = -28 }, /turf/simulated/floor/tiled, /area/security/lobby) -"aRA" = ( +"aRy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -25569,13 +25442,13 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aRB" = ( +"aRz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/lobby) -"aRC" = ( +"aRA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -25592,14 +25465,14 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aRD" = ( +"aRB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/security/lobby) -"aRE" = ( +"aRC" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -25622,13 +25495,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/lobby) -"aRF" = ( +"aRD" = ( /obj/machinery/alarm{ pixel_y = 23 }, /turf/simulated/floor/tiled, /area/security/lobby) -"aRG" = ( +"aRE" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -25640,7 +25513,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aRH" = ( +"aRF" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/firedoor, /obj/machinery/door/window/brigdoor{ @@ -25659,26 +25532,26 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aRI" = ( +"aRG" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/tiled, /area/security/prison) -"aRJ" = ( +"aRH" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/alarm{ pixel_y = 23 }, /turf/simulated/floor/tiled, /area/security/prison) -"aRK" = ( +"aRI" = ( /obj/structure/window/reinforced/tinted/frosted, /obj/machinery/washing_machine, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/white, /area/security/prison) -"aRL" = ( +"aRJ" = ( /obj/structure/window/reinforced/tinted/frosted, /obj/structure/table/standard, /obj/structure/bedsheetbin, @@ -25686,7 +25559,7 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/white, /area/security/prison) -"aRM" = ( +"aRK" = ( /obj/machinery/door/blast/regular{ dir = 4; id = "Cell 5"; @@ -25696,7 +25569,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/prison) -"aRN" = ( +"aRL" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ density = 0; @@ -25720,7 +25593,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aRO" = ( +"aRM" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -25735,20 +25608,20 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aRP" = ( +"aRN" = ( /obj/structure/cable/green, /obj/machinery/power/apc{ dir = 8; name = "west bump"; pixel_x = -24 }, -/obj/machinery/camera/network/civilian_main{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Starboard Corridor - Camera 3"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aRQ" = ( +"aRO" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -25766,11 +25639,7 @@ }, /turf/simulated/floor/plating, /area/store) -"aRR" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/dark, -/area/store) -"aRS" = ( +"aRQ" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -25783,7 +25652,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aRT" = ( +"aRR" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -25797,7 +25666,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aRU" = ( +"aRS" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -25810,7 +25679,7 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled, /area/store) -"aRV" = ( +"aRT" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/northleft{ name = "Store Desk"; @@ -25831,7 +25700,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aRW" = ( +"aRU" = ( /obj/structure/closet, /obj/item/clothing/head/ushanka, /obj/machinery/light/small{ @@ -25839,17 +25708,17 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aRX" = ( +"aRV" = ( /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aRY" = ( +"aRW" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aRZ" = ( +"aRX" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -25863,7 +25732,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aSa" = ( +"aRY" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -25876,7 +25745,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/starboard) -"aSb" = ( +"aRZ" = ( /obj/effect/floor_decal/industrial/loading{ icon_state = "loadingarea"; dir = 1 @@ -25884,7 +25753,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aSc" = ( +"aSa" = ( /obj/structure/window/reinforced/polarized{ dir = 4; id = "hop" @@ -25913,20 +25782,20 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hop) -"aSd" = ( +"aSb" = ( /obj/item/modular_computer/console/preset/command, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aSe" = ( +"aSc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aSf" = ( +"aSd" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aSg" = ( +"aSe" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -25938,14 +25807,14 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aSh" = ( +"aSf" = ( /obj/machinery/status_display{ pixel_x = -32; pixel_y = 0 }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aSi" = ( +"aSg" = ( /obj/structure/table/wood, /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; @@ -25954,16 +25823,16 @@ /obj/item/weapon/book/manual/security_space_law, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aSj" = ( +"aSh" = ( /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aSk" = ( +"aSi" = ( /obj/structure/table/reinforced, /obj/item/weapon/folder/blue, /obj/item/weapon/pen, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aSl" = ( +"aSj" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -25976,7 +25845,7 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"aSm" = ( +"aSk" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -25984,7 +25853,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aSn" = ( +"aSl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -25995,7 +25864,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aSo" = ( +"aSm" = ( /obj/effect/floor_decal/corner/paleblue/full, /obj/machinery/status_display{ density = 0; @@ -26005,7 +25874,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aSp" = ( +"aSn" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -26022,7 +25891,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aSq" = ( +"aSo" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -26039,10 +25908,10 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aSr" = ( +"aSp" = ( /turf/simulated/wall/r_wall, /area/bridge/ailobby) -"aSs" = ( +"aSq" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -26055,7 +25924,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aSt" = ( +"aSr" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -26067,21 +25936,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aSu" = ( +"aSs" = ( /obj/structure/closet/secure_closet/engineering_chief, /obj/item/weapon/tank/emergency_oxygen/engi, /obj/item/device/gps/engineering, /obj/item/weapon/pipewrench, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aSv" = ( +"aSt" = ( /obj/item/modular_computer/console/preset/engineering, /obj/machinery/light_switch{ pixel_y = -28 }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aSw" = ( +"aSu" = ( /obj/item/modular_computer/console/preset/engineering, /obj/machinery/newscaster{ layer = 3.3; @@ -26090,7 +25959,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aSx" = ( +"aSv" = ( /obj/structure/table/standard, /obj/item/clothing/glasses/welding/superior{ pixel_x = 2; @@ -26102,7 +25971,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aSy" = ( +"aSw" = ( /obj/machinery/light, /obj/structure/cable/green{ d1 = 1; @@ -26111,7 +25980,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aSz" = ( +"aSx" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -26123,7 +25992,7 @@ /obj/structure/table/standard, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aSA" = ( +"aSy" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -26145,12 +26014,12 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aSB" = ( +"aSz" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/floor_decal/corner/yellow/full, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aSC" = ( +"aSA" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -26167,7 +26036,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aSD" = ( +"aSB" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -26187,7 +26056,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aSE" = ( +"aSC" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -26200,7 +26069,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aSF" = ( +"aSD" = ( /obj/structure/closet/crate, /obj/effect/floor_decal/corner/yellow/full{ icon_state = "corner_white_full"; @@ -26214,7 +26083,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aSG" = ( +"aSE" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, @@ -26228,7 +26097,7 @@ }, /turf/simulated/floor/plating, /area/engineering/foyer) -"aSH" = ( +"aSF" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, @@ -26242,7 +26111,7 @@ }, /turf/simulated/floor/plating, /area/engineering/foyer) -"aSI" = ( +"aSG" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/window/brigdoor/northleft{ name = "Engineering Desk"; @@ -26259,7 +26128,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aSJ" = ( +"aSH" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, @@ -26272,7 +26141,7 @@ }, /turf/simulated/floor/plating, /area/engineering/foyer) -"aSK" = ( +"aSI" = ( /obj/machinery/conveyor{ backwards = 1; id = "Engie Delivery" @@ -26285,16 +26154,16 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/foyer) -"aSL" = ( +"aSJ" = ( /obj/machinery/suit_cycler/mining, /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aSM" = ( +"aSK" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aSN" = ( +"aSL" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -26302,13 +26171,13 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aSO" = ( +"aSM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aSP" = ( +"aSN" = ( /obj/structure/dispenser/oxygen, /obj/machinery/camera/network/security{ c_tag = "EVA - Aft Camera"; @@ -26320,11 +26189,11 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aSQ" = ( +"aSO" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aSR" = ( +"aSP" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -26338,7 +26207,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aSS" = ( +"aSQ" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -26351,7 +26220,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aST" = ( +"aSR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -26364,7 +26233,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aSU" = ( +"aSS" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -26375,7 +26244,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aSV" = ( +"aST" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 4 @@ -26387,7 +26256,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aSW" = ( +"aSU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -26395,7 +26264,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aSX" = ( +"aSV" = ( /obj/machinery/door/airlock/maintenance{ name = "Maintenance Access"; req_access = list(12) @@ -26406,13 +26275,13 @@ }, /turf/simulated/floor/plating, /area/security/lobby) -"aSY" = ( +"aSW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/lobby) -"aSZ" = ( +"aSX" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -26423,7 +26292,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTa" = ( +"aSY" = ( /obj/machinery/light, /obj/machinery/camera/network/security{ c_tag = "Security - Lobby"; @@ -26444,7 +26313,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTb" = ( +"aSZ" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -26461,7 +26330,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTc" = ( +"aTa" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 @@ -26473,7 +26342,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTd" = ( +"aTb" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26486,7 +26355,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTe" = ( +"aTc" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26494,7 +26363,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTf" = ( +"aTd" = ( /obj/machinery/door/airlock{ id_tag = "visitdoor"; name = "Visitation Area"; @@ -26508,7 +26377,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTg" = ( +"aTe" = ( /obj/machinery/light/small{ dir = 4 }, @@ -26523,7 +26392,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTh" = ( +"aTf" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -26550,7 +26419,7 @@ }, /turf/simulated/floor/plating, /area/security/prison) -"aTi" = ( +"aTg" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -26563,7 +26432,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTj" = ( +"aTh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -26572,7 +26441,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTk" = ( +"aTi" = ( /obj/machinery/door/airlock{ name = "Visitation Area" }, @@ -26593,7 +26462,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTl" = ( +"aTj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -26602,7 +26471,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTm" = ( +"aTk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -26614,7 +26483,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTn" = ( +"aTl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -26626,7 +26495,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTo" = ( +"aTm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -26637,16 +26506,16 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/security/prison) -"aTp" = ( +"aTn" = ( /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/floor/tiled, /area/security/prison) -"aTq" = ( +"aTo" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/light, /turf/simulated/floor/tiled, /area/security/prison) -"aTr" = ( +"aTp" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/weapon/reagent_containers/glass/bucket, /obj/machinery/camera/network/prison{ @@ -26655,7 +26524,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTs" = ( +"aTq" = ( /obj/structure/closet/crate/trashcart, /obj/item/toy/figure/secofficer{ pixel_x = -3; @@ -26687,7 +26556,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTt" = ( +"aTr" = ( /obj/structure/table/standard, /obj/item/weapon/material/minihoe, /obj/item/device/analyzer/plant_analyzer, @@ -26699,7 +26568,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTu" = ( +"aTs" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 5"; name = "Cell 5 Locker" @@ -26710,7 +26579,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTv" = ( +"aTt" = ( /obj/structure/bed, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -26721,7 +26590,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTw" = ( +"aTu" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -26729,19 +26598,11 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aTx" = ( +"aTv" = ( /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/security/brig) -"aTy" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/store) -"aTz" = ( +"aTx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -26753,19 +26614,19 @@ }, /turf/simulated/floor/tiled, /area/store) -"aTA" = ( +"aTy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/store) -"aTB" = ( +"aTz" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/store) -"aTC" = ( +"aTA" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, @@ -26775,7 +26636,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aTD" = ( +"aTB" = ( /obj/structure/table/rack{ dir = 1 }, @@ -26787,14 +26648,14 @@ /obj/item/clothing/glasses/meson, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aTE" = ( +"aTC" = ( /obj/random/junk, /obj/structure/closet/hydrant{ pixel_x = 32 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aTF" = ( +"aTD" = ( /obj/item/device/radio/intercom{ pixel_x = -27 }, @@ -26806,7 +26667,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aTG" = ( +"aTE" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -26816,11 +26677,11 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/starboard) -"aTH" = ( +"aTF" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aTI" = ( +"aTG" = ( /obj/structure/window/reinforced/polarized{ dir = 4; id = "hop" @@ -26850,25 +26711,25 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hop) -"aTJ" = ( +"aTH" = ( /obj/machinery/computer/secure_data, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aTK" = ( +"aTI" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aTL" = ( +"aTJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /obj/structure/closet/secure_closet/hop2, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aTM" = ( +"aTK" = ( /obj/structure/bed/chair/office/bridge{ icon_state = "bridge"; dir = 4 @@ -26884,7 +26745,7 @@ }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aTN" = ( +"aTL" = ( /obj/structure/table/wood, /obj/item/weapon/folder/blue, /obj/effect/floor_decal/spline/fancy/wood{ @@ -26893,20 +26754,20 @@ }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aTO" = ( +"aTM" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aTP" = ( +"aTN" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aTQ" = ( +"aTO" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -26922,7 +26783,7 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"aTR" = ( +"aTP" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -26942,7 +26803,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aTS" = ( +"aTQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -26957,7 +26818,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aTT" = ( +"aTR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -26972,7 +26833,7 @@ /obj/effect/floor_decal/corner/paleblue/full, /turf/simulated/floor/tiled, /area/bridge) -"aTU" = ( +"aTS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -26992,7 +26853,7 @@ dir = 4 }, /area/bridge) -"aTV" = ( +"aTT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -27011,7 +26872,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aTW" = ( +"aTU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -27030,7 +26891,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aTX" = ( +"aTV" = ( /obj/machinery/door/airlock/glass_command{ name = "B Lift Access"; req_access = list(19) @@ -27050,7 +26911,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aTY" = ( +"aTW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -27064,7 +26925,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aTZ" = ( +"aTX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -27076,7 +26937,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUa" = ( +"aTY" = ( /obj/machinery/alarm{ pixel_y = 23 }, @@ -27085,7 +26946,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUb" = ( +"aTZ" = ( /obj/machinery/light{ dir = 1 }, @@ -27097,7 +26958,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUc" = ( +"aUa" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -27107,10 +26968,10 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUd" = ( +"aUb" = ( /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUe" = ( +"aUc" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ name = "Cyborg Station"; @@ -27118,7 +26979,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUf" = ( +"aUd" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -27127,12 +26988,12 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUg" = ( +"aUe" = ( /obj/machinery/recharge_station, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUh" = ( +"aUf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -27143,10 +27004,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aUi" = ( +"aUg" = ( /turf/simulated/wall/r_wall, /area/janitor) -"aUj" = ( +"aUh" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -27164,7 +27025,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aUk" = ( +"aUi" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -27185,7 +27046,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aUl" = ( +"aUj" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -27204,7 +27065,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aUm" = ( +"aUk" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -27222,11 +27083,11 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aUn" = ( +"aUl" = ( /obj/structure/sign/securearea, /turf/simulated/wall/r_wall, /area/engineering/foyer) -"aUo" = ( +"aUm" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -27247,7 +27108,7 @@ }, /turf/simulated/floor/plating, /area/engineering/foyer) -"aUp" = ( +"aUn" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_engineering{ name = "Engineering Hallway"; @@ -27263,7 +27124,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aUq" = ( +"aUo" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_engineering{ name = "Engineering Hallway"; @@ -27272,7 +27133,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aUr" = ( +"aUp" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -27289,32 +27150,32 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/engineering/foyer) -"aUs" = ( +"aUq" = ( /obj/structure/sign/securearea, /turf/simulated/wall, /area/engineering/foyer) -"aUt" = ( +"aUr" = ( /obj/effect/floor_decal/corner/yellow/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aUu" = ( +"aUs" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aUv" = ( +"aUt" = ( /obj/effect/floor_decal/corner/yellow/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aUw" = ( +"aUu" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -27332,7 +27193,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aUx" = ( +"aUv" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -27355,7 +27216,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aUy" = ( +"aUw" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_command{ name = "E.V.A."; @@ -27375,7 +27236,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aUz" = ( +"aUx" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -27398,7 +27259,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aUA" = ( +"aUy" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -27416,10 +27277,10 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aUB" = ( +"aUz" = ( /turf/simulated/wall, /area/hallway/primary/port) -"aUC" = ( +"aUA" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Maintenance Access"; @@ -27433,10 +27294,10 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/port) -"aUD" = ( +"aUB" = ( /turf/simulated/wall, /area/hallway/primary/central_one) -"aUE" = ( +"aUC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ desc = "It opens and closes. Hazardous lifeforms ahead. Caution advised!"; @@ -27444,7 +27305,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aUF" = ( +"aUD" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -27460,7 +27321,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/security/lobby) -"aUG" = ( +"aUE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ density = 0; @@ -27478,14 +27339,14 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aUH" = ( +"aUF" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aUI" = ( +"aUG" = ( /obj/machinery/door/window/northleft{ dir = 4; icon_state = "left"; @@ -27497,7 +27358,7 @@ }, /turf/simulated/floor/tiled/dark, /area/store) -"aUJ" = ( +"aUH" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -27505,13 +27366,16 @@ }, /turf/simulated/floor/tiled, /area/store) -"aUK" = ( +"aUI" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/store) -"aUL" = ( +"aUJ" = ( +/turf/simulated/floor/tiled, +/area/store) +"aUK" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -27519,7 +27383,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aUM" = ( +"aUL" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -27528,7 +27392,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aUN" = ( +"aUM" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -27539,26 +27403,26 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/hallway/primary/starboard) -"aUO" = ( +"aUN" = ( /obj/structure/table/reinforced, /obj/machinery/computer/skills, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aUP" = ( +"aUO" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aUQ" = ( +"aUP" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aUR" = ( +"aUQ" = ( /obj/structure/closet/secure_closet/hop, /obj/item/weapon/book/manual/security_space_law, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aUS" = ( +"aUR" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -27567,7 +27431,7 @@ }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aUT" = ( +"aUS" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -27580,7 +27444,7 @@ }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aUU" = ( +"aUT" = ( /obj/structure/table/reinforced, /obj/item/weapon/folder/blue, /obj/item/weapon/folder/blue, @@ -27591,11 +27455,11 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aUV" = ( +"aUU" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aUW" = ( +"aUV" = ( /obj/structure/table/reinforced, /obj/item/weapon/folder/blue, /obj/item/weapon/folder/blue, @@ -27607,7 +27471,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aUX" = ( +"aUW" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 8 @@ -27617,7 +27481,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aUY" = ( +"aUX" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -27626,7 +27490,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled, /area/bridge) -"aUZ" = ( +"aUY" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -27634,7 +27498,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aVa" = ( +"aUZ" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/airlock/glass_command{ @@ -27643,7 +27507,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aVb" = ( +"aVa" = ( /obj/structure/cable/green, /obj/machinery/power/apc{ dir = 2; @@ -27652,15 +27516,15 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aVc" = ( +"aVb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aVd" = ( +"aVc" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aVe" = ( +"aVd" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -27672,7 +27536,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aVf" = ( +"aVe" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -27683,7 +27547,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aVg" = ( +"aVf" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -27695,7 +27559,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aVh" = ( +"aVg" = ( /obj/structure/sign/double/map/left{ pixel_y = 32 }, @@ -27715,14 +27579,14 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"aVi" = ( +"aVh" = ( /obj/item/weapon/stool, /obj/structure/sign/double/map/right{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/janitor) -"aVj" = ( +"aVi" = ( /obj/structure/table/steel, /obj/item/weapon/deck/cards, /obj/item/weapon/key/janicart, @@ -27732,7 +27596,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"aVk" = ( +"aVj" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, @@ -27742,11 +27606,11 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"aVl" = ( +"aVk" = ( /obj/vehicle/train/cargo/engine/pussywagon, /turf/simulated/floor/tiled/dark, /area/janitor) -"aVm" = ( +"aVl" = ( /obj/machinery/button/remote/blast_door{ id = "mopinator"; name = "Custodial Garage"; @@ -27755,7 +27619,7 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"aVn" = ( +"aVm" = ( /obj/machinery/door/blast/shutters{ density = 1; dir = 4; @@ -27766,36 +27630,36 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"aVo" = ( +"aVn" = ( /obj/effect/floor_decal/industrial/loading{ icon_state = "loadingarea"; dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVp" = ( +"aVo" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVq" = ( +"aVp" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVr" = ( +"aVq" = ( /obj/machinery/alarm{ pixel_y = 23 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVs" = ( +"aVr" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/camera/network/civilian_main{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Port Corridor - Engineering Entrance" }, /obj/effect/floor_decal/corner/yellow{ @@ -27804,7 +27668,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVt" = ( +"aVs" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -27819,7 +27683,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVu" = ( +"aVt" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -27827,7 +27691,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVv" = ( +"aVu" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 1 @@ -27835,21 +27699,13 @@ /turf/simulated/floor/tiled, /area/engineering/foyer) "aVw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway"; - req_one_access = null - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aVx" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVy" = ( +"aVx" = ( /obj/structure/sign/directions/engineering{ dir = 8; icon_state = "direction_eng"; @@ -27870,16 +27726,16 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVz" = ( +"aVy" = ( /obj/item/device/radio/intercom{ pixel_y = 27 }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVA" = ( +"aVz" = ( /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVB" = ( +"aVA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -27890,30 +27746,30 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVC" = ( +"aVB" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVD" = ( +"aVC" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/extinguisher_cabinet{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVE" = ( +"aVD" = ( /obj/machinery/alarm{ pixel_y = 23 }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVF" = ( +"aVE" = ( /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVG" = ( +"aVF" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -27922,19 +27778,19 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVH" = ( +"aVG" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVI" = ( +"aVH" = ( /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVJ" = ( +"aVI" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVK" = ( +"aVJ" = ( /obj/structure/sign/directions/engineering{ dir = 8; icon_state = "direction_eng"; @@ -27949,7 +27805,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVL" = ( +"aVK" = ( /obj/structure/sign/directions/cryo{ pixel_y = 28 }, @@ -27961,7 +27817,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVM" = ( +"aVL" = ( /obj/structure/sign/directions/security{ dir = 4; icon_state = "direction_sec"; @@ -27980,19 +27836,19 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVN" = ( +"aVM" = ( /obj/structure/sign/double/map/left{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVO" = ( +"aVN" = ( /obj/structure/sign/double/map/right{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVP" = ( +"aVO" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -28001,13 +27857,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVQ" = ( +"aVP" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVR" = ( +"aVQ" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -28031,25 +27887,25 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVS" = ( +"aVR" = ( /obj/effect/floor_decal/corner/blue{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVT" = ( +"aVS" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVU" = ( +"aVT" = ( /obj/machinery/station_map{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVV" = ( +"aVU" = ( /obj/structure/sign/directions/engineering{ dir = 8; icon_state = "direction_eng"; @@ -28069,7 +27925,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVW" = ( +"aVV" = ( /obj/structure/sign/directions/evac{ dir = 8; icon_state = "direction_evac"; @@ -28086,7 +27942,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVX" = ( +"aVW" = ( /obj/structure/sign/directions/civ{ pixel_y = 24 }, @@ -28103,46 +27959,40 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVY" = ( +"aVX" = ( /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aVZ" = ( -/obj/machinery/camera/network/civilian_west{ - c_tag = "Starboard Corridor - Camera 1" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aWa" = ( +"aVY" = ( /obj/item/device/radio/intercom{ pixel_y = 27 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWb" = ( +"aVZ" = ( /obj/machinery/status_display{ pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWc" = ( +"aWa" = ( /obj/machinery/atm{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWd" = ( +"aWb" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWe" = ( -/obj/machinery/camera/network/civilian_main{ +"aWc" = ( +/obj/machinery/camera/network/civilian_west{ c_tag = "Starboard Corridor - Camera 2" }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWf" = ( +"aWd" = ( /obj/effect/floor_decal/corner/blue{ dir = 4 }, @@ -28151,13 +28001,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWg" = ( +"aWe" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWh" = ( +"aWf" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 1 @@ -28165,14 +28015,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWi" = ( +"aWg" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Eng"; location = "S4" }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWj" = ( +"aWh" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -28191,12 +28041,7 @@ }, /turf/simulated/floor/plating, /area/store) -"aWk" = ( -/obj/machinery/light, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/dark, -/area/store) -"aWl" = ( +"aWj" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -28210,7 +28055,7 @@ }, /turf/simulated/floor/tiled/dark, /area/store) -"aWm" = ( +"aWk" = ( /obj/structure/closet, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/power/apc{ @@ -28221,52 +28066,29 @@ /obj/structure/cable, /turf/simulated/floor/tiled, /area/store) -"aWn" = ( +"aWl" = ( /obj/structure/closet/crate, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/store) -"aWo" = ( +"aWm" = ( /obj/structure/closet/crate, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/newscaster{ pixel_y = -32 }, -/obj/machinery/camera/network/civilian_main{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Starboard Corridor - Store"; dir = 1 }, /turf/simulated/floor/tiled, /area/store) -"aWp" = ( -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/machinery/button/remote/blast_door{ - id = "merch_shop"; - name = "Entrance Shutters"; - pixel_x = 28; - pixel_y = 5; - req_access = null - }, -/obj/machinery/button/remote/blast_door{ - id = "storefront"; - name = "Storefront Shutters"; - pixel_x = 28; - pixel_y = -5; - req_access = null - }, -/obj/item/device/radio/intercom{ - pixel_y = -27 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/store) -"aWq" = ( +"aWo" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aWr" = ( +"aWp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -28276,7 +28098,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aWs" = ( +"aWq" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -28286,7 +28108,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aWt" = ( +"aWr" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -28300,7 +28122,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aWu" = ( +"aWs" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -28309,7 +28131,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWv" = ( +"aWt" = ( /obj/structure/sign/nosmoking_1{ pixel_y = -32 }, @@ -28318,14 +28140,14 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/camera/network/civilian_main{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Bridge - Head of Personnel Processing"; dir = 1 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWw" = ( +"aWu" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -28339,7 +28161,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWx" = ( +"aWv" = ( /obj/structure/window/reinforced/polarized{ dir = 4; id = "hop" @@ -28372,7 +28194,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hop) -"aWy" = ( +"aWw" = ( /obj/structure/table/reinforced, /obj/item/device/eftpos{ eftpos_name = "HoP EFTPOS scanner" @@ -28381,14 +28203,14 @@ /obj/item/device/megaphone, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aWz" = ( +"aWx" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aWA" = ( +"aWy" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Head of Personnel Desk"; dir = 8 @@ -28400,11 +28222,11 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aWB" = ( +"aWz" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aWC" = ( +"aWA" = ( /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; dir = 4 @@ -28417,14 +28239,14 @@ }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aWD" = ( +"aWB" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aWE" = ( +"aWC" = ( /obj/structure/bed/chair/office/bridge{ icon_state = "bridge"; dir = 8 @@ -28432,7 +28254,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aWF" = ( +"aWD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/orange{ icon_state = "corner_white"; @@ -28440,7 +28262,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aWG" = ( +"aWE" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -28460,7 +28282,7 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"aWH" = ( +"aWF" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -28471,7 +28293,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aWI" = ( +"aWG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -28484,7 +28306,7 @@ }, /turf/simulated/floor/tiled/white, /area/bridge) -"aWJ" = ( +"aWH" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -28496,16 +28318,16 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aWK" = ( +"aWI" = ( /turf/simulated/wall, /area/crew_quarters/heads/cryo) -"aWL" = ( +"aWJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aWM" = ( +"aWK" = ( /obj/structure/table/reinforced, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -28521,18 +28343,18 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aWN" = ( +"aWL" = ( /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aWO" = ( +"aWM" = ( /obj/machinery/cryopod/robot, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aWP" = ( +"aWN" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -28552,7 +28374,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aWQ" = ( +"aWO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28568,7 +28390,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aWR" = ( +"aWP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -28587,7 +28409,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"aWS" = ( +"aWQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28603,7 +28425,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"aWT" = ( +"aWR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28621,7 +28443,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"aWU" = ( +"aWS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28638,7 +28460,7 @@ /obj/item/weapon/reagent_containers/glass/bucket, /turf/simulated/floor/tiled/dark, /area/janitor) -"aWV" = ( +"aWT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28654,7 +28476,7 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"aWW" = ( +"aWU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28667,7 +28489,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/janitor) -"aWX" = ( +"aWV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28688,7 +28510,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/janitor) -"aWY" = ( +"aWW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28704,7 +28526,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aWZ" = ( +"aWX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28716,7 +28538,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aXa" = ( +"aWY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28726,7 +28548,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aXb" = ( +"aWZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -28743,7 +28565,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aXc" = ( +"aXa" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -28756,7 +28578,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aXd" = ( +"aXb" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28775,7 +28597,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aXe" = ( +"aXc" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28790,7 +28612,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aXf" = ( +"aXd" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28806,7 +28628,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aXg" = ( +"aXe" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28819,7 +28641,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aXh" = ( +"aXf" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28843,7 +28665,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aXi" = ( +"aXg" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -28870,7 +28692,7 @@ }, /turf/simulated/floor/plating, /area/engineering/foyer) -"aXj" = ( +"aXh" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28888,7 +28710,7 @@ icon_state = "tube1"; pixel_y = 0 }, -/obj/machinery/camera/network/civilian_main{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Port Corridor - Camera 2"; dir = 4 }, @@ -28898,7 +28720,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aXk" = ( +"aXi" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28913,7 +28735,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aXl" = ( +"aXj" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28929,7 +28751,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aXm" = ( +"aXk" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28949,7 +28771,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aXn" = ( +"aXl" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28962,7 +28784,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aXo" = ( +"aXm" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28977,7 +28799,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aXp" = ( +"aXn" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28997,6 +28819,36 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) +"aXo" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + 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/hallway/primary/port) +"aXp" = ( +/obj/machinery/door/airlock/glass, +/obj/structure/cable{ + 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/hallway/primary/port) "aXq" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ @@ -29011,38 +28863,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aXr" = ( -/obj/machinery/door/airlock/glass, -/obj/structure/cable{ - 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/hallway/primary/port) -"aXs" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - 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/hallway/primary/central_one) -"aXt" = ( +"aXr" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -29057,7 +28879,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aXu" = ( +"aXs" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -29077,7 +28899,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aXv" = ( +"aXt" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -29091,7 +28913,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aXw" = ( +"aXu" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -29110,7 +28932,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aXx" = ( +"aXv" = ( /obj/machinery/door/airlock/glass, /obj/structure/cable{ d1 = 4; @@ -29125,7 +28947,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aXy" = ( +"aXw" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 4; @@ -29140,7 +28962,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aXz" = ( +"aXx" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -29159,7 +28981,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aXA" = ( +"aXy" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -29173,7 +28995,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aXB" = ( +"aXz" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -29188,7 +29010,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aXC" = ( +"aXA" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -29209,7 +29031,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aXD" = ( +"aXB" = ( /obj/structure/sign/directions/evac{ dir = 8; icon_state = "direction_evac"; @@ -29228,26 +29050,26 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aXE" = ( +"aXC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ req_access = list(57) }, /turf/simulated/floor/plating, /area/store) -"aXF" = ( +"aXD" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aXG" = ( +"aXE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aXH" = ( +"aXF" = ( /turf/simulated/wall, /area/maintenance/substation/command) -"aXI" = ( +"aXG" = ( /obj/machinery/door/airlock/engineering{ name = "Command Substation"; req_one_access = list(11,24) @@ -29260,10 +29082,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"aXJ" = ( +"aXH" = ( /turf/simulated/wall/r_wall, /area/maintenance/substation/command) -"aXK" = ( +"aXI" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ id_tag = "hopdoor"; @@ -29285,14 +29107,14 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aXL" = ( +"aXJ" = ( /obj/machinery/vending/cart, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aXM" = ( +"aXK" = ( /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aXN" = ( +"aXL" = ( /obj/machinery/recharger, /obj/structure/table/reinforced, /obj/machinery/ringer{ @@ -29304,14 +29126,14 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aXO" = ( +"aXM" = ( /turf/simulated/floor/tiled/ramp/bottom, /area/bridge/meeting_room) -"aXP" = ( +"aXN" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aXQ" = ( +"aXO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -29322,7 +29144,7 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aXR" = ( +"aXP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -29333,7 +29155,7 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aXS" = ( +"aXQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -29347,7 +29169,7 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aXT" = ( +"aXR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -29365,7 +29187,7 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aXU" = ( +"aXS" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ id_tag = null; @@ -29388,7 +29210,7 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aXV" = ( +"aXT" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -29410,7 +29232,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aXW" = ( +"aXU" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -29431,7 +29253,7 @@ }, /turf/simulated/floor/tiled/white, /area/bridge) -"aXX" = ( +"aXV" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -29443,21 +29265,21 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aXY" = ( +"aXW" = ( /obj/structure/cryofeed{ icon_state = "cryo_rear"; dir = 4 }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/cryo) -"aXZ" = ( +"aXX" = ( /obj/machinery/cryopod{ icon_state = "body_scanner_0"; dir = 4 }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/cryo) -"aYa" = ( +"aXY" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -29473,22 +29295,22 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"aYb" = ( +"aXZ" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/blue, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"aYc" = ( +"aYa" = ( /turf/simulated/wall, /area/bridge/ailobby) -"aYd" = ( +"aYb" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ req_access = list(19) }, /turf/simulated/floor/plating, /area/bridge/ailobby) -"aYe" = ( +"aYc" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -29498,7 +29320,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aYf" = ( +"aYd" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -29510,7 +29332,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"aYg" = ( +"aYe" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29518,7 +29340,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"aYh" = ( +"aYf" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29528,7 +29350,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/janitor) -"aYi" = ( +"aYg" = ( /obj/machinery/door/airlock/engineering{ name = "Custodial Technician"; req_access = list(26) @@ -29540,7 +29362,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"aYj" = ( +"aYh" = ( /obj/machinery/button/remote/blast_door{ id = "mopinator"; name = "Custodial Garage"; @@ -29554,7 +29376,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aYk" = ( +"aYi" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29566,7 +29388,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aYl" = ( +"aYj" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 0; pixel_y = -32 @@ -29578,7 +29400,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aYm" = ( +"aYk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -29591,7 +29413,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aYn" = ( +"aYl" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29611,7 +29433,7 @@ /mob/living/bot/secbot/beepsky, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aYo" = ( +"aYm" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29624,7 +29446,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aYp" = ( +"aYn" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29636,7 +29458,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aYq" = ( +"aYo" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29648,20 +29470,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aYr" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway"; - req_one_access = null - }, -/turf/simulated/floor/tiled, -/area/engineering/foyer) -"aYs" = ( +"aYq" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29673,7 +29482,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aYt" = ( +"aYr" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29681,7 +29490,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aYu" = ( +"aYs" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -29693,7 +29502,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aYv" = ( +"aYt" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -29704,31 +29513,31 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aYw" = ( +"aYu" = ( /obj/machinery/ai_status_display{ pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aYx" = ( +"aYv" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aYy" = ( -/obj/machinery/camera/network/civilian_main{ +"aYw" = ( +/obj/machinery/camera/network/civilian_west{ c_tag = "Port Corridor - Camera 1"; dir = 1 }, /obj/machinery/light, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aYz" = ( +"aYx" = ( /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aYA" = ( +"aYy" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -29743,23 +29552,23 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aYB" = ( +"aYz" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aYC" = ( +"aYA" = ( /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aYD" = ( +"aYB" = ( /obj/item/device/radio/intercom{ pixel_y = -32 }, /obj/machinery/light, -/obj/machinery/camera/network/civilian_main{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Central Corridor - Security Entrance"; dir = 1 }, @@ -29769,14 +29578,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aYE" = ( +"aYC" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aYF" = ( +"aYD" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -29787,7 +29596,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aYG" = ( +"aYE" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -29806,20 +29615,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aYH" = ( +"aYF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aYI" = ( +"aYG" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aYJ" = ( +"aYH" = ( /obj/machinery/door/airlock/glass, /obj/structure/disposalpipe/segment{ dir = 4 @@ -29829,14 +29638,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYK" = ( +"aYI" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYL" = ( +"aYJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29846,14 +29655,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYM" = ( +"aYK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/light, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYN" = ( +"aYL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29867,7 +29676,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYO" = ( +"aYM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29877,7 +29686,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYP" = ( +"aYN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29887,7 +29696,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYQ" = ( +"aYO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29896,7 +29705,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYR" = ( +"aYP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29908,7 +29717,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYS" = ( +"aYQ" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j1"; dir = 4 @@ -29918,7 +29727,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYT" = ( +"aYR" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -29927,7 +29736,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYU" = ( +"aYS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29940,7 +29749,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYV" = ( +"aYT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29950,7 +29759,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYW" = ( +"aYU" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -29964,7 +29773,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYX" = ( +"aYV" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -29982,7 +29791,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYY" = ( +"aYW" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, @@ -29997,7 +29806,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aYZ" = ( +"aYX" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -30009,7 +29818,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aZa" = ( +"aYY" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -30020,7 +29829,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aZb" = ( +"aYZ" = ( /obj/effect/decal/cleanable/generic, /obj/structure/cable{ d1 = 4; @@ -30032,7 +29841,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aZc" = ( +"aZa" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -30046,7 +29855,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aZd" = ( +"aZb" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -30058,7 +29867,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aZe" = ( +"aZc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -30073,7 +29882,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aZf" = ( +"aZd" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -30086,7 +29895,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"aZg" = ( +"aZe" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -30104,7 +29913,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"aZh" = ( +"aZf" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -30112,7 +29921,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aZi" = ( +"aZg" = ( /obj/machinery/door/window/brigdoor{ base_state = "rightsecure"; dir = 4; @@ -30122,13 +29931,13 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aZj" = ( +"aZh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aZk" = ( +"aZi" = ( /obj/machinery/photocopier, /obj/machinery/status_display{ density = 0; @@ -30138,7 +29947,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aZl" = ( +"aZj" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -30150,7 +29959,7 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aZm" = ( +"aZk" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -30158,7 +29967,7 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aZn" = ( +"aZl" = ( /obj/machinery/requests_console{ announcementConsole = 1; department = "Bridge"; @@ -30173,11 +29982,11 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aZo" = ( +"aZm" = ( /obj/machinery/lapvend, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aZp" = ( +"aZn" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -30187,14 +29996,14 @@ /obj/machinery/light, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aZq" = ( +"aZo" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aZr" = ( +"aZp" = ( /obj/structure/window/reinforced, /obj/structure/cryofeed{ icon_state = "cryo_rear"; @@ -30202,7 +30011,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/cryo) -"aZs" = ( +"aZq" = ( /obj/structure/window/reinforced, /obj/machinery/cryopod{ icon_state = "body_scanner_0"; @@ -30210,7 +30019,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/cryo) -"aZt" = ( +"aZr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -30221,7 +30030,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"aZu" = ( +"aZs" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -30230,13 +30039,13 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"aZv" = ( +"aZt" = ( /turf/simulated/open, /area/turbolift/ai_station) -"aZw" = ( +"aZu" = ( /turf/simulated/wall/r_wall, /area/maintenance/maintcentral) -"aZx" = ( +"aZv" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -30247,7 +30056,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aZy" = ( +"aZw" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -30257,19 +30066,19 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"aZz" = ( +"aZx" = ( /obj/machinery/camera/network/engineering{ c_tag = "Engineering - Janitor"; dir = 1 }, /turf/simulated/floor/tiled, /area/janitor) -"aZA" = ( +"aZy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/janitor) -"aZB" = ( +"aZz" = ( /obj/structure/closet/crate/trashcart, /obj/machinery/requests_console{ department = "Janitorial"; @@ -30279,12 +30088,12 @@ /obj/item/weapon/storage/bag/trash, /turf/simulated/floor/tiled, /area/janitor) -"aZC" = ( +"aZA" = ( /obj/machinery/vending/coffee, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/janitor) -"aZD" = ( +"aZB" = ( /obj/machinery/vending/cigarette, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/light{ @@ -30294,10 +30103,10 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/janitor) -"aZE" = ( +"aZC" = ( /turf/simulated/wall, /area/janitor) -"aZF" = ( +"aZD" = ( /obj/machinery/newscaster{ layer = 3.3; pixel_x = 0; @@ -30305,12 +30114,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aZG" = ( +"aZE" = ( /obj/effect/floor_decal/corner/yellow, /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aZH" = ( +"aZF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/yellow{ @@ -30324,7 +30133,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aZI" = ( +"aZG" = ( /obj/item/device/radio/intercom{ pixel_y = -32 }, @@ -30334,17 +30143,17 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aZJ" = ( +"aZH" = ( /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aZK" = ( +"aZI" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aZL" = ( +"aZJ" = ( /obj/machinery/atm{ pixel_y = -32 }, @@ -30353,12 +30162,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aZM" = ( +"aZK" = ( /obj/machinery/vending/cigarette, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aZN" = ( +"aZL" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -30374,10 +30183,10 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/port) -"aZO" = ( +"aZM" = ( /turf/simulated/wall/r_wall, /area/assembly/robotics) -"aZP" = ( +"aZN" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -30385,7 +30194,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aZQ" = ( +"aZO" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -30397,7 +30206,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aZR" = ( +"aZP" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -30405,10 +30214,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aZS" = ( +"aZQ" = ( /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) -"aZT" = ( +"aZR" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -30416,7 +30225,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aZU" = ( +"aZS" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -30429,17 +30238,17 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aZV" = ( +"aZT" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/lime{ dir = 6 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aZW" = ( +"aZU" = ( /turf/simulated/wall, /area/storage/emergency) -"aZX" = ( +"aZV" = ( /obj/machinery/door/airlock{ name = "Starboard Emergency Storage"; req_one_access = null @@ -30452,10 +30261,10 @@ }, /turf/simulated/floor/plating, /area/storage/emergency) -"aZY" = ( +"aZW" = ( /turf/simulated/wall, /area/medical/surgeryprep) -"aZZ" = ( +"aZX" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -30469,7 +30278,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/surgeryprep) -"baa" = ( +"aZY" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -30479,7 +30288,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/surgeryprep) -"bab" = ( +"aZZ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -30493,7 +30302,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/surgeryprep) -"bac" = ( +"baa" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -30502,11 +30311,11 @@ /obj/machinery/vending/coffee, /turf/simulated/floor/tiled, /area/medical/icu) -"bad" = ( +"bab" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/medical/icu) -"bae" = ( +"bac" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -30514,10 +30323,10 @@ /obj/machinery/vending/cigarette, /turf/simulated/floor/tiled, /area/medical/icu) -"baf" = ( +"bad" = ( /turf/simulated/wall, /area/medical/icu) -"bag" = ( +"bae" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -30539,50 +30348,50 @@ }, /turf/simulated/floor/plating, /area/medical/reception) +"baf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 1; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/medical/reception) +"bag" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 1; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/medical/reception) "bah" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 1; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/reception) -"bai" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 1; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/reception) -"baj" = ( /turf/simulated/wall, /area/medical/reception) -"bak" = ( +"bai" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -30605,7 +30414,7 @@ }, /turf/simulated/floor/plating, /area/medical/reception) -"bal" = ( +"baj" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ density = 0; @@ -30622,7 +30431,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bam" = ( +"bak" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ density = 0; @@ -30634,7 +30443,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"ban" = ( +"bal" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -30660,7 +30469,7 @@ }, /turf/simulated/floor/plating, /area/medical/reception) -"bao" = ( +"bam" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -30673,7 +30482,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bap" = ( +"ban" = ( /obj/machinery/power/terminal{ dir = 4 }, @@ -30697,7 +30506,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"baq" = ( +"bao" = ( /obj/machinery/power/smes/buildable{ charge = 0; RCon_tag = "Substation - \[F.3] Command" @@ -30709,13 +30518,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"bar" = ( +"bap" = ( /obj/machinery/newscaster{ pixel_x = -30 }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bas" = ( +"baq" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -30723,34 +30532,34 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bat" = ( +"bar" = ( /obj/structure/table/wood, /obj/machinery/computer/skills, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bau" = ( +"bas" = ( /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bav" = ( +"bat" = ( /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"baw" = ( +"bau" = ( /obj/machinery/light_switch{ pixel_x = 32 }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"bax" = ( +"bav" = ( /turf/simulated/wall, /area/bridge/meeting_room) -"bay" = ( +"baw" = ( /obj/machinery/door/airlock{ name = "Restroom" }, /turf/simulated/floor/tiled/freezer, /area/bridge/meeting_room) -"baz" = ( +"bax" = ( /obj/structure/disposalpipe/junction{ dir = 1; icon_state = "pipe-j1" @@ -30764,7 +30573,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"baA" = ( +"bay" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -30787,7 +30596,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"baB" = ( +"baz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -30808,7 +30617,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"baC" = ( +"baA" = ( /obj/machinery/door/airlock/command{ name = "Cryogenic Storage"; req_access = list(19) @@ -30830,7 +30639,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/cryo) -"baD" = ( +"baB" = ( /obj/machinery/light_switch{ pixel_x = -24; pixel_y = 32 @@ -30851,7 +30660,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"baE" = ( +"baC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -30869,7 +30678,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"baF" = ( +"baD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -30883,15 +30692,15 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"baG" = ( +"baE" = ( /obj/structure/closet/secure_closet/personal/cabinet, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"baH" = ( +"baF" = ( /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"baI" = ( +"baG" = ( /obj/machinery/door/airlock/engineering{ name = "Custodial Closet"; req_access = list(26) @@ -30900,10 +30709,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/janitor) -"baJ" = ( +"baH" = ( /turf/simulated/wall, /area/storage/tech) -"baK" = ( +"baI" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering{ name = "Tech Storage"; @@ -30918,10 +30727,10 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"baL" = ( +"baJ" = ( /turf/simulated/wall, /area/maintenance/research_port) -"baM" = ( +"baK" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -30932,17 +30741,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/research_port) -"baN" = ( +"baL" = ( /turf/simulated/wall, /area/assembly/robotics) -"baO" = ( +"baM" = ( /obj/structure/morgue, /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 }, /area/assembly/robotics) -"baP" = ( +"baN" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Robotics Morgue" }, @@ -30954,7 +30763,7 @@ temperature = 278 }, /area/assembly/robotics) -"baQ" = ( +"baO" = ( /obj/structure/sign/nosmoking_1{ pixel_y = 32 }, @@ -30963,13 +30772,13 @@ temperature = 278 }, /area/assembly/robotics) -"baR" = ( +"baP" = ( /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 }, /area/assembly/robotics) -"baS" = ( +"baQ" = ( /obj/machinery/door/airlock/research{ desc = "It opens and closes. Leads to the Robotics Morgue"; name = "Robotics Morgue"; @@ -30982,7 +30791,7 @@ temperature = 278 }, /area/assembly/robotics) -"baT" = ( +"baR" = ( /obj/machinery/button/windowtint{ id = "CybGlass"; pixel_x = 0; @@ -30990,7 +30799,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"baU" = ( +"baS" = ( /obj/machinery/computer/operating{ name = "Robotics Operating Computer" }, @@ -31003,7 +30812,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"baV" = ( +"baT" = ( /obj/machinery/optable{ desc = "Used for advanced medical procedures, such as removing brains for cyborgification. Also used to repair unlawed synthetics."; name = "Robotics Operating Table" @@ -31017,7 +30826,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"baW" = ( +"baU" = ( /obj/structure/table/standard, /obj/item/weapon/bonegel, /obj/item/weapon/bonesetter, @@ -31038,7 +30847,7 @@ /obj/item/weapon/hemostat, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"baX" = ( +"baV" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -31047,7 +30856,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"baY" = ( +"baW" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -31058,7 +30867,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"baZ" = ( +"baX" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/loading{ icon_state = "loadingarea"; @@ -31066,7 +30875,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bba" = ( +"baY" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -31081,16 +30890,16 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bbb" = ( +"baZ" = ( /turf/simulated/floor/plating, /area/turbolift/main_station) -"bbc" = ( +"bba" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bbd" = ( +"bbb" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -31104,7 +30913,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bbe" = ( +"bbc" = ( /obj/machinery/light_switch{ pixel_y = 28 }, @@ -31113,7 +30922,7 @@ }, /turf/simulated/floor/plating, /area/storage/emergency) -"bbf" = ( +"bbd" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -31121,7 +30930,7 @@ }, /turf/simulated/floor/plating, /area/storage/emergency) -"bbg" = ( +"bbe" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -31138,11 +30947,11 @@ }, /turf/simulated/floor/plating, /area/storage/emergency) -"bbh" = ( +"bbf" = ( /obj/structure/table/rack, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bbi" = ( +"bbg" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; @@ -31150,7 +30959,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bbj" = ( +"bbh" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/effect/floor_decal/corner/lime{ dir = 6 @@ -31161,12 +30970,12 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bbk" = ( +"bbi" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/vending/snack, /turf/simulated/floor/tiled, /area/medical/icu) -"bbl" = ( +"bbj" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -31175,7 +30984,7 @@ }, /turf/simulated/floor/tiled, /area/medical/icu) -"bbm" = ( +"bbk" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -31200,7 +31009,7 @@ }, /turf/simulated/floor/plating, /area/medical/icu) -"bbn" = ( +"bbl" = ( /obj/structure/window/reinforced, /obj/structure/disposaloutlet{ icon_state = "outlet"; @@ -31209,7 +31018,7 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/plating, /area/medical/reception) -"bbo" = ( +"bbm" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/door/window{ @@ -31226,13 +31035,13 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bbp" = ( +"bbn" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/medical/reception) -"bbq" = ( +"bbo" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/computer/crew, /obj/machinery/ringer{ @@ -31244,14 +31053,14 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bbr" = ( +"bbp" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/white/diagonal, /obj/item/weapon/folder/white, /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/medical/reception) -"bbs" = ( +"bbq" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -31261,11 +31070,11 @@ /obj/machinery/computer/med_data/laptop, /turf/simulated/floor/tiled, /area/medical/reception) -"bbt" = ( +"bbr" = ( /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbu" = ( +"bbs" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 5 @@ -31273,18 +31082,18 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbv" = ( +"bbt" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbw" = ( +"bbu" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbx" = ( +"bbv" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -31300,17 +31109,17 @@ }, /turf/simulated/floor/plating, /area/medical/reception) -"bby" = ( +"bbw" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/vending/snack, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbz" = ( +"bbx" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/vending/coffee, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbA" = ( +"bby" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/disposal, /obj/machinery/alarm{ @@ -31319,7 +31128,7 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbB" = ( +"bbz" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/power/apc{ dir = 1; @@ -31338,7 +31147,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbC" = ( +"bbA" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/bed/chair, /obj/machinery/light{ @@ -31349,7 +31158,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbD" = ( +"bbB" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/bed/chair, /obj/structure/noticeboard{ @@ -31358,7 +31167,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbE" = ( +"bbC" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/bed/chair, /obj/machinery/newscaster{ @@ -31366,7 +31175,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbF" = ( +"bbD" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/table/standard, /obj/machinery/firealarm/east, @@ -31376,7 +31185,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbG" = ( +"bbE" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -31393,7 +31202,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bbH" = ( +"bbF" = ( /obj/machinery/door/airlock/engineering{ name = "Command Substation"; req_one_access = list(11,24) @@ -31406,7 +31215,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"bbI" = ( +"bbG" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -31419,13 +31228,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"bbJ" = ( +"bbH" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "\[F.3] Command Substation Bypass" }, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"bbK" = ( +"bbI" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -31433,7 +31242,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bbL" = ( +"bbJ" = ( /obj/structure/bed/chair/comfy/brown{ dir = 4 }, @@ -31444,13 +31253,13 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bbM" = ( +"bbK" = ( /obj/structure/table/wood, /obj/item/weapon/folder/blue, /obj/item/weapon/stamp/hop, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bbN" = ( +"bbL" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -31467,7 +31276,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bbO" = ( +"bbM" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -31486,7 +31295,7 @@ /mob/living/simple_animal/corgi/Ian, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"bbP" = ( +"bbN" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Restroom"; dir = 4 @@ -31499,7 +31308,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/bridge/meeting_room) -"bbQ" = ( +"bbO" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -31512,20 +31321,20 @@ }, /turf/simulated/floor/tiled/freezer, /area/bridge/meeting_room) -"bbR" = ( +"bbP" = ( /obj/structure/table/wood, /turf/simulated/floor/wood, /area/bridge) -"bbS" = ( +"bbQ" = ( /obj/machinery/photocopier, /turf/simulated/floor/carpet, /area/bridge) -"bbT" = ( +"bbR" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/wood, /area/bridge) -"bbU" = ( +"bbS" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -31541,7 +31350,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"bbV" = ( +"bbT" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/newscaster/security_unit{ pixel_x = -32 @@ -31553,12 +31362,12 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"bbW" = ( +"bbU" = ( /obj/machinery/hologram/holopad, /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"bbX" = ( +"bbV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/item/device/radio/intercom{ dir = 8; @@ -31567,7 +31376,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"bbY" = ( +"bbW" = ( /obj/structure/janitorialcart, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light/small{ @@ -31575,21 +31384,21 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bbZ" = ( +"bbX" = ( /obj/structure/sink/kitchen{ pixel_y = 32 }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bca" = ( +"bbY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/janitor) -"bcb" = ( +"bbZ" = ( /turf/simulated/floor/tiled/dark, /area/janitor) -"bcc" = ( +"bca" = ( /obj/item/device/radio/intercom{ desc = "Talk... listen through this."; name = "Station Intercom (Brig Radio)"; @@ -31599,7 +31408,7 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bcd" = ( +"bcb" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/weapon/reagent_containers/glass/bucket, /obj/effect/floor_decal/industrial/outline/yellow, @@ -31608,14 +31417,14 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bce" = ( +"bcc" = ( /turf/simulated/wall/r_wall, /area/storage/tech) -"bcf" = ( +"bcd" = ( /obj/machinery/vending/assist, /turf/simulated/floor/plating, /area/storage/tech) -"bcg" = ( +"bce" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -31631,7 +31440,7 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"bch" = ( +"bcf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -31643,13 +31452,13 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"bci" = ( +"bcg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plating, /area/storage/tech) -"bcj" = ( +"bch" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -31661,7 +31470,7 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"bck" = ( +"bci" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -31672,7 +31481,7 @@ /obj/item/device/analyzer, /turf/simulated/floor/plating, /area/storage/tech) -"bcl" = ( +"bcj" = ( /obj/machinery/alarm/cold{ dir = 1; pixel_y = -22 @@ -31682,7 +31491,7 @@ temperature = 278 }, /area/assembly/robotics) -"bcm" = ( +"bck" = ( /obj/item/device/radio/intercom{ pixel_y = -27 }, @@ -31691,7 +31500,7 @@ temperature = 278 }, /area/assembly/robotics) -"bcn" = ( +"bcl" = ( /obj/structure/morgue{ icon_state = "morgue1"; dir = 8 @@ -31701,7 +31510,7 @@ temperature = 278 }, /area/assembly/robotics) -"bco" = ( +"bcm" = ( /obj/structure/sink{ icon_state = "sink"; dir = 8; @@ -31710,14 +31519,14 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bcp" = ( +"bcn" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bcq" = ( +"bco" = ( /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bcr" = ( +"bcp" = ( /obj/structure/table/standard, /obj/item/device/mmi, /obj/item/device/mmi, @@ -31727,7 +31536,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bcs" = ( +"bcq" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ dir = 4; @@ -31744,14 +31553,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/assembly/robotics) -"bct" = ( +"bcr" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bcu" = ( +"bcs" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -31764,7 +31573,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bcv" = ( +"bct" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -31774,7 +31583,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bcw" = ( +"bcu" = ( /obj/structure/sign/directions/engineering{ dir = 1; icon_state = "direction_eng"; @@ -31813,24 +31622,24 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bcx" = ( +"bcv" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bcy" = ( +"bcw" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, /area/turbolift/main_station) -"bcz" = ( +"bcx" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bcA" = ( +"bcy" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -31842,22 +31651,22 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bcB" = ( +"bcz" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bcC" = ( +"bcA" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, /area/storage/emergency) -"bcD" = ( +"bcB" = ( /obj/machinery/space_heater, /obj/machinery/light/small, /turf/simulated/floor/plating, /area/storage/emergency) -"bcE" = ( +"bcC" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -31872,13 +31681,13 @@ /obj/item/weapon/extinguisher, /turf/simulated/floor/plating, /area/storage/emergency) -"bcF" = ( +"bcD" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bcG" = ( +"bcE" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -31886,10 +31695,10 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bcH" = ( +"bcF" = ( /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bcI" = ( +"bcG" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, @@ -31902,12 +31711,12 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bcJ" = ( +"bcH" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/vending/cola, /turf/simulated/floor/tiled, /area/medical/icu) -"bcK" = ( +"bcI" = ( /obj/structure/table/standard, /obj/item/weapon/material/ashtray/plastic, /obj/machinery/light/small{ @@ -31917,7 +31726,7 @@ /obj/machinery/recharger, /turf/simulated/floor/tiled, /area/medical/icu) -"bcL" = ( +"bcJ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -31938,7 +31747,7 @@ }, /turf/simulated/floor/plating, /area/medical/icu) -"bcM" = ( +"bcK" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/white/diagonal, /obj/structure/disposalpipe/segment, @@ -31960,11 +31769,11 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bcN" = ( +"bcL" = ( /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/medical/reception) -"bcO" = ( +"bcM" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/structure/disposalpipe/segment{ dir = 1; @@ -31972,14 +31781,14 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bcP" = ( +"bcN" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/medical/reception) -"bcQ" = ( +"bcO" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, @@ -31989,7 +31798,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bcR" = ( +"bcP" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -32018,7 +31827,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bcS" = ( +"bcQ" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -32029,7 +31838,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bcT" = ( +"bcR" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, @@ -32044,7 +31853,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bcU" = ( +"bcS" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 9 @@ -32060,7 +31869,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bcV" = ( +"bcT" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -32068,7 +31877,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bcW" = ( +"bcU" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/door/firedoor, /obj/structure/cable/green{ @@ -32078,7 +31887,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bcX" = ( +"bcV" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/cable/green{ d1 = 4; @@ -32087,7 +31896,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bcY" = ( +"bcW" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/cable/green{ d1 = 4; @@ -32097,7 +31906,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bcZ" = ( +"bcX" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/cable/green{ d1 = 4; @@ -32107,7 +31916,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bda" = ( +"bcY" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -32116,11 +31925,11 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bdb" = ( +"bcZ" = ( /obj/effect/floor_decal/corner/green/diagonal, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bdc" = ( +"bda" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/door/blast/shutters{ @@ -32137,7 +31946,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bdd" = ( +"bdb" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -32149,7 +31958,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bde" = ( +"bdc" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Head of Personnel's Office"; dir = 1 @@ -32161,7 +31970,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bdf" = ( +"bdd" = ( /obj/structure/bed/chair/comfy/brown{ dir = 4 }, @@ -32173,7 +31982,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bdg" = ( +"bde" = ( /obj/structure/table/wood, /obj/item/weapon/packageWrap, /obj/item/weapon/hand_labeler, @@ -32184,7 +31993,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bdh" = ( +"bdf" = ( /obj/machinery/button/windowtint{ id = "hop"; pixel_y = -24; @@ -32208,11 +32017,11 @@ /obj/machinery/account_database, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bdi" = ( +"bdg" = ( /obj/machinery/papershredder, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bdj" = ( +"bdh" = ( /obj/machinery/computer/security/mining, /obj/machinery/atm{ pixel_x = 32 @@ -32223,10 +32032,10 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"bdk" = ( +"bdi" = ( /turf/simulated/floor/tiled/freezer, /area/bridge/meeting_room) -"bdl" = ( +"bdj" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -32240,7 +32049,7 @@ /obj/machinery/light/small, /turf/simulated/floor/tiled/freezer, /area/bridge/meeting_room) -"bdm" = ( +"bdk" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Auxiliary Office"; dir = 4 @@ -32250,7 +32059,7 @@ }, /turf/simulated/floor/wood, /area/bridge) -"bdn" = ( +"bdl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -32260,7 +32069,7 @@ }, /turf/simulated/floor/carpet, /area/bridge) -"bdo" = ( +"bdm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -32273,7 +32082,7 @@ }, /turf/simulated/floor/wood, /area/bridge) -"bdp" = ( +"bdn" = ( /obj/machinery/door/airlock/glass_command{ id_tag = ""; name = "Auxiliary Office"; @@ -32291,7 +32100,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/wood, /area/bridge) -"bdq" = ( +"bdo" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -32313,7 +32122,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bdr" = ( +"bdp" = ( /obj/machinery/light_switch{ pixel_y = -24 }, @@ -32333,11 +32142,11 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"bds" = ( +"bdq" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"bdt" = ( +"bdr" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -32348,19 +32157,19 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"bdu" = ( +"bds" = ( /obj/machinery/light/small/emergency{ dir = 8 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bdv" = ( +"bdt" = ( /obj/structure/mopbucket, /obj/item/weapon/mop, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/janitor) -"bdw" = ( +"bdu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -32368,19 +32177,19 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bdx" = ( +"bdv" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bdy" = ( +"bdw" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/weapon/reagent_containers/glass/bucket, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/janitor) -"bdz" = ( +"bdx" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -32395,13 +32204,13 @@ }, /turf/simulated/floor/tiled, /area/storage/tech) -"bdA" = ( +"bdy" = ( /obj/machinery/camera/network/engineering{ c_tag = "Engineering - Secure Technical Storage" }, /turf/simulated/floor/tiled, /area/storage/tech) -"bdB" = ( +"bdz" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -32409,16 +32218,16 @@ }, /turf/simulated/wall/r_wall, /area/storage/tech) -"bdC" = ( +"bdA" = ( /turf/simulated/floor/plating, /area/storage/tech) -"bdD" = ( +"bdB" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/plating, /area/storage/tech) -"bdE" = ( +"bdC" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -32440,7 +32249,7 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"bdF" = ( +"bdD" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -32459,7 +32268,7 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"bdG" = ( +"bdE" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -32472,11 +32281,11 @@ /obj/item/clothing/glasses/meson, /turf/simulated/floor/plating, /area/storage/tech) -"bdH" = ( +"bdF" = ( /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bdI" = ( +"bdG" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -32494,7 +32303,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bdJ" = ( +"bdH" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -32512,7 +32321,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bdK" = ( +"bdI" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -32530,7 +32339,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bdL" = ( +"bdJ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -32544,7 +32353,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bdM" = ( +"bdK" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -32559,7 +32368,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bdN" = ( +"bdL" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -32575,7 +32384,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bdO" = ( +"bdM" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -32583,7 +32392,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bdP" = ( +"bdN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 6 @@ -32591,13 +32400,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bdQ" = ( +"bdO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bdR" = ( +"bdP" = ( /obj/structure/closet/secure_closet/medical2{ req_access = list(29) }, @@ -32610,7 +32419,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bdS" = ( +"bdQ" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ dir = 4; @@ -32623,14 +32432,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/assembly/robotics) -"bdT" = ( +"bdR" = ( /obj/machinery/light{ dir = 4; status = 0 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bdU" = ( +"bdS" = ( /obj/structure/sign/directions/evac{ dir = 4; icon_state = "direction_evac"; @@ -32653,7 +32462,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bdV" = ( +"bdT" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -32661,7 +32470,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bdW" = ( +"bdU" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -32669,10 +32478,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bdX" = ( +"bdV" = ( /turf/simulated/wall, /area/medical/surgerywing) -"bdY" = ( +"bdW" = ( /obj/machinery/door/airlock{ autoclose = 0; icon_state = "door_open"; @@ -32680,11 +32489,11 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bdZ" = ( +"bdX" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bea" = ( +"bdY" = ( /obj/structure/bed/chair/comfy/teal{ dir = 8; icon_state = "comfychair_preview" @@ -32701,7 +32510,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"beb" = ( +"bdZ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -32709,7 +32518,7 @@ }, /turf/simulated/floor/tiled, /area/medical/icu) -"bec" = ( +"bea" = ( /obj/machinery/atm{ pixel_y = -32 }, @@ -32719,13 +32528,13 @@ }, /turf/simulated/floor/tiled, /area/medical/icu) -"bed" = ( +"beb" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 }, /turf/simulated/floor/tiled, /area/medical/icu) -"bee" = ( +"bec" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -32747,7 +32556,7 @@ }, /turf/simulated/floor/plating, /area/medical/icu) -"bef" = ( +"bed" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/white/diagonal, /obj/structure/disposalpipe/segment, @@ -32755,7 +32564,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/medical/reception) -"beg" = ( +"bee" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/structure/bed/chair/office/light{ dir = 8 @@ -32763,7 +32572,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/medical/reception) -"beh" = ( +"bef" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/requests_console{ department = "Medical Bay"; @@ -32773,7 +32582,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bei" = ( +"beg" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -32781,14 +32590,14 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bej" = ( +"beh" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/medical/reception) -"bek" = ( +"bei" = ( /obj/machinery/door/window{ base_state = "left"; dir = 4; @@ -32799,7 +32608,7 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/medical/reception) -"bel" = ( +"bej" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 4 @@ -32822,7 +32631,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bem" = ( +"bek" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, @@ -32843,7 +32652,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/reception) -"ben" = ( +"bel" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 9 @@ -32864,7 +32673,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"beo" = ( +"bem" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 8 @@ -32884,7 +32693,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bep" = ( +"ben" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -32898,7 +32707,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"beq" = ( +"beo" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -32911,7 +32720,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"ber" = ( +"bep" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/bed/chair{ dir = 1 @@ -32927,7 +32736,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bes" = ( +"beq" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/bed/chair{ dir = 1 @@ -32941,7 +32750,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bet" = ( +"ber" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/bed/chair{ dir = 1 @@ -32951,14 +32760,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"beu" = ( +"bes" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bev" = ( +"bet" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/flora/pottedplant/random, /obj/item/device/radio/intercom{ @@ -32968,7 +32777,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bew" = ( +"beu" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -32987,7 +32796,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bex" = ( +"bev" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -33004,7 +32813,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bey" = ( +"bew" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -33028,7 +32837,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bez" = ( +"bex" = ( /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -33040,7 +32849,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"beA" = ( +"bey" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ req_access = list(57) @@ -33055,13 +32864,13 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hop) -"beB" = ( +"bez" = ( /obj/machinery/door/airlock{ name = "Unit 1" }, /turf/simulated/floor/tiled/freezer, /area/bridge/meeting_room) -"beC" = ( +"beA" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -33074,7 +32883,7 @@ }, /turf/simulated/floor/wood, /area/bridge) -"beD" = ( +"beB" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -33086,12 +32895,12 @@ }, /turf/simulated/floor/carpet, /area/bridge) -"beE" = ( +"beC" = ( /obj/structure/table/wood, /obj/item/weapon/folder/blue, /turf/simulated/floor/wood, /area/bridge) -"beF" = ( +"beD" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -33108,7 +32917,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"beG" = ( +"beE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_command{ id_tag = ""; @@ -33117,14 +32926,14 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"beH" = ( +"beF" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"beI" = ( +"beG" = ( /obj/machinery/disposal, /obj/machinery/camera/network/command{ c_tag = "Bridge - Command Dormitories"; @@ -33136,23 +32945,23 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"beJ" = ( +"beH" = ( /obj/structure/janitorialcart, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/janitor) -"beK" = ( +"beI" = ( /obj/structure/closet/jcloset, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/janitor) -"beL" = ( +"beJ" = ( /obj/structure/table/steel, /obj/item/watertank/janitor, /turf/simulated/floor/tiled/dark, /area/janitor) -"beM" = ( +"beK" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/mousetraps{ pixel_x = 4; @@ -33169,17 +32978,17 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"beN" = ( +"beL" = ( /obj/machinery/light/small/emergency{ dir = 8 }, /obj/structure/closet/crate/software_backup, /turf/simulated/floor/tiled, /area/storage/tech) -"beO" = ( +"beM" = ( /turf/simulated/floor/tiled, /area/storage/tech) -"beP" = ( +"beN" = ( /obj/machinery/door/airlock/highsecurity{ name = "Secure Tech Storage"; req_access = list(19,23) @@ -33187,7 +32996,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/storage/tech) -"beQ" = ( +"beO" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -33199,7 +33008,7 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"beR" = ( +"beP" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -33215,7 +33024,7 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"beS" = ( +"beQ" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -33230,7 +33039,7 @@ /obj/item/device/multitool, /turf/simulated/floor/plating, /area/storage/tech) -"beT" = ( +"beR" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -33247,7 +33056,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"beU" = ( +"beS" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -33265,23 +33074,23 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"beV" = ( +"beT" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"beW" = ( +"beU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/research_port) -"beX" = ( +"beV" = ( /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"beY" = ( +"beW" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -33296,7 +33105,7 @@ }, /turf/simulated/floor/plating, /area/assembly/robotics) -"beZ" = ( +"beX" = ( /obj/machinery/conveyor{ backwards = 4; desc = "A conveyor belt. Used to ferry synthetic bodies to the surgery lab."; @@ -33308,7 +33117,7 @@ }, /turf/simulated/floor/plating, /area/assembly/robotics) -"bfa" = ( +"beY" = ( /obj/machinery/conveyor{ backwards = 4; desc = "A conveyor belt. Used to ferry synthetic bodies to the surgery lab."; @@ -33317,7 +33126,7 @@ }, /turf/simulated/floor/plating, /area/assembly/robotics) -"bfb" = ( +"beZ" = ( /obj/structure/plasticflaps, /obj/machinery/door/firedoor, /obj/machinery/conveyor{ @@ -33328,7 +33137,7 @@ }, /turf/simulated/floor/plating, /area/assembly/robotics) -"bfc" = ( +"bfa" = ( /obj/machinery/conveyor{ backwards = 10; dir = 5; @@ -33336,19 +33145,19 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bfd" = ( +"bfb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bfe" = ( +"bfc" = ( /obj/machinery/conveyor_switch/oneway{ convdir = -1; id = "RobotSurg" }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bff" = ( +"bfd" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ dir = 4; @@ -33364,14 +33173,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/assembly/robotics) -"bfg" = ( +"bfe" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bfh" = ( +"bff" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -33389,15 +33198,15 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bfi" = ( +"bfg" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, /area/turbolift/main_station) -"bfj" = ( +"bfh" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -32 }, -/obj/machinery/camera/network/civilian_main{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Central Corridor - Camera 7"; dir = 4 }, @@ -33407,7 +33216,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bfk" = ( +"bfi" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -33421,7 +33230,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bfl" = ( +"bfj" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -33430,7 +33239,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bfm" = ( +"bfk" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -33447,7 +33256,7 @@ }, /turf/simulated/floor/plating, /area/medical/surgerywing) -"bfn" = ( +"bfl" = ( /obj/structure/table/standard, /obj/item/weapon/scalpel, /obj/item/weapon/circular_saw{ @@ -33459,7 +33268,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bfo" = ( +"bfm" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 5 @@ -33470,7 +33279,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bfp" = ( +"bfn" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 5 @@ -33483,7 +33292,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bfq" = ( +"bfo" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 5 @@ -33498,7 +33307,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bfr" = ( +"bfp" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 5 @@ -33523,7 +33332,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bfs" = ( +"bfq" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 5 @@ -33531,7 +33340,7 @@ /obj/structure/table/rack, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bft" = ( +"bfr" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -33540,11 +33349,11 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bfu" = ( +"bfs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bfv" = ( +"bft" = ( /obj/structure/bed/chair/comfy/teal{ dir = 8; icon_state = "comfychair_preview" @@ -33554,7 +33363,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bfw" = ( +"bfu" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -33569,7 +33378,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/medical/reception) -"bfx" = ( +"bfv" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -33583,7 +33392,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/reception) -"bfy" = ( +"bfw" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/light{ dir = 8 @@ -33591,7 +33400,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/medical/reception) -"bfz" = ( +"bfx" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -33621,7 +33430,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bfA" = ( +"bfy" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -33636,20 +33445,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bfB" = ( +"bfz" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bfC" = ( +"bfA" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bfD" = ( +"bfB" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -33661,7 +33470,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bfE" = ( +"bfC" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -33675,7 +33484,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/reception) -"bfF" = ( +"bfD" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -33689,7 +33498,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/reception) -"bfG" = ( +"bfE" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -33703,7 +33512,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/reception) -"bfH" = ( +"bfF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/multi_tile/glass{ id_tag = "waiting_door"; @@ -33713,12 +33522,12 @@ /obj/effect/floor_decal/corner/green/diagonal, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bfI" = ( +"bfG" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/green/diagonal, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bfJ" = ( +"bfH" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -33736,13 +33545,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/reception) -"bfK" = ( +"bfI" = ( /turf/simulated/wall/r_wall, /area/medical/reception) -"bfL" = ( +"bfJ" = ( /turf/simulated/wall/r_wall, /area/medical/chemistry) -"bfM" = ( +"bfK" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ density = 0; @@ -33758,7 +33567,7 @@ }, /turf/simulated/floor/plating, /area/medical/chemistry) -"bfN" = ( +"bfL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -33777,7 +33586,7 @@ }, /turf/simulated/wall/r_wall, /area/medical/chemistry) -"bfO" = ( +"bfM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; @@ -33795,7 +33604,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bfP" = ( +"bfN" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -33812,20 +33621,20 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bfQ" = ( +"bfO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bfR" = ( +"bfP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bfS" = ( +"bfQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -33833,7 +33642,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bfT" = ( +"bfR" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -33844,24 +33653,24 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bfU" = ( +"bfS" = ( /obj/machinery/light/small, /turf/simulated/floor/tiled/freezer, /area/bridge/meeting_room) -"bfV" = ( +"bfT" = ( /obj/structure/toilet{ icon_state = "toilet00"; dir = 8 }, /turf/simulated/floor/tiled/freezer, /area/bridge/meeting_room) -"bfW" = ( +"bfU" = ( /obj/machinery/newscaster{ pixel_x = -30 }, /turf/simulated/floor/wood, /area/bridge) -"bfX" = ( +"bfV" = ( /obj/machinery/requests_console{ announcementConsole = 1; department = "Bridge"; @@ -33871,13 +33680,13 @@ }, /turf/simulated/floor/carpet, /area/bridge) -"bfY" = ( +"bfW" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/simulated/floor/wood, /area/bridge) -"bfZ" = ( +"bfX" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 4; @@ -33897,7 +33706,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/bridge) -"bga" = ( +"bfY" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 4; @@ -33910,7 +33719,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/bridge) -"bgb" = ( +"bfZ" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 4; @@ -33922,7 +33731,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/bridge) -"bgc" = ( +"bga" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ req_access = list(19) @@ -33937,7 +33746,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/cryo) -"bgd" = ( +"bgb" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/button/remote/airlock{ id = "bunker1"; @@ -33948,7 +33757,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bge" = ( +"bgc" = ( /obj/machinery/button/remote/airlock{ id = "bunker1"; name = "Bunker Safety Bolts"; @@ -33961,7 +33770,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bgf" = ( +"bgd" = ( /obj/structure/closet, /obj/item/weapon/bikehorn, /obj/effect/floor_decal/industrial/warning{ @@ -33969,14 +33778,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bgg" = ( +"bge" = ( /obj/structure/ladder{ icon_state = "ladder01"; pixel_y = 16 }, /turf/simulated/open, /area/maintenance/maintcentral) -"bgh" = ( +"bgf" = ( /obj/structure/mopbucket, /obj/item/weapon/mop, /obj/effect/floor_decal/industrial/outline/yellow, @@ -33985,7 +33794,7 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bgi" = ( +"bgg" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/lights/mixed{ pixel_x = 4; @@ -34009,7 +33818,7 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bgj" = ( +"bgh" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -34024,11 +33833,11 @@ }, /turf/simulated/floor/tiled, /area/storage/tech) -"bgk" = ( +"bgi" = ( /obj/structure/sign/securearea, /turf/simulated/wall/r_wall, /area/storage/tech) -"bgl" = ( +"bgj" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -34049,7 +33858,7 @@ /obj/item/weapon/circuitboard/arcade/orion_trail, /turf/simulated/floor/plating, /area/storage/tech) -"bgm" = ( +"bgk" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -34066,7 +33875,7 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"bgn" = ( +"bgl" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -34078,7 +33887,7 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"bgo" = ( +"bgm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -34091,7 +33900,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bgp" = ( +"bgn" = ( /obj/machinery/conveyor{ backwards = 1; id = "RobotSurg" @@ -34100,6 +33909,37 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/assembly/robotics) +"bgo" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "CybGlass" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "CybGlass" + }, +/obj/structure/window/reinforced/polarized{ + id = "CybGlass" + }, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "CybGlass" + }, +/turf/simulated/floor/plating, +/area/assembly/robotics) +"bgp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/research{ + desc = "It opens and closes. "; + name = "Cyborgification Bay"; + req_access = list(29) + }, +/turf/simulated/floor/tiled/white, +/area/assembly/robotics) "bgq" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -34114,40 +33954,9 @@ id = "CybGlass" }, /obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "CybGlass" - }, /turf/simulated/floor/plating, /area/assembly/robotics) "bgr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/research{ - desc = "It opens and closes. "; - name = "Cyborgification Bay"; - req_access = list(29) - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"bgs" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CybGlass" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CybGlass" - }, -/obj/structure/window/reinforced/polarized{ - id = "CybGlass" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/assembly/robotics) -"bgt" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ dir = 4; @@ -34160,13 +33969,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/assembly/robotics) -"bgu" = ( +"bgs" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bgv" = ( +"bgt" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -34177,7 +33986,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bgw" = ( +"bgu" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/loading{ icon_state = "loadingarea"; @@ -34185,18 +33994,18 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bgx" = ( +"bgv" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bgy" = ( +"bgw" = ( /obj/turbolift_map_holder/aurora/civilian, /turf/simulated/floor/plating, /area/turbolift/main_station) -"bgz" = ( +"bgx" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -34212,35 +34021,35 @@ }, /turf/simulated/floor/plating, /area/medical/surgerywing) -"bgA" = ( +"bgy" = ( /obj/structure/table/standard, /obj/item/weapon/cautery, /obj/item/weapon/hemostat, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bgB" = ( +"bgz" = ( /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bgC" = ( +"bgA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bgD" = ( +"bgB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bgE" = ( +"bgC" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bgF" = ( +"bgD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -34249,7 +34058,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bgG" = ( +"bgE" = ( /obj/structure/bed/chair/comfy/teal{ dir = 4; icon_state = "comfychair_preview" @@ -34260,7 +34069,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bgH" = ( +"bgF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -34269,7 +34078,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bgI" = ( +"bgG" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -34279,7 +34088,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bgJ" = ( +"bgH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -34288,7 +34097,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bgK" = ( +"bgI" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -34296,7 +34105,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bgL" = ( +"bgJ" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 9 @@ -34306,7 +34115,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bgM" = ( +"bgK" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -34314,7 +34123,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bgN" = ( +"bgL" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -34322,7 +34131,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bgO" = ( +"bgM" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -34336,7 +34145,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bgP" = ( +"bgN" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -34348,7 +34157,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bgQ" = ( +"bgO" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -34365,7 +34174,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bgR" = ( +"bgP" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_medical{ name = "Reception Desk"; @@ -34380,7 +34189,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bgS" = ( +"bgQ" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -34390,14 +34199,14 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bgT" = ( +"bgR" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/medical/reception) -"bgU" = ( +"bgS" = ( /obj/structure/table/standard, /obj/machinery/door/window{ base_state = "left"; @@ -34411,7 +34220,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/medical/reception) -"bgV" = ( +"bgT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -34424,22 +34233,22 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bgW" = ( +"bgU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bgX" = ( +"bgV" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bgY" = ( +"bgW" = ( /turf/simulated/floor/tiled/white, /area/medical/reception) -"bgZ" = ( +"bgX" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; @@ -34447,7 +34256,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bha" = ( +"bgY" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 5 @@ -34457,7 +34266,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bhb" = ( +"bgZ" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 5 @@ -34467,7 +34276,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bhc" = ( +"bha" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 5 @@ -34478,7 +34287,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bhd" = ( +"bhb" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 5 @@ -34492,7 +34301,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bhe" = ( +"bhc" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 5 @@ -34505,7 +34314,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bhf" = ( +"bhd" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 5 @@ -34518,7 +34327,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bhg" = ( +"bhe" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 5 @@ -34528,7 +34337,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bhh" = ( +"bhf" = ( /obj/machinery/door/firedoor, /obj/structure/table/reinforced, /obj/structure/noticeboard{ @@ -34564,7 +34373,7 @@ }, /turf/simulated/floor/tiled, /area/medical/chemistry) -"bhi" = ( +"bhg" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -34582,21 +34391,21 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bhj" = ( +"bhh" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bhk" = ( +"bhi" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/wall/r_wall, /area/medical/chemistry) -"bhl" = ( +"bhj" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -34612,12 +34421,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bhm" = ( +"bhk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bhn" = ( +"bhl" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(19) }, @@ -34631,7 +34440,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"bho" = ( +"bhm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -34647,7 +34456,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bhp" = ( +"bhn" = ( /obj/machinery/door/airlock/glass_command{ id_tag = ""; name = "Bridge"; @@ -34655,7 +34464,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bhq" = ( +"bho" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/emergency{ @@ -34665,22 +34474,22 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bhr" = ( +"bhp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bhs" = ( +"bhq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bht" = ( +"bhr" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bhu" = ( +"bhs" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/highsecurity{ id_tag = "bunker1"; @@ -34689,7 +34498,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bhv" = ( +"bht" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -34697,13 +34506,13 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bhw" = ( +"bhu" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bhx" = ( +"bhv" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -34712,29 +34521,29 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bhy" = ( +"bhw" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/vending/vendors, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/janitor) -"bhz" = ( +"bhx" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/vending/tool, /turf/simulated/floor/tiled/dark, /area/janitor) -"bhA" = ( +"bhy" = ( /obj/structure/closet/l3closet/janitor, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/janitor) -"bhB" = ( +"bhz" = ( /obj/item/weapon/aicard, /obj/item/weapon/aiModule/reset, /obj/structure/table/steel, /turf/simulated/floor/plating, /area/storage/tech) -"bhC" = ( +"bhA" = ( /obj/item/weapon/screwdriver{ pixel_y = 16 }, @@ -34743,7 +34552,7 @@ /obj/machinery/light/small, /turf/simulated/floor/plating, /area/storage/tech) -"bhD" = ( +"bhB" = ( /obj/item/stack/cable_coil{ pixel_x = -3; pixel_y = 3 @@ -34756,7 +34565,7 @@ /obj/structure/table/steel, /turf/simulated/floor/plating, /area/storage/tech) -"bhE" = ( +"bhC" = ( /obj/item/weapon/module/power_control, /obj/item/weapon/airlock_electronics, /obj/structure/table/steel, @@ -34766,7 +34575,7 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"bhF" = ( +"bhD" = ( /obj/machinery/cell_charger{ pixel_y = 5 }, @@ -34774,7 +34583,7 @@ /obj/structure/table/steel, /turf/simulated/floor/plating, /area/storage/tech) -"bhG" = ( +"bhE" = ( /obj/item/device/flashlight{ pixel_x = 1; pixel_y = 5 @@ -34793,7 +34602,7 @@ /obj/machinery/light/small, /turf/simulated/floor/plating, /area/storage/tech) -"bhH" = ( +"bhF" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -34805,7 +34614,7 @@ /obj/item/weapon/stock_parts/capacitor, /turf/simulated/floor/plating, /area/storage/tech) -"bhI" = ( +"bhG" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -34827,14 +34636,14 @@ /obj/item/device/integrated_electronics/debugger, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bhJ" = ( +"bhH" = ( /obj/machinery/conveyor{ blood_color = 1; id = "RobotSurg" }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bhK" = ( +"bhI" = ( /obj/machinery/conveyor_switch/oneway{ convdir = -1; id = "RobotSurg" @@ -34844,7 +34653,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bhL" = ( +"bhJ" = ( /obj/machinery/disposal, /obj/machinery/camera/network/research{ c_tag = "Research - Robotics Manufacturing" @@ -34854,7 +34663,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bhM" = ( +"bhK" = ( /obj/structure/table/rack{ pixel_x = 3; pixel_y = 3 @@ -34885,7 +34694,7 @@ /obj/item/clothing/head/welding, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bhN" = ( +"bhL" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/sign/nosmoking_1{ pixel_y = 32 @@ -34893,24 +34702,24 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bhO" = ( +"bhM" = ( /obj/machinery/vending/robotics{ products = list(/obj/item/clothing/suit/storage/toggle/labcoat = 4, /obj/item/clothing/under/rank/roboticist = 4, /obj/item/stack/cable_coil = 4, /obj/item/weapon/cell/high = 12, /obj/item/device/assembly/prox_sensor = 8, /obj/item/device/assembly/signaler = 3, /obj/item/device/healthanalyzer = 8, /obj/item/weapon/scalpel = 2, /obj/item/weapon/circular_saw = 2, /obj/item/weapon/tank/anesthetic = 2, /obj/item/clothing/mask/breath/medical = 5, /obj/item/weapon/screwdriver = 5, /obj/item/weapon/crowbar = 5) }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bhP" = ( +"bhN" = ( /obj/machinery/mech_recharger, /turf/simulated/floor/tiled/dark, /area/assembly/robotics) -"bhQ" = ( +"bhO" = ( /obj/machinery/alarm{ pixel_y = 23 }, /turf/simulated/floor/tiled/dark, /area/assembly/robotics) -"bhR" = ( +"bhP" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 @@ -34922,7 +34731,7 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bhS" = ( +"bhQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; @@ -34931,7 +34740,7 @@ /obj/effect/floor_decal/corner/mauve/diagonal, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bhT" = ( +"bhR" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/machinery/light{ @@ -34947,7 +34756,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bhU" = ( +"bhS" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -34959,14 +34768,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/assembly/robotics) -"bhV" = ( +"bhT" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bhW" = ( +"bhU" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -34982,12 +34791,12 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bhX" = ( +"bhV" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 }, -/obj/machinery/camera/network/civilian_main{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Central Corridor - Camera 6"; dir = 8 }, @@ -34997,7 +34806,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bhY" = ( +"bhW" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, @@ -35015,7 +34824,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bhZ" = ( +"bhX" = ( /obj/structure/table/standard, /obj/item/weapon/retractor, /obj/machinery/light{ @@ -35023,11 +34832,11 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bia" = ( +"bhY" = ( /obj/machinery/optable, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bib" = ( +"bhZ" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -35035,7 +34844,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bic" = ( +"bia" = ( /obj/item/device/radio/intercom{ pixel_y = -27 }, @@ -35044,14 +34853,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bid" = ( +"bib" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bie" = ( +"bic" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 9 @@ -35063,7 +34872,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bif" = ( +"bid" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 2; @@ -35074,14 +34883,14 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"big" = ( +"bie" = ( /obj/machinery/light, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bih" = ( +"bif" = ( /obj/item/device/radio/intercom{ pixel_y = -27 }, @@ -35094,7 +34903,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bii" = ( +"big" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -35109,7 +34918,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bij" = ( +"bih" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -35123,7 +34932,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bik" = ( +"bii" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 9 @@ -35136,7 +34945,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bil" = ( +"bij" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -35148,7 +34957,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bim" = ( +"bik" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -35161,7 +34970,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bin" = ( +"bil" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -35183,7 +34992,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bio" = ( +"bim" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -35202,7 +35011,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bip" = ( +"bin" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -35220,7 +35029,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"biq" = ( +"bio" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/alarm{ dir = 4; @@ -35233,12 +35042,12 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bir" = ( +"bip" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled, /area/medical/reception) -"bis" = ( +"biq" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -35259,7 +35068,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bit" = ( +"bir" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 10 @@ -35275,7 +35084,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"biu" = ( +"bis" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -35294,7 +35103,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"biv" = ( +"bit" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -35309,7 +35118,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"biw" = ( +"biu" = ( /obj/machinery/door/airlock/multi_tile/glass{ autoclose = 1; dir = 2; @@ -35333,7 +35142,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bix" = ( +"biv" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 10 @@ -35357,7 +35166,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"biy" = ( +"biw" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 10 @@ -35375,7 +35184,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"biz" = ( +"bix" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 10 @@ -35388,7 +35197,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"biA" = ( +"biy" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 10 @@ -35403,7 +35212,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/medical/reception) -"biB" = ( +"biz" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 10 @@ -35418,7 +35227,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"biC" = ( +"biA" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 10 @@ -35429,7 +35238,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"biD" = ( +"biB" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 10 @@ -35443,7 +35252,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"biE" = ( +"biC" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 10 @@ -35454,7 +35263,7 @@ /obj/machinery/disposal, /turf/simulated/floor/tiled, /area/medical/reception) -"biF" = ( +"biD" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -35482,7 +35291,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/medical/chemistry) -"biG" = ( +"biE" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -35490,11 +35299,11 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"biH" = ( +"biF" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"biI" = ( +"biG" = ( /obj/machinery/smartfridge/secure/medbay{ density = 0; name = "Dangerous Materials Storage"; @@ -35506,7 +35315,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"biJ" = ( +"biH" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/syringes{ pixel_x = 5; @@ -35525,7 +35334,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"biK" = ( +"biI" = ( /obj/machinery/chem_master, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -35533,7 +35342,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"biL" = ( +"biJ" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/dropper, /obj/effect/floor_decal/corner/mauve{ @@ -35552,7 +35361,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"biM" = ( +"biK" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -35563,21 +35372,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/medbay) -"biN" = ( +"biL" = ( /turf/simulated/wall, /area/maintenance/medbay) -"biO" = ( +"biM" = ( /obj/structure/table/rack, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"biP" = ( +"biN" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"biQ" = ( +"biO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -35596,7 +35405,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"biR" = ( +"biP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -35605,7 +35414,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"biS" = ( +"biQ" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(19) }, @@ -35615,7 +35424,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge) -"biT" = ( +"biR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -35633,7 +35442,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"biU" = ( +"biS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -35654,19 +35463,19 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"biV" = ( +"biT" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(19) }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge) -"biW" = ( +"biU" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"biX" = ( +"biV" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/alarm{ pixel_y = 23 @@ -35674,15 +35483,15 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"biY" = ( +"biW" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"biZ" = ( +"biX" = ( /turf/simulated/wall/r_wall, /area/bridge/aibunker) -"bja" = ( +"biY" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -35694,7 +35503,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bjb" = ( +"biZ" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -35706,20 +35515,20 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bjc" = ( +"bja" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bjd" = ( +"bjb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bje" = ( +"bjc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -35732,7 +35541,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bjf" = ( +"bjd" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(29) }, @@ -35748,7 +35557,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bjg" = ( +"bje" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -35765,7 +35574,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bjh" = ( +"bjf" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -35776,14 +35585,14 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bji" = ( +"bjg" = ( /turf/simulated/floor/tiled, /area/assembly/robotics) -"bjj" = ( +"bjh" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bjk" = ( +"bji" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -35791,20 +35600,20 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bjl" = ( +"bjj" = ( /obj/effect/floor_decal/corner/orange{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/dark, /area/assembly/robotics) -"bjm" = ( +"bjk" = ( /obj/effect/floor_decal/corner/orange{ dir = 10 }, /turf/simulated/floor/tiled/dark, /area/assembly/robotics) -"bjn" = ( +"bjl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -35821,7 +35630,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bjo" = ( +"bjm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -35829,7 +35638,7 @@ /obj/effect/floor_decal/corner/mauve/diagonal, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bjp" = ( +"bjn" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -35839,7 +35648,7 @@ /obj/effect/floor_decal/corner/mauve/diagonal, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bjq" = ( +"bjo" = ( /obj/structure/table/reinforced, /obj/machinery/door/window{ base_state = "right"; @@ -35856,7 +35665,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bjr" = ( +"bjp" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -35868,17 +35677,17 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bjs" = ( +"bjq" = ( /turf/simulated/floor/plating, /area/turbolift/main_station_aux) -"bjt" = ( +"bjr" = ( /obj/machinery/newscaster{ pixel_x = -32; pixel_y = 0 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bju" = ( +"bjs" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -35895,13 +35704,13 @@ }, /turf/simulated/floor/plating, /area/medical/surgerywing) -"bjv" = ( +"bjt" = ( /obj/structure/table/standard, /obj/item/weapon/surgicaldrill, /obj/item/weapon/FixOVein, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bjw" = ( +"bju" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -35909,7 +35718,7 @@ /obj/machinery/computer/operating, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bjx" = ( +"bjv" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -35918,7 +35727,7 @@ /obj/machinery/iv_drip, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bjy" = ( +"bjw" = ( /obj/structure/curtain/open/medical, /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; @@ -35929,7 +35738,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bjz" = ( +"bjx" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -35947,7 +35756,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/medical/surgerywing) -"bjA" = ( +"bjy" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ name = "Combined Operating Theatre"; @@ -35958,7 +35767,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bjB" = ( +"bjz" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -35976,7 +35785,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/main_storage) -"bjC" = ( +"bjA" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_medical{ name = "Main Storage"; @@ -35984,10 +35793,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bjD" = ( +"bjB" = ( /turf/simulated/wall, /area/medical/main_storage) -"bjE" = ( +"bjC" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -35999,7 +35808,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bjF" = ( +"bjD" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -36018,7 +35827,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bjG" = ( +"bjE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_medical{ name = "Reception Desk"; @@ -36027,7 +35836,7 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/medical/reception) -"bjH" = ( +"bjF" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -36041,7 +35850,7 @@ /obj/structure/sign/nosmoking_2, /turf/simulated/floor/plating, /area/medical/reception) -"bjI" = ( +"bjG" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -36056,7 +35865,7 @@ /obj/structure/sign/patients_only, /turf/simulated/floor/plating, /area/medical/reception) -"bjJ" = ( +"bjH" = ( /obj/machinery/door/airlock/multi_tile/glass{ id_tag = "main_door"; name = "Triage Room Main Entrance"; @@ -36081,7 +35890,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/medical/reception) -"bjK" = ( +"bjI" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ density = 0; @@ -36093,7 +35902,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bjL" = ( +"bjJ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -36119,10 +35928,10 @@ }, /turf/simulated/floor/plating, /area/medical/reception) -"bjM" = ( +"bjK" = ( /turf/simulated/wall, /area/medical/exam_room) -"bjN" = ( +"bjL" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/door/airlock/medical{ @@ -36132,7 +35941,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bjO" = ( +"bjM" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced/polarized{ @@ -36148,7 +35957,7 @@ }, /turf/simulated/floor/plating, /area/medical/exam_room) -"bjP" = ( +"bjN" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced/polarized{ @@ -36165,50 +35974,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/medical/exam_room) -"bjQ" = ( -/turf/simulated/wall, -/area/medical/psych) -"bjR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Mental Heath"; - req_access = list(64) - }, -/turf/simulated/floor/wood, -/area/medical/psych) "bjS" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Phy" - }, -/obj/structure/window/reinforced/polarized{ - id = "Phy" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Phy" - }, -/turf/simulated/floor/plating, -/area/medical/psych) -"bjT" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Phy" - }, -/obj/structure/window/reinforced/polarized{ - id = "Phy" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Phy" - }, -/turf/simulated/floor/plating, -/area/medical/psych) -"bjU" = ( /obj/structure/table/standard, /obj/item/weapon/packageWrap, /obj/item/weapon/hand_labeler, @@ -36224,25 +35990,25 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bjV" = ( +"bjT" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bjW" = ( +"bjU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bjX" = ( +"bjV" = ( /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bjY" = ( +"bjW" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bjZ" = ( +"bjX" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/glass/beaker/large, /obj/item/clothing/glasses/science, @@ -36260,7 +36026,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bka" = ( +"bjY" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -36288,7 +36054,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"bkb" = ( +"bjZ" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 4; @@ -36321,7 +36087,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bkc" = ( +"bka" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -36348,13 +36114,13 @@ }, /turf/simulated/floor/plating, /area/bridge) -"bkd" = ( +"bkb" = ( /turf/simulated/wall, /area/bridge/minibar) -"bke" = ( +"bkc" = ( /turf/simulated/wall/r_wall, /area/bridge/minibar) -"bkf" = ( +"bkd" = ( /obj/structure/table/rack, /obj/item/stack/material/glass{ amount = 20; @@ -36372,7 +36138,7 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bkg" = ( +"bke" = ( /obj/structure/table/rack, /obj/item/stack/material/wood{ amount = 20 @@ -36387,7 +36153,7 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bkh" = ( +"bkf" = ( /obj/structure/table/rack, /obj/item/weapon/paper_bin{ pixel_x = 6; @@ -36400,7 +36166,7 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bki" = ( +"bkg" = ( /obj/structure/table/rack, /obj/item/weapon/caution{ pixel_x = 4; @@ -36418,7 +36184,7 @@ /obj/machinery/light/small, /turf/simulated/floor/tiled/dark, /area/janitor) -"bkj" = ( +"bkh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -36436,7 +36202,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bkk" = ( +"bki" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -36454,7 +36220,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bkl" = ( +"bkj" = ( /obj/item/device/radio/intercom{ pixel_x = -27 }, @@ -36467,7 +36233,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bkm" = ( +"bkk" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 2; sortType = "Robotics"; @@ -36476,14 +36242,14 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bkn" = ( +"bkl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bko" = ( +"bkm" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -36491,17 +36257,17 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bkp" = ( +"bkn" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bkq" = ( +"bko" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bkr" = ( +"bkp" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -36516,10 +36282,10 @@ /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bks" = ( +"bkq" = ( /turf/simulated/floor/tiled/dark, /area/assembly/robotics) -"bkt" = ( +"bkr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/industrial/warning{ @@ -36532,11 +36298,11 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bku" = ( +"bks" = ( /obj/effect/floor_decal/corner/mauve/diagonal, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bkv" = ( +"bkt" = ( /obj/structure/sign/nosmoking_1{ pixel_x = 32 }, @@ -36546,7 +36312,7 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bkw" = ( +"bku" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, @@ -36556,13 +36322,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bkx" = ( +"bkv" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, /area/turbolift/main_station_aux) -"bky" = ( +"bkw" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -36578,7 +36344,7 @@ }, /turf/simulated/floor/plating, /area/medical/surgerywing) -"bkz" = ( +"bkx" = ( /obj/structure/table/standard, /obj/item/weapon/bonesetter, /obj/item/weapon/bonegel, @@ -36588,7 +36354,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bkA" = ( +"bky" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -36607,7 +36373,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bkB" = ( +"bkz" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -36617,7 +36383,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bkC" = ( +"bkA" = ( /obj/structure/sink/kitchen{ name = "surgical sink"; pixel_y = 28 @@ -36628,7 +36394,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bkD" = ( +"bkB" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -36639,7 +36405,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bkE" = ( +"bkC" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -36652,7 +36418,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bkF" = ( +"bkD" = ( /obj/structure/closet/crate/freezer{ name = "O- Blood Packs" }, @@ -36665,7 +36431,7 @@ temperature = 278 }, /area/medical/surgerywing) -"bkG" = ( +"bkE" = ( /obj/structure/closet/crate/freezer{ name = "Various Blood Packs" }, @@ -36688,7 +36454,7 @@ temperature = 278 }, /area/medical/surgerywing) -"bkH" = ( +"bkF" = ( /obj/structure/closet/crate/freezer{ name = "Fridge" }, @@ -36701,7 +36467,7 @@ temperature = 278 }, /area/medical/surgerywing) -"bkI" = ( +"bkG" = ( /obj/machinery/disposal, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; @@ -36715,14 +36481,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bkJ" = ( +"bkH" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bkK" = ( +"bkI" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -36739,7 +36505,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/main_storage) -"bkL" = ( +"bkJ" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -36750,7 +36516,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bkM" = ( +"bkK" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -36762,7 +36528,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bkN" = ( +"bkL" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_medical{ id_tag = "sur_door"; @@ -36776,7 +36542,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bkO" = ( +"bkM" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -36788,7 +36554,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bkP" = ( +"bkN" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -36796,7 +36562,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bkQ" = ( +"bkO" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 4 @@ -36815,7 +36581,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bkR" = ( +"bkP" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 5 @@ -36840,7 +36606,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bkS" = ( +"bkQ" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -36850,27 +36616,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) +"bkS" = ( +/turf/simulated/floor/tiled/white, +/area/medical/triage) "bkT" = ( -/obj/machinery/button/remote/airlock{ - id = "main_door"; - name = "Main Exit Door Control"; - pixel_x = 0; - pixel_y = 26; - req_access = null - }, -/obj/effect/floor_decal/corner/lime{ - icon_state = "corner_white"; - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/triage) -"bkU" = ( -/turf/simulated/floor/tiled/white, -/area/medical/triage) -"bkV" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/door/airlock/medical{ @@ -36880,22 +36629,22 @@ }, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bkW" = ( +"bkU" = ( /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bkX" = ( +"bkV" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bkY" = ( +"bkW" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/table/standard, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bkZ" = ( +"bkX" = ( /obj/structure/bed, /obj/item/weapon/bedsheet/medical, /obj/effect/floor_decal/corner/grey/diagonal, @@ -36903,33 +36652,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bla" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/medical/psych) "blb" = ( -/obj/structure/closet/secure_closet{ - name = "Psychiatrist's Locker"; - req_access = list(64) - }, -/obj/item/clothing/suit/straight_jacket{ - layer = 3 - }, -/obj/item/weapon/reagent_containers/pill/methylphenidate, -/obj/item/weapon/reagent_containers/pill/escitalopram, -/obj/item/weapon/reagent_containers/pill/escitalopram, -/obj/item/weapon/reagent_containers/syringe, -/turf/simulated/floor/carpet, -/area/medical/psych) -"blc" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = -1; - pixel_y = 7 - }, -/turf/simulated/floor/carpet, -/area/medical/psych) -"bld" = ( /obj/structure/table/standard, /obj/item/stack/material/phoron, /obj/item/stack/material/phoron, @@ -36957,12 +36680,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"ble" = ( +"blc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"blf" = ( +"bld" = ( /obj/structure/closet/secure_closet/chemical, /obj/item/device/radio/headset/headset_med, /obj/item/device/radio/headset/headset_med, @@ -36974,7 +36697,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"blg" = ( +"ble" = ( /obj/machinery/chemical_dispenser/full, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -36982,7 +36705,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"blh" = ( +"blf" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -37005,26 +36728,26 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bli" = ( +"blg" = ( /obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/medbay) -"blj" = ( +"blh" = ( /obj/structure/closet/crate, /turf/simulated/floor/plating, /area/maintenance/medbay) -"blk" = ( +"bli" = ( /obj/structure/closet, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bll" = ( +"blj" = ( /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/medbay) -"blm" = ( +"blk" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -37042,7 +36765,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"bln" = ( +"bll" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Corridor Camera 1" }, @@ -37056,7 +36779,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"blo" = ( +"blm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -37069,7 +36792,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"blp" = ( +"bln" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37079,7 +36802,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"blq" = ( +"blo" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -37100,7 +36823,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"blr" = ( +"blp" = ( /obj/machinery/light_switch{ pixel_y = 24 }, @@ -37111,7 +36834,7 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/bridge/minibar) -"bls" = ( +"blq" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -37128,7 +36851,7 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/bridge/minibar) -"blt" = ( +"blr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37139,7 +36862,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/minibar) -"blu" = ( +"bls" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37150,7 +36873,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/minibar) -"blv" = ( +"blt" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -37158,7 +36881,7 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/bridge/minibar) -"blw" = ( +"blu" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -37176,10 +36899,10 @@ }, /turf/simulated/floor/plating, /area/bridge/minibar) -"blx" = ( +"blv" = ( /turf/simulated/open, /area/bridge/aibunker) -"bly" = ( +"blw" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 @@ -37189,15 +36912,15 @@ }, /turf/simulated/floor/plating, /area/bridge/aibunker) -"blz" = ( +"blx" = ( /obj/structure/ladder/up, /turf/simulated/floor/plating, /area/bridge/aibunker) -"blA" = ( +"bly" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, /area/maintenance/research_port) -"blB" = ( +"blz" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -37209,13 +36932,13 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/research_port) -"blC" = ( +"blA" = ( /turf/simulated/wall, /area/maintenance/substation/research) -"blD" = ( +"blB" = ( /turf/simulated/wall/r_wall, /area/maintenance/substation/research) -"blE" = ( +"blC" = ( /obj/structure/table/standard, /obj/item/stack/material/steel{ amount = 50 @@ -37247,14 +36970,14 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"blF" = ( +"blD" = ( /obj/structure/table/standard, /obj/item/stack/material/plasteel{ amount = 20 }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"blG" = ( +"blE" = ( /obj/structure/table/standard, /obj/item/weapon/book/manual/ripley_build_and_repair, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -37264,11 +36987,11 @@ /obj/item/weapon/reagent_containers/glass/beaker/sulphuric, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"blH" = ( +"blF" = ( /obj/machinery/computer/rdconsole/robotics, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"blI" = ( +"blG" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -37283,7 +37006,7 @@ }, /turf/simulated/floor/plating, /area/assembly/robotics) -"blJ" = ( +"blH" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -37293,7 +37016,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blK" = ( +"blI" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -37303,14 +37026,14 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blL" = ( +"blJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blM" = ( +"blK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37321,7 +37044,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blN" = ( +"blL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37331,18 +37054,18 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blO" = ( +"blM" = ( /obj/structure/disposalpipe/junction/yjunction, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blP" = ( +"blN" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blQ" = ( +"blO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment{ dir = 4 @@ -37352,7 +37075,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blR" = ( +"blP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37361,7 +37084,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blS" = ( +"blQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ @@ -37378,13 +37101,13 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blT" = ( +"blR" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blU" = ( +"blS" = ( /obj/machinery/door/blast/shutters{ density = 1; dir = 4; @@ -37397,18 +37120,18 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blV" = ( +"blT" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"blW" = ( +"blU" = ( /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"blX" = ( +"blV" = ( /obj/structure/disposaloutlet{ icon_state = "outlet"; dir = 4 @@ -37418,7 +37141,7 @@ }, /turf/simulated/floor/plating, /area/medical/surgerywing) -"blY" = ( +"blW" = ( /obj/structure/table/standard, /obj/machinery/door/window{ base_state = "left"; @@ -37432,7 +37155,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"blZ" = ( +"blX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37444,7 +37167,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bma" = ( +"blY" = ( /obj/machinery/hologram/holopad, /obj/structure/disposalpipe/segment{ dir = 4 @@ -37457,7 +37180,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bmb" = ( +"blZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37469,7 +37192,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bmc" = ( +"bma" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37483,7 +37206,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bmd" = ( +"bmb" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -37498,7 +37221,7 @@ temperature = 278 }, /area/medical/surgerywing) -"bme" = ( +"bmc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37507,7 +37230,7 @@ temperature = 278 }, /area/medical/surgerywing) -"bmf" = ( +"bmd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37519,7 +37242,7 @@ temperature = 278 }, /area/medical/surgerywing) -"bmg" = ( +"bme" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37537,13 +37260,13 @@ temperature = 278 }, /area/medical/surgerywing) -"bmh" = ( +"bmf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, /area/medical/surgerywing) -"bmi" = ( +"bmg" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; @@ -37563,14 +37286,14 @@ /obj/item/weapon/reagent_containers/spray/cleaner, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bmj" = ( +"bmh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bmk" = ( +"bmi" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -37587,7 +37310,7 @@ }, /turf/simulated/floor/plating, /area/medical/main_storage) -"bml" = ( +"bmj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37598,7 +37321,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bmm" = ( +"bmk" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37608,7 +37331,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bmn" = ( +"bml" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -37629,7 +37352,7 @@ }, /turf/simulated/floor/plating, /area/medical/surgeryprep) -"bmo" = ( +"bmm" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -37652,7 +37375,7 @@ /obj/structure/table/standard, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bmp" = ( +"bmn" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/structure/bed/chair{ dir = 1 @@ -37662,7 +37385,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bmq" = ( +"bmo" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/structure/bed/chair{ dir = 1 @@ -37673,7 +37396,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bmr" = ( +"bmp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37691,7 +37414,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bms" = ( +"bmq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37702,7 +37425,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bmt" = ( +"bmr" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -37722,7 +37445,7 @@ }, /turf/simulated/floor/tiled, /area/medical/triage) -"bmu" = ( +"bms" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -37742,13 +37465,13 @@ }, /turf/simulated/floor/tiled, /area/medical/triage) -"bmv" = ( +"bmt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, /area/medical/exam_room) -"bmw" = ( +"bmu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37762,7 +37485,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bmx" = ( +"bmv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37773,7 +37496,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bmy" = ( +"bmw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37786,7 +37509,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bmz" = ( +"bmx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37805,88 +37528,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bmA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall, -/area/medical/psych) -"bmB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/requests_console{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/medical/psych) "bmC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/machinery/button/windowtint{ - id = "Phy"; - pixel_x = 26; - pixel_y = 16; - req_access = list(5) - }, -/obj/machinery/button/remote/airlock{ - id = "waiting_door"; - name = "Waiting Room Door Control"; - pixel_x = 38; - pixel_y = 16; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/medical/psych) -"bmD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/medical/psych) -"bmE" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, /area/medical/chemistry) -"bmF" = ( -/obj/structure/table/standard, -/obj/machinery/reagentgrinder, -/obj/effect/floor_decal/corner/mauve{ - icon_state = "corner_white"; - dir = 9 - }, -/obj/machinery/firealarm/west, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Pharmacy"; - dir = 4; - icon_state = "camera" - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"bmG" = ( +"bmE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 1; @@ -37894,14 +37543,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bmH" = ( +"bmF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bmI" = ( +"bmG" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 @@ -37912,7 +37561,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bmJ" = ( +"bmH" = ( /obj/machinery/chemical_dispenser/full, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -37920,7 +37569,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bmK" = ( +"bmI" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -37940,7 +37589,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bmL" = ( +"bmJ" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -37954,7 +37603,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bmM" = ( +"bmK" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -37968,7 +37617,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bmN" = ( +"bmL" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -37982,7 +37631,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bmO" = ( +"bmM" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -37996,7 +37645,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bmP" = ( +"bmN" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -38016,7 +37665,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"bmQ" = ( +"bmO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -38026,7 +37675,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bmR" = ( +"bmP" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -38047,12 +37696,12 @@ }, /turf/simulated/floor/plating, /area/bridge) -"bmS" = ( +"bmQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/bridge/minibar) -"bmT" = ( +"bmR" = ( /obj/item/weapon/stool/padded, /obj/structure/cable/green{ d1 = 1; @@ -38061,21 +37710,21 @@ }, /turf/simulated/floor/carpet, /area/bridge/minibar) -"bmU" = ( +"bmS" = ( /obj/structure/table/wood, /obj/machinery/chemical_dispenser/coffee/full, /turf/simulated/floor/carpet, /area/bridge/minibar) -"bmV" = ( +"bmT" = ( /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/bridge/minibar) -"bmW" = ( +"bmU" = ( /obj/machinery/vending/dinnerware, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/bridge/minibar) -"bmX" = ( +"bmV" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -38095,7 +37744,7 @@ }, /turf/simulated/floor/plating, /area/bridge/minibar) -"bmY" = ( +"bmW" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -38107,7 +37756,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bmZ" = ( +"bmX" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -38119,7 +37768,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bna" = ( +"bmY" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -38130,7 +37779,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bnb" = ( +"bmZ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -38144,7 +37793,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bnc" = ( +"bna" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -38156,7 +37805,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bnd" = ( +"bnb" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -38181,7 +37830,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bne" = ( +"bnc" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -38197,7 +37846,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/research) -"bnf" = ( +"bnd" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -38216,7 +37865,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/research) -"bng" = ( +"bne" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -38229,7 +37878,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/research) -"bnh" = ( +"bnf" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -38237,7 +37886,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bni" = ( +"bng" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -38250,7 +37899,7 @@ }, /turf/simulated/floor/plating, /area/assembly/robotics) -"bnj" = ( +"bnh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -38261,7 +37910,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bnk" = ( +"bni" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -38272,7 +37921,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bnl" = ( +"bnj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -38286,7 +37935,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bnm" = ( +"bnk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -38300,7 +37949,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bnn" = ( +"bnl" = ( /obj/machinery/door/window{ dir = 4; name = "Components Manufacture"; @@ -38320,7 +37969,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bno" = ( +"bnm" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -38335,7 +37984,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bnp" = ( +"bnn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -38352,7 +38001,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bnq" = ( +"bno" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -38367,7 +38016,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bnr" = ( +"bnp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -38382,7 +38031,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bns" = ( +"bnq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -38397,7 +38046,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bnt" = ( +"bnr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -38415,7 +38064,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bnu" = ( +"bns" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -38430,7 +38079,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bnv" = ( +"bnt" = ( /obj/machinery/door/airlock/multi_tile/glass{ autoclose = 1; dir = 2; @@ -38446,14 +38095,14 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bnw" = ( +"bnu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bnx" = ( +"bnv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -38462,7 +38111,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bny" = ( +"bnw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -38471,7 +38120,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bnz" = ( +"bnx" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/blast/shutters{ @@ -38484,7 +38133,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bnA" = ( +"bny" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -38495,11 +38144,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bnB" = ( +"bnz" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, /area/turbolift/main_station_aux) -"bnC" = ( +"bnA" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -38509,7 +38158,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bnD" = ( +"bnB" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -38526,7 +38175,7 @@ }, /turf/simulated/floor/plating, /area/medical/surgerywing) -"bnE" = ( +"bnC" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 5 @@ -38536,7 +38185,7 @@ /obj/item/weapon/bonegel, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bnF" = ( +"bnD" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 5 @@ -38555,7 +38204,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bnG" = ( +"bnE" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -38569,7 +38218,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bnH" = ( +"bnF" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -38585,7 +38234,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bnI" = ( +"bnG" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -38596,7 +38245,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bnJ" = ( +"bnH" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -38613,21 +38262,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bnK" = ( +"bnI" = ( /obj/structure/closet/secure_closet/medical2, /turf/simulated/floor/tiled/freezer{ name = "cold storage tiles"; temperature = 278 }, /area/medical/surgerywing) -"bnL" = ( +"bnJ" = ( /obj/machinery/floodlight, /turf/simulated/floor/tiled/freezer{ name = "cold storage tiles"; temperature = 278 }, /area/medical/surgerywing) -"bnM" = ( +"bnK" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/bloodpacks, /turf/simulated/floor/tiled/freezer{ @@ -38635,7 +38284,7 @@ temperature = 278 }, /area/medical/surgerywing) -"bnN" = ( +"bnL" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/regular{ pixel_x = 5; @@ -38654,7 +38303,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bnO" = ( +"bnM" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -38667,7 +38316,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bnP" = ( +"bnN" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -38685,7 +38334,7 @@ }, /turf/simulated/floor/plating, /area/medical/main_storage) -"bnQ" = ( +"bnO" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -38702,13 +38351,13 @@ }, /turf/simulated/floor/plating, /area/medical/main_storage) -"bnR" = ( +"bnP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, /area/medical/main_storage) -"bnS" = ( +"bnQ" = ( /obj/machinery/bodyscanner{ icon_state = "body_scanner_0"; dir = 4 @@ -38725,7 +38374,7 @@ }, /turf/simulated/floor/tiled, /area/medical/triage) -"bnT" = ( +"bnR" = ( /obj/machinery/body_scanconsole{ icon_state = "body_scannerconsole"; dir = 8 @@ -38743,7 +38392,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/medical/triage) -"bnU" = ( +"bnS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -38756,13 +38405,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bnV" = ( +"bnT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bnW" = ( +"bnU" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -38773,14 +38422,14 @@ }, /turf/simulated/floor/tiled, /area/medical/triage) -"bnX" = ( +"bnV" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/medical/triage) -"bnY" = ( +"bnW" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ @@ -38800,7 +38449,7 @@ }, /turf/simulated/floor/plating, /area/medical/exam_room) -"bnZ" = ( +"bnX" = ( /obj/item/device/radio{ anchored = 1; broadcasting = 0; @@ -38824,7 +38473,7 @@ /obj/structure/table/standard, /turf/simulated/floor/carpet/blue, /area/medical/exam_room) -"boa" = ( +"bnY" = ( /obj/item/weapon/folder/white, /obj/item/weapon/pen, /obj/structure/disposalpipe/segment{ @@ -38833,7 +38482,7 @@ /obj/structure/table/standard, /turf/simulated/floor/carpet/blue, /area/medical/exam_room) -"bob" = ( +"bnZ" = ( /obj/item/weapon/paper_bin{ pixel_x = -1; pixel_y = 7 @@ -38844,7 +38493,7 @@ /obj/structure/table/standard, /turf/simulated/floor/carpet/blue, /area/medical/exam_room) -"boc" = ( +"boa" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -38863,46 +38512,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bod" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/medical/psych) "boe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/medical/psych) -"bof" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair/comfy/brown, -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = 0 - }, -/turf/simulated/floor/carpet, -/area/medical/psych) -"bog" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, /area/medical/chemistry) -"boh" = ( +"bof" = ( /obj/machinery/disposal, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -38920,30 +38534,30 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"boi" = ( +"bog" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"boj" = ( +"boh" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bok" = ( +"boi" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bol" = ( +"boj" = ( /turf/simulated/wall, /area/medical/medbay2) -"bom" = ( +"bok" = ( /turf/simulated/floor/plating, /area/maintenance/medbay) -"bon" = ( +"bol" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -38954,7 +38568,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"boo" = ( +"bom" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -38979,7 +38593,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"bop" = ( +"bon" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -38996,7 +38610,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"boq" = ( +"boo" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -39020,7 +38634,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bor" = ( +"bop" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -39038,7 +38652,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bos" = ( +"boq" = ( /obj/machinery/door/airlock/glass_command{ name = "Break Room"; req_access = list(19) @@ -39067,7 +38681,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bot" = ( +"bor" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -39082,7 +38696,7 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/bridge/minibar) -"bou" = ( +"bos" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -39099,7 +38713,7 @@ }, /turf/simulated/floor/carpet, /area/bridge/minibar) -"bov" = ( +"bot" = ( /obj/structure/table/wood, /obj/item/weapon/reagent_containers/glass/rag, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -39112,7 +38726,7 @@ }, /turf/simulated/floor/carpet, /area/bridge/minibar) -"bow" = ( +"bou" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ @@ -39122,7 +38736,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/minibar) -"box" = ( +"bov" = ( /obj/machinery/chemical_dispenser/bar_alc/full, /obj/structure/table/wood, /obj/machinery/light{ @@ -39138,7 +38752,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/minibar) -"boy" = ( +"bow" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -39163,7 +38777,7 @@ }, /turf/simulated/floor/plating, /area/bridge/minibar) -"boz" = ( +"box" = ( /obj/machinery/power/terminal{ dir = 4 }, @@ -39187,7 +38801,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/research) -"boA" = ( +"boy" = ( /obj/machinery/power/smes/buildable{ charge = 0; RCon_tag = "Substation - \[F.3] Research" @@ -39199,7 +38813,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/maintenance/substation/research) -"boB" = ( +"boz" = ( /obj/machinery/mecha_part_fabricator, /obj/machinery/camera/network/research{ c_tag = "Research - Robotics Fabrication"; @@ -39209,17 +38823,17 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"boC" = ( +"boA" = ( /obj/machinery/mecha_part_fabricator, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"boD" = ( +"boB" = ( /obj/item/toy/figure/roboticist, /obj/machinery/r_n_d/circuit_imprinter, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"boE" = ( +"boC" = ( /obj/machinery/conveyor_switch/oneway{ convdir = -1; desc = "A conveyor control switch. It appears to only go in one direction. Controls the components conveyor belt."; @@ -39228,7 +38842,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"boF" = ( +"boD" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -39236,7 +38850,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boG" = ( +"boE" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, @@ -39245,28 +38859,28 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boH" = ( +"boF" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boI" = ( +"boG" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boJ" = ( +"boH" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 1 }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boK" = ( +"boI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -39277,7 +38891,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boL" = ( +"boJ" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Robotics Charging Bay"; dir = 4; @@ -39291,21 +38905,21 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boM" = ( +"boK" = ( /obj/effect/landmark{ name = "JoinLateCyborg" }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boN" = ( +"boL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boO" = ( +"boM" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boP" = ( +"boN" = ( /obj/machinery/button/remote/blast_door{ desc = "It controls the Mech Bay's shutters."; id = "MechBayShutter"; @@ -39314,14 +38928,14 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boQ" = ( +"boO" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"boR" = ( +"boP" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 4 @@ -39332,11 +38946,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"boS" = ( +"boQ" = ( /obj/turbolift_map_holder/aurora/civilian_aux, /turf/simulated/floor/plating, /area/turbolift/main_station_aux) -"boT" = ( +"boR" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -39352,7 +38966,7 @@ }, /turf/simulated/floor/plating, /area/medical/surgerywing) -"boU" = ( +"boS" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 5 @@ -39360,7 +38974,7 @@ /obj/machinery/computer/operating, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"boV" = ( +"boT" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 5 @@ -39369,7 +38983,7 @@ /obj/machinery/iv_drip, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"boW" = ( +"boU" = ( /obj/structure/curtain/open/medical, /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; @@ -39380,7 +38994,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"boX" = ( +"boV" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -39398,7 +39012,7 @@ }, /turf/simulated/floor/plating, /area/medical/surgerywing) -"boY" = ( +"boW" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ name = "Combined Operating Theatre"; @@ -39414,7 +39028,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"boZ" = ( +"boX" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/fire{ pixel_x = 4; @@ -39434,7 +39048,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bpa" = ( +"boY" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -39443,7 +39057,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bpb" = ( +"boZ" = ( /obj/structure/disposaloutlet{ icon_state = "outlet"; dir = 4 @@ -39458,7 +39072,7 @@ }, /turf/simulated/floor/plating, /area/medical/main_storage) -"bpc" = ( +"bpa" = ( /obj/structure/table/standard, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -39477,7 +39091,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bpd" = ( +"bpb" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/masks{ pixel_x = 4; @@ -39489,7 +39103,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bpe" = ( +"bpc" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/lime{ dir = 6 @@ -39511,7 +39125,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bpf" = ( +"bpd" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -39531,7 +39145,7 @@ }, /turf/simulated/floor/plating, /area/medical/main_storage) -"bpg" = ( +"bpe" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -39549,7 +39163,7 @@ }, /turf/simulated/floor/tiled, /area/medical/triage) -"bph" = ( +"bpf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -39564,7 +39178,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bpi" = ( +"bpg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -39573,7 +39187,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bpj" = ( +"bph" = ( /obj/effect/floor_decal/industrial/outline/red, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -39585,7 +39199,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/medical/triage) -"bpk" = ( +"bpi" = ( /obj/effect/floor_decal/industrial/outline/red, /obj/structure/disposalpipe/segment{ dir = 4 @@ -39595,7 +39209,7 @@ }, /turf/simulated/floor/tiled, /area/medical/triage) -"bpl" = ( +"bpj" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ @@ -39614,7 +39228,7 @@ }, /turf/simulated/floor/plating, /area/medical/exam_room) -"bpm" = ( +"bpk" = ( /obj/machinery/computer/med_data/laptop, /obj/structure/disposalpipe/segment{ dir = 4 @@ -39622,7 +39236,7 @@ /obj/structure/table/standard, /turf/simulated/floor/carpet/blue, /area/medical/exam_room) -"bpn" = ( +"bpl" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, @@ -39656,13 +39270,13 @@ }, /turf/simulated/floor/carpet/blue, /area/medical/exam_room) -"bpo" = ( +"bpm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/carpet/blue, /area/medical/exam_room) -"bpp" = ( +"bpn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -39681,44 +39295,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bpq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm/west, -/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/wood, -/area/medical/psych) "bpr" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Psychiatrist Office"; - dir = 1; - icon_state = "camera" - }, -/turf/simulated/floor/carpet, -/area/medical/psych) -"bps" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/bed/psych, -/obj/item/weapon/bedsheet/brown, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/carpet, -/area/medical/psych) -"bpt" = ( /obj/structure/sink{ icon_state = "sink"; dir = 8; @@ -39742,21 +39319,21 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bpu" = ( +"bps" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bpv" = ( +"bpt" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bpw" = ( +"bpu" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -39784,7 +39361,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bpx" = ( +"bpv" = ( /obj/machinery/chem_master, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -39792,7 +39369,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bpy" = ( +"bpw" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/dropper, /obj/effect/floor_decal/corner/mauve{ @@ -39808,14 +39385,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bpz" = ( +"bpx" = ( /obj/machinery/disposal{ name = "MediExpress - Reception" }, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/medical/medbay2) -"bpA" = ( +"bpy" = ( /obj/machinery/disposal{ name = "MediExpress - Surgery" }, @@ -39826,14 +39403,14 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay2) -"bpB" = ( +"bpz" = ( /obj/machinery/disposal{ name = "MediExpress - Storage" }, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/medical/medbay2) -"bpC" = ( +"bpA" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -39850,7 +39427,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"bpD" = ( +"bpB" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -39870,23 +39447,23 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/bridge) -"bpE" = ( +"bpC" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/carpet, /area/bridge/minibar) -"bpF" = ( +"bpD" = ( /obj/structure/table/wood, /obj/item/weapon/material/ashtray/bronze, /turf/simulated/floor/carpet, /area/bridge/minibar) -"bpG" = ( +"bpE" = ( /obj/machinery/vending/boozeomat{ req_access = list(19) }, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/bridge/minibar) -"bpH" = ( +"bpF" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -39903,12 +39480,12 @@ }, /turf/simulated/floor/plating, /area/bridge/minibar) -"bpI" = ( +"bpG" = ( /obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bpJ" = ( +"bpH" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -39924,7 +39501,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bpK" = ( +"bpI" = ( /obj/machinery/door/airlock/engineering{ name = "Science Substation"; req_one_access = list(11,24,7) @@ -39938,7 +39515,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/research) -"bpL" = ( +"bpJ" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -39952,20 +39529,20 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/research) -"bpM" = ( +"bpK" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "\[F.3] Research Substation Bypass" }, /turf/simulated/floor/plating, /area/maintenance/substation/research) -"bpN" = ( +"bpL" = ( /obj/machinery/conveyor{ dir = 8; id = "Robocompo" }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bpO" = ( +"bpM" = ( /obj/machinery/conveyor{ dir = 8; id = "Robocompo" @@ -39976,7 +39553,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bpP" = ( +"bpN" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ dir = 8; @@ -39985,21 +39562,21 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bpQ" = ( +"bpO" = ( /obj/machinery/conveyor{ dir = 8; id = "Robocompo" }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bpR" = ( +"bpP" = ( /obj/effect/floor_decal/industrial/loading{ icon_state = "loadingarea"; dir = 4 }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bpS" = ( +"bpQ" = ( /obj/structure/table/standard, /obj/item/weapon/cell/high, /obj/item/weapon/cell/high, @@ -40014,7 +39591,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bpT" = ( +"bpR" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /obj/item/weapon/reagent_containers/glass/bucket, @@ -40026,7 +39603,7 @@ /obj/item/device/flash/synthetic, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bpU" = ( +"bpS" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/regular{ empty = 1; @@ -40041,12 +39618,12 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bpV" = ( +"bpT" = ( /obj/machinery/recharge_station, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bpW" = ( +"bpU" = ( /obj/machinery/cryopod/robot, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/computer/cryopod/robot{ @@ -40054,7 +39631,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bpX" = ( +"bpV" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -40062,18 +39639,18 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/assembly/robotics) +"bpW" = ( +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/assembly/robotics) +"bpX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/assembly/robotics) "bpY" = ( -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bpZ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bqa" = ( -/obj/machinery/camera/network/civilian_main{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Central Corridor - Camera 5"; dir = 1 }, @@ -40084,7 +39661,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bqb" = ( +"bpZ" = ( /obj/structure/sign/directions/civ{ pixel_x = 32; pixel_y = -8 @@ -40107,7 +39684,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bqc" = ( +"bqa" = ( /obj/structure/sign/directions/civ{ pixel_x = -32; pixel_y = -8 @@ -40130,14 +39707,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bqd" = ( +"bqb" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bqe" = ( +"bqc" = ( /obj/item/device/radio/intercom{ pixel_y = 27 }, @@ -40146,21 +39723,21 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bqf" = ( +"bqd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bqg" = ( +"bqe" = ( /obj/structure/table/standard, /obj/item/bodybag/cryobag, /obj/item/bodybag/cryobag, /obj/item/weapon/reagent_containers/spray/cleaner, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bqh" = ( +"bqf" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -40171,7 +39748,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bqi" = ( +"bqg" = ( /obj/item/roller, /obj/item/roller{ pixel_y = 4 @@ -40190,7 +39767,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bqj" = ( +"bqh" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -40207,7 +39784,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/medical/em_preop) -"bqk" = ( +"bqi" = ( /obj/machinery/button/remote/airlock{ id = "reanimation_door"; name = "Door Control"; @@ -40221,7 +39798,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bql" = ( +"bqj" = ( /obj/structure/bed, /obj/item/weapon/bedsheet/medical, /obj/effect/floor_decal/corner/pink{ @@ -40230,10 +39807,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bqm" = ( +"bqk" = ( /turf/simulated/wall, /area/medical/em_preop) -"bqn" = ( +"bql" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/o2{ pixel_x = 4; @@ -40251,7 +39828,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bqo" = ( +"bqm" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -40260,7 +39837,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bqp" = ( +"bqn" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -40269,10 +39846,10 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bqq" = ( +"bqo" = ( /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bqr" = ( +"bqp" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/beakers{ pixel_x = 4; @@ -40284,7 +39861,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bqs" = ( +"bqq" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -40298,11 +39875,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/main_storage) -"bqt" = ( +"bqr" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/medical/triage) -"bqu" = ( +"bqs" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -40313,7 +39890,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/medical/triage) -"bqv" = ( +"bqt" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -40321,7 +39898,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bqw" = ( +"bqu" = ( /obj/effect/floor_decal/corner/beige, /obj/machinery/firealarm/east, /obj/structure/sink{ @@ -40336,10 +39913,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bqx" = ( +"bqv" = ( /turf/simulated/wall, /area/medical/triage) -"bqy" = ( +"bqw" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ dir = 8; @@ -40358,7 +39935,7 @@ }, /turf/simulated/floor/plating, /area/medical/exam_room) -"bqz" = ( +"bqx" = ( /obj/machinery/door/airlock/medical{ id_tag = null; name = "Examination Room"; @@ -40375,56 +39952,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bqA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Mental Heath"; - req_access = list(64) - }, -/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/wood, -/area/medical/psych) "bqB" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Phy" - }, -/obj/structure/window/reinforced/polarized{ - id = "Phy" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Phy" - }, -/turf/simulated/floor/plating, -/area/medical/psych) -"bqC" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Phy" - }, -/obj/structure/window/reinforced/polarized{ - id = "Phy" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Phy" - }, -/turf/simulated/floor/plating, -/area/medical/psych) -"bqD" = ( /obj/machinery/door/airlock/glass_medical{ name = "Chemistry Laboratory"; req_access = list(33) @@ -40439,7 +39967,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bqE" = ( +"bqC" = ( /obj/machinery/smartfridge/secure/medbay{ density = 1; pixel_y = 0 @@ -40447,7 +39975,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/chemistry) -"bqF" = ( +"bqD" = ( /obj/machinery/door/firedoor, /obj/structure/table/reinforced, /obj/machinery/door/blast/shutters{ @@ -40467,7 +39995,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bqG" = ( +"bqE" = ( /obj/structure/disposalpipe/segment, /obj/machinery/alarm{ dir = 4; @@ -40477,16 +40005,16 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/medical/medbay2) -"bqH" = ( +"bqF" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/medical/medbay2) -"bqI" = ( +"bqG" = ( /obj/structure/disposalpipe/segment, /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/medical/medbay2) -"bqJ" = ( +"bqH" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -40498,7 +40026,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bqK" = ( +"bqI" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -40511,14 +40039,14 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/bridge) -"bqL" = ( +"bqJ" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled, /area/bridge) -"bqM" = ( +"bqK" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 @@ -40526,11 +40054,11 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/bridge/minibar) -"bqN" = ( +"bqL" = ( /obj/machinery/firealarm/south, /turf/simulated/floor/carpet, /area/bridge/minibar) -"bqO" = ( +"bqM" = ( /obj/structure/table/wood, /obj/machinery/chemical_dispenser/bar_soft/full, /obj/machinery/camera/network/command{ @@ -40540,12 +40068,12 @@ }, /turf/simulated/floor/carpet, /area/bridge/minibar) -"bqP" = ( +"bqN" = ( /obj/machinery/smartfridge/drinks, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/bridge/minibar) -"bqQ" = ( +"bqO" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -40558,7 +40086,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/bridge/minibar) -"bqR" = ( +"bqP" = ( /obj/structure/closet, /obj/random/loot, /obj/machinery/light/small/emergency{ @@ -40566,14 +40094,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bqS" = ( +"bqQ" = ( /turf/simulated/wall/r_wall, /area/server) -"bqT" = ( +"bqR" = ( /obj/structure/sign/poster, /turf/simulated/wall, /area/assembly/robotics) -"bqU" = ( +"bqS" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -40593,7 +40121,7 @@ }, /turf/simulated/floor/plating, /area/assembly/robotics) -"bqV" = ( +"bqT" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -40611,7 +40139,7 @@ /obj/structure/sign/flag/nanotrasen/left, /turf/simulated/floor/plating, /area/assembly/robotics) -"bqW" = ( +"bqU" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -40629,7 +40157,7 @@ /obj/structure/sign/flag/nanotrasen/right, /turf/simulated/floor/plating, /area/assembly/robotics) -"bqX" = ( +"bqV" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -40649,7 +40177,7 @@ }, /turf/simulated/floor/plating, /area/assembly/robotics) -"bqY" = ( +"bqW" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -40673,7 +40201,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bqZ" = ( +"bqX" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -40681,7 +40209,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bra" = ( +"bqY" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -40691,13 +40219,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"brb" = ( +"bqZ" = ( /obj/item/device/radio/intercom{ pixel_y = 27 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"brc" = ( +"bra" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -40707,18 +40235,18 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"brd" = ( +"brb" = ( /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bre" = ( +"brc" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"brf" = ( +"brd" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -40735,19 +40263,19 @@ }, /turf/simulated/floor/plating, /area/medical/surgerywing) -"brg" = ( +"bre" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"brh" = ( +"brf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bri" = ( +"brg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -40756,7 +40284,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"brj" = ( +"brh" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/o2{ pixel_x = 4; @@ -40770,26 +40298,18 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"brk" = ( +"bri" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"brl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Recovery Ward"; - req_access = list(66) - }, -/turf/simulated/floor/tiled/white, -/area/medical/em_preop) -"brm" = ( +"brk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"brn" = ( +"brl" = ( /obj/structure/curtain/medical, /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; @@ -40797,7 +40317,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bro" = ( +"brm" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/toxin{ pixel_x = 4; @@ -40814,14 +40334,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"brp" = ( +"brn" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"brq" = ( +"bro" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -40834,11 +40354,11 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"brr" = ( +"brp" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"brs" = ( +"brq" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/lime{ dir = 6 @@ -40861,7 +40381,7 @@ /obj/item/weapon/storage/box/rxglasses, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"brt" = ( +"brr" = ( /obj/machinery/bodyscanner{ icon_state = "body_scanner_0"; dir = 4 @@ -40870,7 +40390,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/medical/triage) -"bru" = ( +"brs" = ( /obj/machinery/body_scanconsole{ icon_state = "body_scannerconsole"; dir = 8 @@ -40884,7 +40404,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/medical/triage) -"brv" = ( +"brt" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 6 @@ -40892,7 +40412,7 @@ /obj/effect/floor_decal/sign/gtr, /turf/simulated/floor/tiled/white, /area/medical/triage) -"brw" = ( +"bru" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ @@ -40905,7 +40425,7 @@ }, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"brx" = ( +"brv" = ( /obj/item/device/radio/intercom{ broadcasting = 1; frequency = 1449; @@ -40915,7 +40435,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bry" = ( +"brw" = ( /obj/machinery/atmospherics/unary/cryo_cell, /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; @@ -40923,7 +40443,7 @@ }, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"brz" = ( +"brx" = ( /obj/machinery/atmospherics/unary/cryo_cell, /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; @@ -40931,10 +40451,10 @@ }, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"brA" = ( +"bry" = ( /turf/simulated/wall, /area/medical/gen_treatment) -"brB" = ( +"brz" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -40947,7 +40467,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brC" = ( +"brA" = ( /obj/effect/floor_decal/sign/ex, /obj/structure/cable/green{ d1 = 1; @@ -40959,7 +40479,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brD" = ( +"brB" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -40972,22 +40492,11 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brE" = ( -/obj/effect/floor_decal/sign/p, -/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/medical/medbay2) -"brF" = ( +"brD" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brG" = ( +"brE" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -40997,7 +40506,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brH" = ( +"brF" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -41013,7 +40522,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brI" = ( +"brG" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -41026,7 +40535,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brJ" = ( +"brH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -41038,7 +40547,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brK" = ( +"brI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -41055,7 +40564,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brL" = ( +"brJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -41070,7 +40579,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brM" = ( +"brK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -41082,7 +40591,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brN" = ( +"brL" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/lime{ dir = 10 @@ -41102,7 +40611,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brO" = ( +"brM" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -41118,7 +40627,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brP" = ( +"brN" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -41135,7 +40644,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brQ" = ( +"brO" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -41146,7 +40655,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brR" = ( +"brP" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/lime{ dir = 10 @@ -41168,7 +40677,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brS" = ( +"brQ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -41194,7 +40703,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"brT" = ( +"brR" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 4; @@ -41226,7 +40735,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"brU" = ( +"brS" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -41252,7 +40761,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"brV" = ( +"brT" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -41264,7 +40773,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/minibar) -"brW" = ( +"brU" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -41276,7 +40785,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/minibar) -"brX" = ( +"brV" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -41290,7 +40799,7 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/research_port) -"brY" = ( +"brW" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -41306,7 +40815,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/research_port) -"brZ" = ( +"brX" = ( /obj/machinery/r_n_d/server/robotics, /turf/simulated/floor/bluegrid{ name = "Server Base"; @@ -41315,7 +40824,7 @@ temperature = 80 }, /area/server) -"bsa" = ( +"brY" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 4; icon_state = "map_vent_out"; @@ -41328,7 +40837,7 @@ temperature = 80 }, /area/server) -"bsb" = ( +"brZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ icon_state = "intact"; dir = 4 @@ -41343,7 +40852,7 @@ temperature = 80 }, /area/server) -"bsc" = ( +"bsa" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -41367,7 +40876,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/server) -"bsd" = ( +"bsb" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10; icon_state = "intact" @@ -41378,7 +40887,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/dark, /area/server) -"bse" = ( +"bsc" = ( /obj/machinery/power/apc/high{ dir = 1; name = "north bump"; @@ -41395,7 +40904,7 @@ }, /turf/simulated/floor/tiled/dark, /area/server) -"bsf" = ( +"bsd" = ( /obj/machinery/atmospherics/unary/freezer{ dir = 2; icon_state = "freezer_1"; @@ -41410,7 +40919,7 @@ }, /turf/simulated/floor/tiled/dark, /area/server) -"bsg" = ( +"bse" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 8 @@ -41420,31 +40929,31 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsh" = ( +"bsf" = ( /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsi" = ( +"bsg" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsj" = ( +"bsh" = ( /obj/machinery/status_display{ pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsk" = ( +"bsi" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsl" = ( +"bsj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -41459,7 +40968,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsm" = ( +"bsk" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 1 @@ -41469,18 +40978,18 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsn" = ( +"bsl" = ( /obj/machinery/atm{ pixel_y = 32 }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bso" = ( +"bsm" = ( /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsp" = ( +"bsn" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -41492,10 +41001,10 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsq" = ( +"bso" = ( /turf/simulated/wall/r_wall, /area/rnd/research) -"bsr" = ( +"bsp" = ( /obj/structure/sign/nosmoking_2{ pixel_x = -32 }, @@ -41504,18 +41013,18 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bss" = ( +"bsq" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Entrance" }, /obj/structure/closet/firecloset, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bst" = ( +"bsr" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsu" = ( +"bss" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -41525,7 +41034,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bsv" = ( +"bst" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -41533,13 +41042,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bsw" = ( +"bsu" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 }, /obj/machinery/light, -/obj/machinery/camera/network/civilian_main{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Central Corridor"; dir = 1 }, @@ -41548,7 +41057,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bsx" = ( +"bsv" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -41564,7 +41073,7 @@ }, /turf/simulated/floor/plating, /area/medical/surgerywing) -"bsy" = ( +"bsw" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -41576,7 +41085,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bsz" = ( +"bsx" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -41587,7 +41096,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bsA" = ( +"bsy" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -41602,7 +41111,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bsB" = ( +"bsz" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -41615,7 +41124,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bsC" = ( +"bsA" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -41640,7 +41149,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bsD" = ( +"bsB" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -41648,7 +41157,7 @@ /obj/structure/table/rack, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bsE" = ( +"bsC" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/glass/bottle/antitoxin{ pixel_x = 6; @@ -41662,7 +41171,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bsF" = ( +"bsD" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -41674,14 +41183,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bsG" = ( +"bsE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bsH" = ( +"bsF" = ( /obj/structure/bed, /obj/item/weapon/bedsheet/medical, /obj/effect/floor_decal/corner/pink{ @@ -41698,7 +41207,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bsI" = ( +"bsG" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/adv{ pixel_x = 4; @@ -41711,7 +41220,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bsJ" = ( +"bsH" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -41724,19 +41233,19 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bsK" = ( +"bsI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bsL" = ( +"bsJ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bsM" = ( +"bsK" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, @@ -41746,12 +41255,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bsN" = ( +"bsL" = ( /obj/effect/floor_decal/corner/pink, /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bsO" = ( +"bsM" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 10 @@ -41761,7 +41270,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bsP" = ( +"bsN" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 10 @@ -41782,7 +41291,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bsQ" = ( +"bsO" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 8 @@ -41802,7 +41311,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bsR" = ( +"bsP" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden{ icon_state = "intact"; @@ -41822,7 +41331,7 @@ }, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"bsS" = ( +"bsQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ icon_state = "intact"; dir = 4 @@ -41834,14 +41343,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bsT" = ( +"bsR" = ( /obj/effect/floor_decal/corner/beige/full, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/manifold/hidden, /obj/machinery/meter, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"bsU" = ( +"bsS" = ( /obj/effect/floor_decal/corner/beige/full{ icon_state = "corner_white_full"; dir = 4 @@ -41853,7 +41362,7 @@ }, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"bsV" = ( +"bsT" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ @@ -41866,7 +41375,7 @@ }, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"bsW" = ( +"bsU" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -41880,7 +41389,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bsX" = ( +"bsV" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -41896,7 +41405,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bsY" = ( +"bsW" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -41915,23 +41424,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bsZ" = ( -/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/light, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/medbay2) -"bta" = ( +"bsY" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 4; @@ -41946,7 +41439,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"btb" = ( +"bsZ" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -41967,7 +41460,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"btc" = ( +"bta" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -41983,7 +41476,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"btd" = ( +"btb" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42002,7 +41495,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bte" = ( +"btc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42014,7 +41507,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"btf" = ( +"btd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42027,7 +41520,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"btg" = ( +"bte" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42039,7 +41532,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bth" = ( +"btf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42053,7 +41546,7 @@ /obj/effect/floor_decal/sign/c2, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bti" = ( +"btg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42076,31 +41569,31 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"btj" = ( +"bth" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, /area/medical/temp_morgue) -"btk" = ( +"bti" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall, /area/medical/temp_morgue) -"btl" = ( +"btj" = ( /turf/simulated/wall, /area/medical/temp_morgue) -"btm" = ( +"btk" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, /area/medical/temp_morgue) -"btn" = ( +"btl" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/bridge) -"bto" = ( +"btm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -42112,7 +41605,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/research_port) -"btp" = ( +"btn" = ( /obj/machinery/alarm/server{ dir = 4; pixel_x = -22; @@ -42131,7 +41624,7 @@ temperature = 80 }, /area/server) -"btq" = ( +"bto" = ( /obj/effect/landmark{ name = "blobstart" }, @@ -42145,7 +41638,7 @@ temperature = 80 }, /area/server) -"btr" = ( +"btp" = ( /turf/simulated/floor/bluegrid{ base_icon = 'icons/turf/flooring/plating.dmi'; icon = 'icons/turf/flooring/tiles.dmi'; @@ -42156,7 +41649,7 @@ temperature = 80 }, /area/server) -"bts" = ( +"btq" = ( /obj/machinery/door/firedoor{ dir = 8; name = "Firelock West" @@ -42173,7 +41666,7 @@ /obj/structure/plasticflaps/airtight, /turf/simulated/floor/tiled/dark, /area/server) -"btt" = ( +"btr" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8; icon_state = "map" @@ -42181,7 +41674,7 @@ /obj/machinery/meter, /turf/simulated/floor/tiled/dark, /area/server) -"btu" = ( +"bts" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /obj/structure/cable/green{ d1 = 1; @@ -42190,7 +41683,7 @@ }, /turf/simulated/floor/tiled/dark, /area/server) -"btv" = ( +"btt" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" @@ -42202,7 +41695,7 @@ }, /turf/simulated/floor/tiled/dark, /area/server) -"btw" = ( +"btu" = ( /obj/machinery/door/airlock/command{ name = "Server Room"; req_access = list(30) @@ -42215,7 +41708,7 @@ }, /turf/simulated/floor/tiled/dark, /area/server) -"btx" = ( +"btv" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -42227,7 +41720,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bty" = ( +"btw" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -42238,7 +41731,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"btz" = ( +"btx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -42257,7 +41750,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"btA" = ( +"bty" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -42271,7 +41764,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"btB" = ( +"btz" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -42290,7 +41783,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"btC" = ( +"btA" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -42306,7 +41799,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/research) -"btD" = ( +"btB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -42318,7 +41811,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"btE" = ( +"btC" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -42336,7 +41829,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"btF" = ( +"btD" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -42360,7 +41853,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"btG" = ( +"btE" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -42371,7 +41864,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"btH" = ( +"btF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ id_tag = "researchdoor"; @@ -42388,7 +41881,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"btI" = ( +"btG" = ( /obj/structure/sign/directions/evac{ dir = 1; icon_state = "direction_evac"; @@ -42409,7 +41902,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"btJ" = ( +"btH" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -42425,14 +41918,14 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"btK" = ( +"btI" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass{ name = "Holodeck" }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"btL" = ( +"btJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -42456,7 +41949,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"btM" = ( +"btK" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/structure/closet/secure_closet/medical_wall{ name = "O- Blood Locker"; @@ -42467,7 +41960,7 @@ /obj/item/weapon/reagent_containers/blood/OMinus, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"btN" = ( +"btL" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -42480,7 +41973,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"btO" = ( +"btM" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -42497,18 +41990,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"btP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "reanimation_door"; - name = "Recovery Ward"; - req_access = list(66) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/em_preop) -"btQ" = ( +"btO" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -42525,7 +42007,7 @@ }, /turf/simulated/floor/plating, /area/medical/em_preop) -"btR" = ( +"btP" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -42539,6 +42021,22 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/main_storage) +"btR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Main Storage"; + req_access = list(66) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/main_storage) "btS" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -42554,22 +42052,6 @@ /turf/simulated/floor/plating, /area/medical/main_storage) "btT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Main Storage"; - req_access = list(66) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"btU" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ @@ -42585,7 +42067,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/medical/icu) -"btV" = ( +"btU" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -42604,7 +42086,7 @@ }, /turf/simulated/floor/tiled, /area/medical/icu) -"btW" = ( +"btV" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ autoclose = 0; @@ -42615,7 +42097,7 @@ }, /turf/simulated/floor/tiled, /area/medical/icu) -"btX" = ( +"btW" = ( /obj/machinery/button/remote/blast_door{ id = "GTRshutters"; name = "General Treatment Shutters Control"; @@ -42633,10 +42115,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"btY" = ( +"btX" = ( /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"btZ" = ( +"btY" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ autoclose = 0; @@ -42647,7 +42129,7 @@ }, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"bua" = ( +"btZ" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -42658,7 +42140,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bub" = ( +"bua" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -42675,10 +42157,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"buc" = ( +"bub" = ( /turf/simulated/wall/r_wall, /area/medical/medbay2) -"bud" = ( +"buc" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -42690,7 +42172,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/medbay2) -"bue" = ( +"bud" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -42706,13 +42188,13 @@ }, /turf/simulated/floor/plating, /area/medical/medbay2) -"buf" = ( +"bue" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, /area/medical/medbay2) -"bug" = ( +"buf" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -42727,22 +42209,22 @@ }, /turf/simulated/floor/plating, /area/medical/medbay2) +"bug" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/medbay2) "buh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/medbay2) -"bui" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42758,7 +42240,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/genetics_cloning) -"buj" = ( +"bui" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42774,7 +42256,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/genetics_cloning) -"buk" = ( +"buj" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -42792,7 +42274,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bul" = ( +"buk" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42812,7 +42294,7 @@ }, /turf/simulated/floor/plating, /area/medical/genetics_cloning) -"bum" = ( +"bul" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42822,7 +42304,7 @@ temperature = 278 }, /area/medical/temp_morgue) -"bun" = ( +"bum" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -42834,14 +42316,14 @@ temperature = 278 }, /area/medical/temp_morgue) -"buo" = ( +"bun" = ( /obj/structure/sign/nosmoking_2{ pixel_y = 32 }, /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled, /area/bridge) -"bup" = ( +"buo" = ( /obj/structure/flora/pottedplant/random, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -42849,7 +42331,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"buq" = ( +"bup" = ( /obj/machinery/r_n_d/server/core, /turf/simulated/floor/bluegrid{ name = "Server Base"; @@ -42858,7 +42340,7 @@ temperature = 80 }, /area/server) -"bur" = ( +"buq" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 4; external_pressure_bound = 0; @@ -42879,7 +42361,7 @@ temperature = 80 }, /area/server) -"bus" = ( +"bur" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -42903,25 +42385,25 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/server) -"but" = ( +"bus" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" }, /turf/simulated/floor/tiled/dark, /area/server) -"buu" = ( +"but" = ( /obj/machinery/computer/rdservercontrol, /turf/simulated/floor/tiled/dark, /area/server) -"buv" = ( +"buu" = ( /obj/machinery/computer/message_monitor, /obj/structure/sign/nosmoking_1{ pixel_y = -32 }, /turf/simulated/floor/tiled/dark, /area/server) -"buw" = ( +"buv" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -42930,7 +42412,7 @@ /obj/effect/floor_decal/corner/paleblue/full, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bux" = ( +"buw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -42944,13 +42426,13 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buy" = ( +"bux" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buz" = ( +"buy" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42960,7 +42442,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buA" = ( +"buz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42972,7 +42454,7 @@ /obj/effect/floor_decal/corner/mauve, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buB" = ( +"buA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -42990,7 +42472,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buC" = ( +"buB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -43000,13 +42482,13 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buD" = ( +"buC" = ( /obj/structure/disposalpipe/junction{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buE" = ( +"buD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -43015,7 +42497,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buF" = ( +"buE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -43033,7 +42515,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buG" = ( +"buF" = ( /obj/structure/sign/nosmoking_2{ pixel_x = -32 }, @@ -43042,11 +42524,11 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buH" = ( +"buG" = ( /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buI" = ( +"buH" = ( /obj/machinery/shower{ dir = 1 }, @@ -43056,8 +42538,8 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buJ" = ( -/obj/machinery/camera/network/civilian_main{ +"buI" = ( +/obj/machinery/camera/network/civilian_west{ c_tag = "Central Corridor - Research Entrance"; dir = 4 }, @@ -43070,7 +42552,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"buK" = ( +"buJ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -43085,11 +42567,11 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"buL" = ( +"buK" = ( /turf/simulated/floor/holofloor/reinforced, /area/holodeck/alphadeck) -"buM" = ( -/obj/machinery/camera/network/civilian_main{ +"buL" = ( +/obj/machinery/camera/network/civilian_west{ c_tag = "Central Corridor - Medical Entrance"; dir = 8 }, @@ -43098,7 +42580,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"buN" = ( +"buM" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -43124,18 +42606,18 @@ }, /turf/simulated/floor/plating, /area/medical/emt) -"buO" = ( +"buN" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/toxin, /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"buP" = ( +"buO" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/o2, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"buQ" = ( +"buP" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/fire, /obj/machinery/light{ @@ -43143,7 +42625,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"buR" = ( +"buQ" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/adv, /obj/machinery/alarm{ @@ -43161,7 +42643,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"buS" = ( +"buR" = ( /obj/machinery/power/apc{ dir = 1; is_critical = 1; @@ -43184,7 +42666,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"buT" = ( +"buS" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_medical{ name = "EMT Quarters"; @@ -43206,7 +42688,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"buU" = ( +"buT" = ( /obj/effect/floor_decal/sign/emt, /obj/structure/cable/green{ d1 = 4; @@ -43224,7 +42706,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"buV" = ( +"buU" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -43241,7 +42723,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"buW" = ( +"buV" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -43264,7 +42746,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"buX" = ( +"buW" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -43285,7 +42767,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"buY" = ( +"buX" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; @@ -43307,7 +42789,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"buZ" = ( +"buY" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 9 @@ -43324,7 +42806,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bva" = ( +"buZ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -43344,7 +42826,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bvb" = ( +"bva" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 4 @@ -43368,7 +42850,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bvc" = ( +"bvb" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -43389,7 +42871,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bvd" = ( +"bvc" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -43414,7 +42896,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bve" = ( +"bvd" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -43439,7 +42921,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bvf" = ( +"bve" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -43463,7 +42945,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bvg" = ( +"bvf" = ( /obj/effect/floor_decal/corner/pink, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; @@ -43486,7 +42968,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bvh" = ( +"bvg" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -43503,11 +42985,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/icu) -"bvi" = ( +"bvh" = ( /obj/machinery/atmospherics/unary/cryo_cell, /turf/simulated/floor/tiled, /area/medical/icu) -"bvj" = ( +"bvi" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; @@ -43532,7 +43014,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/medical/icu) -"bvk" = ( +"bvj" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -43543,7 +43025,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bvl" = ( +"bvk" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ d1 = 1; @@ -43557,7 +43039,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bvm" = ( +"bvl" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -43569,7 +43051,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bvn" = ( +"bvm" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -43578,7 +43060,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bvo" = ( +"bvn" = ( /obj/structure/window/reinforced, /obj/structure/table/standard, /obj/item/weapon/storage/box/masks{ @@ -43592,7 +43074,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bvp" = ( +"bvo" = ( /obj/structure/window/reinforced, /obj/structure/table/standard, /obj/item/device/mass_spectrometer, @@ -43602,7 +43084,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bvq" = ( +"bvp" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -43619,7 +43101,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/gen_treatment) -"bvr" = ( +"bvq" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -43631,7 +43113,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bvs" = ( +"bvr" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -43640,10 +43122,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bvt" = ( +"bvs" = ( /turf/simulated/open, /area/turbolift/medical_station) -"bvu" = ( +"bvt" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -43659,10 +43141,10 @@ /obj/item/weapon/reagent_containers/spray/cleaner, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bvv" = ( +"bvu" = ( /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bvw" = ( +"bvv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -43681,7 +43163,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bvx" = ( +"bvw" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -43699,7 +43181,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bvy" = ( +"bvx" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ name = "Temporary Morgue"; @@ -43722,7 +43204,7 @@ temperature = 278 }, /area/medical/temp_morgue) -"bvz" = ( +"bvy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -43739,7 +43221,7 @@ temperature = 278 }, /area/medical/temp_morgue) -"bvA" = ( +"bvz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -43760,7 +43242,7 @@ temperature = 278 }, /area/medical/temp_morgue) -"bvB" = ( +"bvA" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -43772,7 +43254,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bvC" = ( +"bvB" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -43786,7 +43268,7 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, /area/bridge) -"bvD" = ( +"bvC" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -43796,14 +43278,14 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bvE" = ( +"bvD" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"bvF" = ( +"bvE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -43816,7 +43298,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"bvG" = ( +"bvF" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -43827,7 +43309,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bvH" = ( +"bvG" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -43840,10 +43322,10 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, /area/bridge) -"bvI" = ( +"bvH" = ( /turf/simulated/wall/r_wall, /area/rnd/rdoffice) -"bvJ" = ( +"bvI" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -43855,7 +43337,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bvK" = ( +"bvJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -43866,7 +43348,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bvL" = ( +"bvK" = ( /obj/structure/closet/medical_wall{ pixel_x = 32 }, @@ -43874,10 +43356,10 @@ /obj/item/stack/medical/ointment, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bvM" = ( +"bvL" = ( /turf/simulated/wall/r_wall, /area/rnd/xenobiology/xenoflora) -"bvN" = ( +"bvM" = ( /obj/machinery/door/airlock/research{ name = "Xenoflora Research"; req_access = list(55) @@ -43893,10 +43375,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"bvO" = ( +"bvN" = ( /turf/simulated/wall/r_wall, /area/rnd/lab) -"bvP" = ( +"bvO" = ( /obj/machinery/door/airlock/research{ name = "Research and Development"; req_access = list(7) @@ -43912,7 +43394,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bvQ" = ( +"bvP" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -43924,7 +43406,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bvR" = ( +"bvQ" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -43939,7 +43421,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bvS" = ( +"bvR" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 8; name = "Chapel"; @@ -43947,7 +43429,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bvT" = ( +"bvS" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -43966,13 +43448,13 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bvU" = ( +"bvT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bvV" = ( +"bvU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -43982,7 +43464,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bvW" = ( +"bvV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 8; @@ -43993,10 +43475,10 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bvX" = ( +"bvW" = ( /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bvY" = ( +"bvX" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -44014,7 +43496,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/emt) -"bvZ" = ( +"bvY" = ( /obj/structure/bed/chair/wheelchair{ icon_state = "wheelchair"; dir = 4 @@ -44029,7 +43511,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bwa" = ( +"bvZ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -44037,7 +43519,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bwb" = ( +"bwa" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/multi_tile/glass{ autoclose = 1; @@ -44052,7 +43534,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bwc" = ( +"bwb" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 9 @@ -44062,21 +43544,21 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bwd" = ( +"bwc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bwe" = ( +"bwd" = ( /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bwf" = ( +"bwe" = ( /obj/item/device/radio/intercom{ pixel_y = -27 }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bwg" = ( +"bwf" = ( /obj/machinery/requests_console{ department = "Medical Bay"; pixel_x = 0; @@ -44084,13 +43566,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bwh" = ( +"bwg" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bwi" = ( +"bwh" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -44105,7 +43587,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bwj" = ( +"bwi" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -44119,7 +43601,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/icu) -"bwk" = ( +"bwj" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 10 @@ -44134,7 +43616,7 @@ }, /turf/simulated/floor/tiled, /area/medical/icu) -"bwl" = ( +"bwk" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 10 @@ -44145,7 +43627,7 @@ }, /turf/simulated/floor/tiled, /area/medical/icu) -"bwm" = ( +"bwl" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -44156,11 +43638,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bwn" = ( +"bwm" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bwo" = ( +"bwn" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/structure/closet/secure_closet/medical_wall{ name = "O- Blood Locker"; @@ -44175,18 +43657,18 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bwp" = ( +"bwo" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bwq" = ( +"bwp" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bwr" = ( +"bwq" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 6 @@ -44206,7 +43688,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bws" = ( +"bwr" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -44220,7 +43702,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/gen_treatment) -"bwt" = ( +"bws" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -44229,7 +43711,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bwu" = ( +"bwt" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -44248,14 +43730,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bwv" = ( +"bwu" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ icon_state = "map_scrubber_on"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bww" = ( +"bwv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -44267,7 +43749,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bwx" = ( +"bww" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -44280,14 +43762,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bwy" = ( +"bwx" = ( /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 }, /area/medical/temp_morgue) -"bwz" = ( +"bwy" = ( /obj/machinery/alarm/cold{ dir = 1; pixel_y = -22 @@ -44299,7 +43781,7 @@ temperature = 278 }, /area/medical/temp_morgue) -"bwA" = ( +"bwz" = ( /obj/machinery/camera/network/medbay{ c_tag = "Medical - Temporary Morgue"; dir = 1 @@ -44313,11 +43795,11 @@ temperature = 278 }, /area/medical/temp_morgue) -"bwB" = ( +"bwA" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bwC" = ( +"bwB" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -44329,7 +43811,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bwD" = ( +"bwC" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -44339,7 +43821,7 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, /area/bridge) -"bwE" = ( +"bwD" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -44349,7 +43831,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bwF" = ( +"bwE" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -44361,7 +43843,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"bwG" = ( +"bwF" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -44371,7 +43853,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bwH" = ( +"bwG" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -44382,7 +43864,7 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, /area/bridge) -"bwI" = ( +"bwH" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -44394,7 +43876,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bwJ" = ( +"bwI" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -44403,7 +43885,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bwK" = ( +"bwJ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -44416,12 +43898,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bwL" = ( +"bwK" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bwM" = ( +"bwL" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -44434,7 +43916,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bwN" = ( +"bwM" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -44447,7 +43929,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bwO" = ( +"bwN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -44472,7 +43954,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bwP" = ( +"bwO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -44487,7 +43969,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bwQ" = ( +"bwP" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -44503,7 +43985,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bwR" = ( +"bwQ" = ( /obj/machinery/keycard_auth{ pixel_x = 0; pixel_y = 24 @@ -44526,7 +44008,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bwS" = ( +"bwR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -44544,7 +44026,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bwT" = ( +"bwS" = ( /obj/machinery/status_display{ layer = 4; pixel_x = 0; @@ -44567,7 +44049,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bwU" = ( +"bwT" = ( /obj/machinery/door/airlock/command{ id_tag = "researchdoor"; name = "Research Director's Office"; @@ -44595,7 +44077,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bwV" = ( +"bwU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -44615,7 +44097,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bwW" = ( +"bwV" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -44638,13 +44120,13 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bwX" = ( +"bwW" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bwY" = ( +"bwX" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -44661,7 +44143,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/xenobiology/xenoflora) -"bwZ" = ( +"bwY" = ( /obj/effect/floor_decal/corner/green/full{ icon_state = "corner_white_full"; dir = 8 @@ -44672,7 +44154,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bxa" = ( +"bwZ" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -44688,7 +44170,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bxb" = ( +"bxa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 1; @@ -44708,7 +44190,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bxc" = ( +"bxb" = ( /obj/structure/sign/nosmoking_1{ pixel_y = 32 }, @@ -44732,7 +44214,7 @@ /obj/item/weapon/storage/box/syringes, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bxd" = ( +"bxc" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -44749,7 +44231,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bxe" = ( +"bxd" = ( /obj/structure/closet/secure_closet/hydroponics{ req_access = list(47) }, @@ -44759,7 +44241,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bxf" = ( +"bxe" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -44774,7 +44256,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bxg" = ( +"bxf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -44788,17 +44270,17 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bxh" = ( +"bxg" = ( /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bxi" = ( +"bxh" = ( /obj/structure/sink{ pixel_y = 28 }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bxj" = ( +"bxi" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -44812,7 +44294,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bxk" = ( +"bxj" = ( /obj/structure/table/reinforced, /obj/machinery/door/window{ base_state = "right"; @@ -44837,8 +44319,8 @@ }, /turf/simulated/floor/tiled, /area/rnd/lab) -"bxl" = ( -/obj/machinery/camera/network/civilian_main{ +"bxk" = ( +/obj/machinery/camera/network/civilian_west{ c_tag = "Central Corridor - Camera 4" }, /obj/effect/floor_decal/corner/mauve/full{ @@ -44847,7 +44329,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bxm" = ( +"bxl" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -44856,14 +44338,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bxn" = ( +"bxm" = ( /obj/machinery/station_map{ dir = 4; pixel_x = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bxo" = ( +"bxn" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -44880,7 +44362,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bxp" = ( +"bxo" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -44893,15 +44375,15 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bxq" = ( +"bxp" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bxr" = ( +"bxq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bxs" = ( +"bxr" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -44916,10 +44398,10 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bxt" = ( +"bxs" = ( /turf/simulated/wall, /area/medical/emt) -"bxu" = ( +"bxt" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 9 @@ -44930,7 +44412,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bxv" = ( +"bxu" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -44942,14 +44424,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bxw" = ( +"bxv" = ( /obj/machinery/vending/medical, /turf/simulated/wall, /area/medical/em_preop) -"bxx" = ( +"bxw" = ( /turf/simulated/wall, /area/medical/medbay) -"bxy" = ( +"bxx" = ( /obj/machinery/door/airlock{ name = "Public Bathrooms"; req_access = null @@ -44958,20 +44440,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bxz" = ( +"bxy" = ( /turf/simulated/wall, /area/medical/cryo) -"bxA" = ( +"bxz" = ( /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bxB" = ( +"bxA" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bxC" = ( +"bxB" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -44984,7 +44466,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bxD" = ( +"bxC" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -45002,7 +44484,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bxE" = ( +"bxD" = ( /obj/machinery/hologram/holopad, /obj/structure/sink{ dir = 8; @@ -45016,7 +44498,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bxF" = ( +"bxE" = ( /obj/machinery/iv_drip, /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; @@ -45030,7 +44512,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bxG" = ( +"bxF" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -45045,7 +44527,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bxH" = ( +"bxG" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -45053,7 +44535,7 @@ /obj/machinery/dna_scannernew, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bxI" = ( +"bxH" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -45062,7 +44544,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bxJ" = ( +"bxI" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -45070,7 +44552,7 @@ /obj/machinery/computer/med_data, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bxK" = ( +"bxJ" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -45081,7 +44563,7 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, /area/bridge) -"bxL" = ( +"bxK" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -45096,7 +44578,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bxM" = ( +"bxL" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -45109,14 +44591,14 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"bxN" = ( +"bxM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"bxO" = ( +"bxN" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -45129,7 +44611,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bxP" = ( +"bxO" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -45140,7 +44622,7 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, /area/bridge) -"bxQ" = ( +"bxP" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1379; @@ -45161,7 +44643,7 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"bxR" = ( +"bxQ" = ( /obj/machinery/door/airlock/external{ frequency = 1379; icon_state = "door_locked"; @@ -45172,7 +44654,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bxS" = ( +"bxR" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4; frequency = 1379; @@ -45204,7 +44686,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bxT" = ( +"bxS" = ( /obj/machinery/door/airlock/external{ frequency = 1379; icon_state = "door_locked"; @@ -45218,7 +44700,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bxU" = ( +"bxT" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1379; @@ -45234,7 +44716,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bxV" = ( +"bxU" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; @@ -45242,17 +44724,17 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bxW" = ( +"bxV" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bxX" = ( +"bxW" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bxY" = ( +"bxX" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -45261,14 +44743,14 @@ }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bxZ" = ( +"bxY" = ( /obj/machinery/door/window{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bya" = ( +"bxZ" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -45282,17 +44764,17 @@ }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"byb" = ( +"bya" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/papershredder, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"byc" = ( +"byb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"byd" = ( +"byc" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -45301,7 +44783,7 @@ /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bye" = ( +"byd" = ( /obj/structure/table/standard, /obj/item/weapon/stamp/rd{ pixel_x = 3; @@ -45317,41 +44799,18 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"byf" = ( +"bye" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) "byg" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "RDTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "RDTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "RDTint" - }, -/turf/simulated/floor/plating, -/area/rnd/rdoffice) -"byh" = ( /obj/effect/floor_decal/corner/purple{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"byi" = ( +"byh" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -45364,7 +44823,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/xenobiology/xenoflora) -"byj" = ( +"byi" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; @@ -45372,24 +44831,24 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"byk" = ( +"byj" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"byl" = ( +"byk" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bym" = ( +"byl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"byn" = ( +"bym" = ( /obj/structure/closet/secure_closet/hydroponics{ req_access = list(47) }, @@ -45402,7 +44861,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"byo" = ( +"byn" = ( /obj/item/toy/figure/scientist, /obj/machinery/autolathe, /obj/effect/floor_decal/corner/mauve{ @@ -45414,7 +44873,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"byp" = ( +"byo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -45427,7 +44886,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"byq" = ( +"byp" = ( /obj/structure/table/standard, /obj/item/weapon/packageWrap, /obj/item/weapon/stock_parts/matter_bin, @@ -45440,13 +44899,13 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"byr" = ( +"byq" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bys" = ( +"byr" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -45456,7 +44915,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"byt" = ( +"bys" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -45478,11 +44937,11 @@ }, /turf/simulated/floor/plating, /area/rnd/lab) -"byu" = ( +"byt" = ( /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"byv" = ( +"byu" = ( /obj/machinery/button/remote/blast_door{ id = "emtshutter"; name = "Garage Shutters Control"; @@ -45496,11 +44955,11 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"byw" = ( +"byv" = ( /obj/machinery/computer/crew, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"byx" = ( +"byw" = ( /obj/structure/table/standard, /obj/item/bodybag/cryobag, /obj/item/bodybag/cryobag, @@ -45515,13 +44974,13 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"byy" = ( +"byx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"byz" = ( +"byy" = ( /obj/structure/table/standard, /obj/item/weapon/storage/toolbox/mechanical, /obj/item/weapon/crowbar/red, @@ -45534,7 +44993,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"byA" = ( +"byz" = ( /obj/machinery/iv_drip, /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; @@ -45543,7 +45002,7 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"byB" = ( +"byA" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -45561,7 +45020,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"byC" = ( +"byB" = ( /obj/structure/sink{ icon_state = "sink"; dir = 8; @@ -45577,7 +45036,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"byD" = ( +"byC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -45586,7 +45045,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"byE" = ( +"byD" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -45600,31 +45059,20 @@ }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) +"byE" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 2; + icon_state = "freezer" + }, +/turf/simulated/floor/plating, +/area/medical/cryo) "byF" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 2; - icon_state = "freezer" - }, -/turf/simulated/floor/plating, -/area/medical/cryo) -"byG" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 2; - icon_state = "freezer" - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Cryogenics Control Room"; - dir = 2 - }, -/turf/simulated/floor/plating, -/area/medical/cryo) -"byH" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"byI" = ( +"byG" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -45644,7 +45092,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"byJ" = ( +"byH" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -45661,18 +45109,18 @@ }, /turf/simulated/floor/tiled, /area/medical/icu) -"byK" = ( +"byI" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /turf/simulated/floor/tiled/white, /area/medical/icu) -"byL" = ( +"byJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ icon_state = "intact"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"byM" = ( +"byK" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ icon_state = "intact"; dir = 4 @@ -45688,14 +45136,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/icu) -"byN" = ( +"byL" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"byO" = ( +"byM" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -45711,20 +45159,20 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"byP" = ( +"byN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"byQ" = ( +"byO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"byR" = ( +"byP" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 6 @@ -45737,7 +45185,7 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"byS" = ( +"byQ" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -45751,7 +45199,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"byT" = ( +"byR" = ( /obj/machinery/computer/cloning, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -45762,13 +45210,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"byU" = ( +"byS" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"byV" = ( +"byT" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -45776,14 +45224,14 @@ /obj/structure/closet, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"byW" = ( +"byU" = ( /turf/simulated/wall, /area/medical/genetics_cloning) -"byX" = ( +"byV" = ( /obj/structure/table/rack, /turf/simulated/floor/plating, /area/maintenance/medbay) -"byY" = ( +"byW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -45797,7 +45245,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"byZ" = ( +"byX" = ( /obj/machinery/alarm{ pixel_y = 23 }, @@ -45815,7 +45263,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bza" = ( +"byY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -45830,7 +45278,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bzb" = ( +"byZ" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -45844,7 +45292,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bzc" = ( +"bza" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Lift Lobby"; dir = 4 @@ -45858,14 +45306,14 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bzd" = ( +"bzb" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/tiled, /area/bridge) -"bze" = ( +"bzc" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -45883,7 +45331,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bzf" = ( +"bzd" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 8 @@ -45901,7 +45349,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bzg" = ( +"bze" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -45915,7 +45363,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bzh" = ( +"bzf" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(19) }, @@ -45933,7 +45381,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bzi" = ( +"bzg" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -45947,7 +45395,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bzj" = ( +"bzh" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -45959,13 +45407,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bzk" = ( +"bzi" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bzl" = ( +"bzj" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/item/device/eftpos{ @@ -45973,7 +45421,7 @@ }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bzm" = ( +"bzk" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -45985,7 +45433,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bzn" = ( +"bzl" = ( /obj/effect/floor_decal/corner/purple{ dir = 9 }, @@ -46002,7 +45450,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bzo" = ( +"bzm" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -46024,7 +45472,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bzp" = ( +"bzn" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/disposalpipe/segment{ dir = 8; @@ -46032,7 +45480,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bzq" = ( +"bzo" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -46060,12 +45508,12 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bzr" = ( +"bzp" = ( /obj/item/modular_computer/console/preset/research, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bzs" = ( +"bzq" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/cable/green{ @@ -46084,10 +45532,10 @@ }, /turf/simulated/floor/plating, /area/rnd/rdoffice) -"bzt" = ( +"bzr" = ( /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bzu" = ( +"bzs" = ( /obj/machinery/vending/hydronutrients{ categories = 3 }, @@ -46095,12 +45543,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bzv" = ( +"bzt" = ( /obj/machinery/biogenerator, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bzw" = ( +"bzu" = ( /obj/structure/closet/crate/hydroponics/prespawned, /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; @@ -46108,7 +45556,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bzx" = ( +"bzv" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/capacitor, /obj/item/weapon/stock_parts/manipulator, @@ -46124,7 +45572,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bzy" = ( +"bzw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -46135,7 +45583,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bzz" = ( +"bzx" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/capacitor, /obj/item/weapon/stock_parts/capacitor, @@ -46148,11 +45596,11 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bzA" = ( +"bzy" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bzB" = ( +"bzz" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -46170,7 +45618,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bzC" = ( +"bzA" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -46189,7 +45637,7 @@ }, /turf/simulated/floor/plating, /area/rnd/lab) -"bzD" = ( +"bzB" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -46200,7 +45648,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bzE" = ( +"bzC" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'BOMB RANGE"; name = "KEEP CLEAR: MEDICAL EXOSUIT PARKING"; @@ -46215,14 +45663,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bzF" = ( +"bzD" = ( /obj/machinery/door/airlock/glass_medical{ name = "EMT Garage Access"; req_access = list(67) }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bzG" = ( +"bzE" = ( /obj/structure/closet/secure_closet/medical_wall{ name = "Pill Cabinet"; pixel_x = -32; @@ -46233,7 +45681,7 @@ /obj/item/weapon/storage/pill_bottle/spaceacillin, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bzH" = ( +"bzF" = ( /obj/structure/table/standard, /obj/item/weapon/storage/belt/medical/emt, /obj/item/weapon/storage/belt/medical/emt, @@ -46245,7 +45693,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bzI" = ( +"bzG" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 9 @@ -46264,13 +45712,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bzJ" = ( +"bzH" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bzK" = ( +"bzI" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -46286,7 +45734,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bzL" = ( +"bzJ" = ( /obj/structure/sink{ icon_state = "sink"; dir = 8; @@ -46300,14 +45748,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bzM" = ( +"bzK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bzN" = ( +"bzL" = ( /obj/machinery/light/small{ dir = 4 }, @@ -46316,7 +45764,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bzO" = ( +"bzM" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 5 @@ -46326,7 +45774,7 @@ }, /turf/simulated/floor/plating, /area/medical/cryo) -"bzP" = ( +"bzN" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible, /obj/structure/cable/green{ d1 = 2; @@ -46335,7 +45783,7 @@ }, /turf/simulated/floor/plating, /area/medical/cryo) -"bzQ" = ( +"bzO" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, @@ -46351,7 +45799,7 @@ }, /turf/simulated/floor/plating, /area/medical/cryo) -"bzR" = ( +"bzP" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" @@ -46363,7 +45811,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bzS" = ( +"bzQ" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -46383,7 +45831,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bzT" = ( +"bzR" = ( /obj/machinery/iv_drip, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -46396,10 +45844,10 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bzU" = ( +"bzS" = ( /turf/simulated/floor/tiled/white, /area/medical/icu) -"bzV" = ( +"bzT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -46412,13 +45860,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bzW" = ( +"bzU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bzX" = ( +"bzV" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -46431,7 +45879,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bzY" = ( +"bzW" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 10 @@ -46441,7 +45889,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bzZ" = ( +"bzX" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 10 @@ -46452,7 +45900,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bAa" = ( +"bzY" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 6 @@ -46466,7 +45914,7 @@ /obj/item/clothing/accessory/stethoscope, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bAb" = ( +"bzZ" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -46478,7 +45926,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bAc" = ( +"bAa" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -46486,7 +45934,7 @@ /obj/machinery/clonepod, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bAd" = ( +"bAb" = ( /obj/structure/bed/roller, /obj/machinery/power/apc{ dir = 2; @@ -46500,7 +45948,7 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bAe" = ( +"bAc" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -46511,7 +45959,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bAf" = ( +"bAd" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -46522,7 +45970,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bAg" = ( +"bAe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -46532,13 +45980,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bAh" = ( +"bAf" = ( /obj/machinery/light/small/emergency, /obj/structure/closet, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bAi" = ( +"bAg" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -46548,7 +45996,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bAj" = ( +"bAh" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -46565,7 +46013,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bAk" = ( +"bAi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -46580,7 +46028,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bAl" = ( +"bAj" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, @@ -46599,7 +46047,7 @@ }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bAm" = ( +"bAk" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -46607,7 +46055,7 @@ /obj/item/weapon/folder/purple, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bAn" = ( +"bAl" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -46621,7 +46069,7 @@ }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bAo" = ( +"bAm" = ( /obj/effect/floor_decal/corner/purple{ dir = 9 }, @@ -46632,7 +46080,7 @@ /obj/structure/lamarr, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bAp" = ( +"bAn" = ( /obj/effect/floor_decal/corner/purple{ dir = 9 }, @@ -46645,11 +46093,11 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bAq" = ( +"bAo" = ( /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bAr" = ( +"bAp" = ( /obj/machinery/computer/robotics, /obj/machinery/light{ dir = 4; @@ -46659,13 +46107,13 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bAs" = ( +"bAq" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bAt" = ( +"bAr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -46678,7 +46126,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bAu" = ( +"bAs" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Corridor Camera 2"; dir = 8; @@ -46689,18 +46137,18 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bAv" = ( +"bAt" = ( /obj/machinery/seed_storage/xenobotany, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bAw" = ( +"bAu" = ( /obj/machinery/seed_extractor, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bAx" = ( +"bAv" = ( /obj/machinery/smartfridge, /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; @@ -46708,7 +46156,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bAy" = ( +"bAw" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/console_screen, /obj/item/weapon/stock_parts/console_screen, @@ -46732,7 +46180,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bAz" = ( +"bAx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -46745,7 +46193,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bAA" = ( +"bAy" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/manipulator, /obj/item/weapon/stock_parts/scanning_module, @@ -46758,10 +46206,10 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bAB" = ( +"bAz" = ( /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bAC" = ( +"bAA" = ( /obj/structure/table/standard, /obj/machinery/light{ dir = 4; @@ -46789,13 +46237,13 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bAD" = ( +"bAB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bAE" = ( +"bAC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ dir = 8; @@ -46804,16 +46252,16 @@ }, /turf/simulated/floor/plating, /area/medical/emt) -"bAF" = ( +"bAD" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, /area/medical/emt) -"bAG" = ( +"bAE" = ( /obj/machinery/mech_recharger, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/medical/emt) -"bAH" = ( +"bAF" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -46831,7 +46279,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/emt) -"bAI" = ( +"bAG" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/item/roller, /obj/item/roller, @@ -46842,7 +46290,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bAJ" = ( +"bAH" = ( /obj/structure/table/standard, /obj/item/weapon/storage/toolbox/emergency, /obj/item/device/gps{ @@ -46853,10 +46301,10 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bAK" = ( +"bAI" = ( /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bAL" = ( +"bAJ" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -46869,16 +46317,16 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bAM" = ( +"bAK" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bAN" = ( +"bAL" = ( /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bAO" = ( +"bAM" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, @@ -46888,7 +46336,7 @@ }, /turf/simulated/floor/plating, /area/medical/cryo) -"bAP" = ( +"bAN" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ icon_state = "map"; dir = 4 @@ -46902,7 +46350,7 @@ }, /turf/simulated/floor/plating, /area/medical/cryo) -"bAQ" = ( +"bAO" = ( /obj/machinery/camera/network/medbay{ c_tag = "Medical - Main Hallway 2"; dir = 4; @@ -46914,7 +46362,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bAR" = ( +"bAP" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -46932,7 +46380,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bAS" = ( +"bAQ" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 9 @@ -46940,7 +46388,7 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bAT" = ( +"bAR" = ( /obj/structure/closet/secure_closet/medical_wall{ name = "Stabilization Kit"; pixel_x = 0; @@ -46955,7 +46403,7 @@ /obj/item/weapon/storage/pill_bottle/tramadol, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bAU" = ( +"bAS" = ( /obj/structure/closet/secure_closet/medical_wall{ name = "Medication Closet"; pixel_x = 0; @@ -46969,7 +46417,7 @@ /obj/item/weapon/reagent_containers/syringe, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bAV" = ( +"bAT" = ( /obj/structure/bed, /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; @@ -46983,7 +46431,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bAW" = ( +"bAU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ autoclose = 0; @@ -46996,7 +46444,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"bAX" = ( +"bAV" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -47010,7 +46458,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/gen_treatment) -"bAY" = ( +"bAW" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -47024,7 +46472,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/gen_treatment) -"bAZ" = ( +"bAX" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -47034,7 +46482,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bBa" = ( +"bAY" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -47044,7 +46492,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bBb" = ( +"bAZ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -47067,47 +46515,47 @@ }, /turf/simulated/floor/plating, /area/medical/medbay2) +"bBa" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/medical/medbay2) +"bBb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/medical/medbay2) "bBc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/medbay2) -"bBd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/medbay2) -"bBe" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ density = 0; @@ -47123,10 +46571,10 @@ }, /turf/simulated/floor/plating, /area/medical/genetics_cloning) -"bBf" = ( +"bBd" = ( /turf/simulated/floor/plating, /area/turbolift/command_sub) -"bBg" = ( +"bBe" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -47136,7 +46584,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bBh" = ( +"bBf" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -47148,7 +46596,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bBi" = ( +"bBg" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -47157,7 +46605,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bBj" = ( +"bBh" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -47169,7 +46617,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bBk" = ( +"bBi" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -47183,7 +46631,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bBl" = ( +"bBj" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, @@ -47195,14 +46643,14 @@ }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bBm" = ( +"bBk" = ( /obj/structure/table/standard, /obj/machinery/computer/skills{ icon_state = "medlaptop" }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bBn" = ( +"bBl" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -47213,7 +46661,7 @@ }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bBo" = ( +"bBm" = ( /obj/effect/floor_decal/corner/purple{ dir = 9 }, @@ -47226,7 +46674,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bBp" = ( +"bBn" = ( /obj/effect/floor_decal/corner/purple{ dir = 9 }, @@ -47240,32 +46688,32 @@ /obj/effect/floor_decal/corner/grey, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bBq" = ( +"bBo" = ( /obj/machinery/computer/mecha, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bBr" = ( +"bBp" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ icon_state = "map"; dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bBs" = ( +"bBq" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8; name = "To Waste" }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bBt" = ( +"bBr" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bBu" = ( +"bBs" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -47276,7 +46724,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bBv" = ( +"bBt" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve/full, /obj/structure/reagent_dispensers/acid{ @@ -47287,7 +46735,7 @@ /obj/item/weapon/stock_parts/manipulator, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bBw" = ( +"bBu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -47302,21 +46750,21 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bBx" = ( +"bBv" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bBy" = ( +"bBw" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bBz" = ( +"bBx" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -47326,7 +46774,7 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bBA" = ( +"bBy" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -47339,7 +46787,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bBB" = ( +"bBz" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; @@ -47352,7 +46800,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bBC" = ( +"bBA" = ( /obj/machinery/door/firedoor, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'BOMB RANGE"; @@ -47368,7 +46816,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bBD" = ( +"bBB" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 9 @@ -47376,7 +46824,7 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bBE" = ( +"bBC" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -47393,26 +46841,26 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bBF" = ( +"bBD" = ( /obj/machinery/door/airlock{ name = "Unit 1" }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bBG" = ( +"bBE" = ( /obj/machinery/door/airlock{ name = "Unit 2" }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bBH" = ( +"bBF" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/plating, /area/medical/cryo) -"bBI" = ( +"bBG" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ icon_state = "map"; dir = 4 @@ -47420,7 +46868,7 @@ /obj/machinery/meter, /turf/simulated/floor/plating, /area/medical/cryo) -"bBJ" = ( +"bBH" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -47438,13 +46886,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/cryo) -"bBK" = ( +"bBI" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBL" = ( +"bBJ" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -47472,7 +46920,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBM" = ( +"bBK" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -47489,7 +46937,7 @@ }, /turf/simulated/floor/plating, /area/medical/icu) -"bBN" = ( +"bBL" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ autoclose = 0; @@ -47508,7 +46956,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/medical/icu) -"bBO" = ( +"bBM" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -47525,7 +46973,7 @@ }, /turf/simulated/floor/plating, /area/medical/icu) -"bBP" = ( +"bBN" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 5 @@ -47539,7 +46987,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBQ" = ( +"bBO" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 5 @@ -47555,7 +47003,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBR" = ( +"bBP" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 5 @@ -47567,7 +47015,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBS" = ( +"bBQ" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 5 @@ -47599,7 +47047,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBT" = ( +"bBR" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 1 @@ -47616,7 +47064,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBU" = ( +"bBS" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -47641,83 +47089,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBV" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/sign/nosmoking_1{ - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bBW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Maintenance Access"; - req_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) -"bBX" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bBY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) "bBZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bCa" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bCb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -47732,7 +47104,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bCc" = ( +"bCa" = ( /obj/random/junk, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -47747,7 +47119,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bCd" = ( +"bCb" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -47761,7 +47133,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bCe" = ( +"bCc" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -47778,7 +47150,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bCf" = ( +"bCd" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -47793,7 +47165,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bCg" = ( +"bCe" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -47807,10 +47179,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bCh" = ( +"bCf" = ( /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bCi" = ( +"bCg" = ( /obj/structure/table/rack, /obj/machinery/light_switch{ pixel_y = -23 @@ -47826,7 +47198,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bCj" = ( +"bCh" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/table/standard, /obj/machinery/photocopier/faxmachine{ @@ -47834,7 +47206,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bCk" = ( +"bCi" = ( /obj/structure/table/standard, /obj/item/device/taperecorder{ pixel_x = -3 @@ -47856,7 +47228,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bCl" = ( +"bCj" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/requests_console{ name = "Research Director RC"; @@ -47868,12 +47240,12 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bCm" = ( +"bCk" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/closet/secure_closet/RD, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bCn" = ( +"bCl" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/cable/green, @@ -47890,7 +47262,7 @@ }, /turf/simulated/floor/plating, /area/rnd/rdoffice) -"bCo" = ( +"bCm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -47903,7 +47275,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bCp" = ( +"bCn" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -47912,35 +47284,35 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bCq" = ( +"bCo" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bCr" = ( +"bCp" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bCs" = ( +"bCq" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; dir = 10 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bCt" = ( +"bCr" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 }, /obj/machinery/meter, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bCu" = ( +"bCs" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -47961,14 +47333,14 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bCv" = ( +"bCt" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /obj/machinery/r_n_d/destructive_analyzer, /turf/simulated/floor/tiled/dark, /area/rnd/lab) -"bCw" = ( +"bCu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -47982,49 +47354,49 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/lab) -"bCx" = ( +"bCv" = ( /obj/machinery/r_n_d/protolathe, /obj/effect/floor_decal/industrial/warning{ dir = 5 }, /turf/simulated/floor/tiled/dark, /area/rnd/lab) -"bCy" = ( +"bCw" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bCz" = ( +"bCx" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bCA" = ( +"bCy" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bCB" = ( +"bCz" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bCC" = ( +"bCA" = ( /obj/structure/closet/emcloset, /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bCD" = ( +"bCB" = ( /obj/machinery/disposal, /obj/item/device/radio/intercom{ pixel_y = 27 @@ -48032,15 +47404,15 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bCE" = ( +"bCC" = ( /obj/machinery/vending/snack, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bCF" = ( +"bCD" = ( /obj/machinery/vending/cola, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bCG" = ( +"bCE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ density = 0; @@ -48056,7 +47428,7 @@ }, /turf/simulated/floor/plating, /area/medical/em_preop) -"bCH" = ( +"bCF" = ( /obj/structure/toilet{ icon_state = "toilet00"; dir = 1 @@ -48066,7 +47438,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bCI" = ( +"bCG" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 9 @@ -48078,7 +47450,7 @@ }, /turf/simulated/floor/plating, /area/medical/cryo) -"bCJ" = ( +"bCH" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -48092,7 +47464,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCK" = ( +"bCI" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 4 @@ -48115,7 +47487,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCL" = ( +"bCJ" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 5 @@ -48137,7 +47509,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCM" = ( +"bCK" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 5 @@ -48161,7 +47533,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCN" = ( +"bCL" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 5 @@ -48182,7 +47554,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCO" = ( +"bCM" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 5 @@ -48205,7 +47577,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCP" = ( +"bCN" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 5 @@ -48229,7 +47601,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCQ" = ( +"bCO" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 1 @@ -48246,7 +47618,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCR" = ( +"bCP" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -48268,7 +47640,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCS" = ( +"bCQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -48281,7 +47653,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCT" = ( +"bCR" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -48300,17 +47672,17 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCU" = ( +"bCS" = ( /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCV" = ( +"bCT" = ( /obj/machinery/newscaster{ pixel_y = -30 }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCW" = ( +"bCU" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -48325,55 +47697,31 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCX" = ( +"bCV" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bCY" = ( +"bCW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bCZ" = ( +"bCX" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/simulated/floor/plating, /area/turbolift/command_sub) -"bDa" = ( +"bCY" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/plating, /area/turbolift/command_sub) -"bDb" = ( +"bCZ" = ( /turf/simulated/wall, /area/crew_quarters/sleep/research) -"bDc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "RDTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "RDTint" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/window/reinforced/polarized{ - id = "RDTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "RDTint" - }, -/turf/simulated/floor/plating, -/area/rnd/rdoffice) -"bDd" = ( +"bDb" = ( /obj/machinery/door/airlock/command{ id_tag = "rdmdoor"; name = "Research Director's Meeting Room"; @@ -48387,33 +47735,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bDe" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "RDTint" - }, -/obj/structure/window/reinforced/polarized{ - id = "RDTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "RDTint" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "RDTint" - }, -/turf/simulated/floor/plating, -/area/rnd/rdoffice) -"bDf" = ( +"bDd" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -48425,7 +47747,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bDg" = ( +"bDe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -48441,7 +47763,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bDh" = ( +"bDf" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -48455,7 +47777,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/xenobiology/xenoflora) -"bDi" = ( +"bDg" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; @@ -48463,7 +47785,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bDj" = ( +"bDh" = ( /obj/machinery/atmospherics/unary/freezer{ dir = 2; icon_state = "freezer" @@ -48471,7 +47793,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bDk" = ( +"bDi" = ( /obj/machinery/atmospherics/unary/heater{ dir = 2; icon_state = "heater" @@ -48479,21 +47801,21 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bDl" = ( +"bDj" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1; name = "To Waste" }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bDm" = ( +"bDk" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bDn" = ( +"bDl" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -48508,7 +47830,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bDo" = ( +"bDm" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Research & Development"; dir = 4; @@ -48517,7 +47839,7 @@ /obj/machinery/computer/rdconsole/core, /turf/simulated/floor/tiled/dark, /area/rnd/lab) -"bDp" = ( +"bDn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -48536,7 +47858,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled/dark, /area/rnd/lab) -"bDq" = ( +"bDo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -48559,7 +47881,7 @@ /obj/item/weapon/reagent_containers/glass/beaker/sulphuric, /turf/simulated/floor/tiled/dark, /area/rnd/lab) -"bDr" = ( +"bDp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -48583,7 +47905,7 @@ /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bDs" = ( +"bDq" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp, /obj/machinery/power/apc{ @@ -48601,7 +47923,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bDt" = ( +"bDr" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -48621,13 +47943,13 @@ }, /turf/simulated/floor/plating, /area/rnd/lab) -"bDu" = ( +"bDs" = ( /obj/machinery/light, /obj/structure/closet/emcloset, /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bDv" = ( +"bDt" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -48642,7 +47964,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bDw" = ( +"bDu" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -48654,7 +47976,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bDx" = ( +"bDv" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -48672,7 +47994,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bDy" = ( +"bDw" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -48689,7 +48011,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bDz" = ( +"bDx" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -48706,7 +48028,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bDA" = ( +"bDy" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -48728,7 +48050,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bDB" = ( +"bDz" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -48745,14 +48067,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDC" = ( +"bDA" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDD" = ( +"bDB" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -48769,7 +48091,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDE" = ( +"bDC" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -48777,7 +48099,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDF" = ( +"bDD" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -48785,7 +48107,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDG" = ( +"bDE" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 8 @@ -48796,14 +48118,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDH" = ( +"bDF" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDI" = ( +"bDG" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -48815,7 +48137,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDJ" = ( +"bDH" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -48825,7 +48147,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDK" = ( +"bDI" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -48841,7 +48163,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDL" = ( +"bDJ" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -48852,10 +48174,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDM" = ( +"bDK" = ( /turf/simulated/wall, /area/maintenance/substation/medical) -"bDN" = ( +"bDL" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 1; @@ -48877,7 +48199,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bDO" = ( +"bDM" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -48892,7 +48214,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDP" = ( +"bDN" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -48902,7 +48224,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDQ" = ( +"bDO" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -48917,7 +48239,7 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDR" = ( +"bDP" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -48933,7 +48255,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDS" = ( +"bDQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -48947,37 +48269,37 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDT" = ( +"bDR" = ( /obj/structure/girder, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDU" = ( +"bDS" = ( /obj/structure/flora/pottedplant/random, /obj/machinery/light/small, /turf/simulated/floor/plating, /area/turbolift/command_sub) -"bDV" = ( +"bDT" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/plating, /area/turbolift/command_sub) -"bDW" = ( +"bDU" = ( /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bDX" = ( +"bDV" = ( /obj/machinery/vending/cola, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bDY" = ( +"bDW" = ( /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bDZ" = ( +"bDX" = ( /obj/effect/floor_decal/corner/mauve, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEa" = ( +"bDY" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Break Room" }, @@ -48988,7 +48310,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEb" = ( +"bDZ" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -49002,13 +48324,13 @@ /obj/effect/floor_decal/corner/mauve, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEc" = ( +"bEa" = ( /obj/structure/sink{ pixel_y = 28 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEd" = ( +"bEb" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin{ pixel_x = 1; @@ -49017,7 +48339,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEe" = ( +"bEc" = ( /obj/machinery/vending/snack, /obj/machinery/status_display{ pixel_x = 0; @@ -49025,7 +48347,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEf" = ( +"bEd" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -49042,12 +48364,12 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/sleep/research) -"bEg" = ( +"bEe" = ( /obj/machinery/light, /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bEh" = ( +"bEf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -49062,14 +48384,14 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bEi" = ( +"bEg" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bEj" = ( +"bEh" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 }, @@ -49088,23 +48410,23 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bEk" = ( +"bEi" = ( /obj/machinery/atmospherics/pipe/manifold/visible, /obj/machinery/meter, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bEl" = ( +"bEj" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bEm" = ( +"bEk" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 9 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bEn" = ( +"bEl" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -49118,7 +48440,7 @@ /obj/machinery/botany/editor, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bEo" = ( +"bEm" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -49131,7 +48453,7 @@ }, /turf/simulated/floor/plating, /area/rnd/lab) -"bEp" = ( +"bEn" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, @@ -49141,7 +48463,7 @@ }, /turf/simulated/floor/plating, /area/rnd/lab) -"bEq" = ( +"bEo" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, @@ -49155,7 +48477,7 @@ }, /turf/simulated/floor/plating, /area/rnd/lab) -"bEr" = ( +"bEp" = ( /obj/machinery/door/airlock/research{ name = "Materials"; req_access = list(47) @@ -49171,16 +48493,16 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bEs" = ( +"bEq" = ( /turf/simulated/wall, /area/rnd/lab) -"bEt" = ( +"bEr" = ( /obj/machinery/status_display{ pixel_x = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bEu" = ( +"bEs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -49191,7 +48513,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bEv" = ( +"bEt" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -49199,7 +48521,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bEw" = ( +"bEu" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 4; @@ -49208,7 +48530,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bEx" = ( +"bEv" = ( /obj/item/device/radio/intercom{ pixel_y = -27 }, @@ -49222,7 +48544,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bEy" = ( +"bEw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -49232,8 +48554,8 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bEz" = ( -/obj/machinery/camera/network/civilian_main{ +"bEx" = ( +/obj/machinery/camera/network/civilian_west{ c_tag = "Central Corridor - Camera 3"; dir = 8 }, @@ -49243,7 +48565,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bEA" = ( +"bEy" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -49261,6 +48583,42 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) +"bEz" = ( +/obj/structure/cable{ + 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/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"bEA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + 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/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) "bEB" = ( /obj/structure/cable{ d1 = 4; @@ -49276,45 +48634,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/medbay) "bEC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - 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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bED" = ( -/obj/structure/cable{ - 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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"bEE" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -49332,10 +48654,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bEF" = ( +"bED" = ( /turf/simulated/wall, /area/medical/med_office) -"bEG" = ( +"bEE" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/door/airlock/glass_medical{ @@ -49351,7 +48673,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bEH" = ( +"bEF" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -49366,7 +48688,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/medical/med_office) -"bEI" = ( +"bEG" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -49380,48 +48702,28 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/med_office) -"bEJ" = ( +"bEH" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/heads/cmo) +"bEJ" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized{ + id = "CMO" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "CMO" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/cmo) "bEK" = ( /obj/structure/grille, /obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - id = "CMO" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CMO" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CMO" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/cmo) -"bEL" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - id = "CMO" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CMO" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/cmo) -"bEM" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, /obj/structure/window/reinforced/polarized{ id = "CMO" }, @@ -49439,7 +48741,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/cmo) -"bEN" = ( +"bEL" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ id_tag = "CMOdoor"; @@ -49456,37 +48758,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bEO" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - id = "CMO" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CMO" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CMO" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "CMO" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/cmo) -"bEP" = ( +"bEN" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "\[F.3] Medical Substation Bypass" }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bEQ" = ( +"bEO" = ( /obj/machinery/power/smes/buildable{ charge = 0; RCon_tag = "Substation - \[F.3] Medical" @@ -49501,7 +48779,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bER" = ( +"bEP" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -49517,7 +48795,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bES" = ( +"bEQ" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -49529,24 +48807,24 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bET" = ( +"bER" = ( /obj/turbolift_map_holder/aurora/command, /turf/simulated/floor/plating, /area/turbolift/command_sub) -"bEU" = ( +"bES" = ( /obj/machinery/vending/cigarette, /obj/structure/sign/nosmoking_1{ pixel_x = -32 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEV" = ( +"bET" = ( /obj/effect/landmark/start{ name = "Xenobiologist" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEW" = ( +"bEU" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -49557,7 +48835,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEX" = ( +"bEV" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -49568,7 +48846,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEY" = ( +"bEW" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -49583,7 +48861,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEZ" = ( +"bEX" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -49594,17 +48872,17 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bFa" = ( +"bEY" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bFb" = ( +"bEZ" = ( /obj/item/device/radio/intercom{ pixel_x = 27 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bFc" = ( +"bFa" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -49619,7 +48897,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/research) -"bFd" = ( +"bFb" = ( /obj/machinery/door/airlock/glass_research{ name = "Genetics Laboratory"; req_access = list(47) @@ -49635,7 +48913,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bFe" = ( +"bFc" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -49650,7 +48928,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/research) -"bFf" = ( +"bFd" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1 }, @@ -49664,7 +48942,7 @@ /obj/effect/floor_decal/corner/green/full, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bFg" = ( +"bFe" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 10 @@ -49676,7 +48954,7 @@ /obj/item/weapon/disk/botany, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bFh" = ( +"bFf" = ( /obj/machinery/atmospherics/binary/pump, /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; @@ -49684,7 +48962,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bFi" = ( +"bFg" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/weapon/reagent_containers/glass/bucket, /obj/effect/floor_decal/corner/green{ @@ -49692,14 +48970,14 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bFj" = ( +"bFh" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bFk" = ( +"bFi" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 6 @@ -49708,10 +48986,10 @@ /obj/machinery/botany/extractor, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bFl" = ( +"bFj" = ( /turf/simulated/wall/r_wall, /area/outpost/research/chemistry) -"bFm" = ( +"bFk" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/beakers, /obj/effect/floor_decal/corner/mauve/full{ @@ -49720,7 +48998,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bFn" = ( +"bFl" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 @@ -49728,14 +49006,14 @@ /obj/machinery/chemical_dispenser/full, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bFo" = ( +"bFm" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bFp" = ( +"bFn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -49753,7 +49031,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bFq" = ( +"bFo" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -49766,7 +49044,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bFr" = ( +"bFp" = ( /obj/machinery/disposal, /obj/item/device/radio/intercom{ pixel_x = 27 @@ -49780,7 +49058,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bFs" = ( +"bFq" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; @@ -49792,7 +49070,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bFt" = ( +"bFr" = ( /obj/machinery/door/airlock/glass{ name = "Holodeck" }, @@ -49801,7 +49079,7 @@ }, /turf/simulated/floor/tiled/dark, /area/hallway/primary/central_one) -"bFu" = ( +"bFs" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -49817,7 +49095,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bFv" = ( +"bFt" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -49829,7 +49107,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bFw" = ( +"bFu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -49845,10 +49123,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bFx" = ( +"bFv" = ( /turf/simulated/wall, /area/library) -"bFy" = ( +"bFw" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -49860,7 +49138,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/library) -"bFz" = ( +"bFx" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -49872,7 +49150,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/library) -"bFA" = ( +"bFy" = ( /obj/machinery/door/airlock/glass{ name = "Library" }, @@ -49886,14 +49164,14 @@ }, /turf/simulated/floor/carpet, /area/library) -"bFB" = ( +"bFz" = ( /obj/machinery/door/airlock/glass{ name = "Library" }, /obj/machinery/door/firedoor, /turf/simulated/floor/carpet, /area/library) -"bFC" = ( +"bFA" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Library Maintenance"; @@ -49901,7 +49179,7 @@ }, /turf/simulated/floor/plating, /area/library) -"bFD" = ( +"bFB" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -49917,7 +49195,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bFE" = ( +"bFC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ density = 0; @@ -49939,7 +49217,7 @@ }, /turf/simulated/floor/plating, /area/medical/med_office) -"bFF" = ( +"bFD" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -49955,7 +49233,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bFG" = ( +"bFE" = ( /obj/machinery/disposal, /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/disposalpipe/trunk{ @@ -49963,7 +49241,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bFH" = ( +"bFF" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/item/weapon/paper_bin{ pixel_x = -1; @@ -49974,32 +49252,7 @@ /obj/structure/table/standard, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bFI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CMO" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "CMO" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CMO" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/cmo) -"bFJ" = ( +"bFH" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 8 @@ -50020,44 +49273,44 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) +"bFI" = ( +/obj/effect/floor_decal/corner/paleblue{ + icon_state = "corner_white"; + dir = 5 + }, +/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/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/cmo) +"bFJ" = ( +/obj/effect/floor_decal/corner/paleblue{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/cmo) "bFK" = ( -/obj/effect/floor_decal/corner/paleblue{ - icon_state = "corner_white"; - dir = 5 - }, -/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/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"bFL" = ( -/obj/effect/floor_decal/corner/paleblue{ - icon_state = "corner_white"; - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"bFM" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -50080,7 +49333,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFN" = ( +"bFL" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -50100,7 +49353,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFO" = ( +"bFM" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -50122,7 +49375,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFP" = ( +"bFN" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -50152,7 +49405,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFQ" = ( +"bFO" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -50168,7 +49421,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFR" = ( +"bFP" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -50187,7 +49440,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bFS" = ( +"bFQ" = ( /obj/machinery/power/terminal{ icon_state = "term"; dir = 1 @@ -50203,7 +49456,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bFT" = ( +"bFR" = ( /obj/structure/cable/green, /obj/machinery/power/apc{ dir = 2; @@ -50215,31 +49468,31 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bFU" = ( +"bFS" = ( /obj/structure/table/rack, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bFV" = ( +"bFT" = ( /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bFW" = ( +"bFU" = ( /obj/structure/closet, /obj/random/loot, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bFX" = ( +"bFV" = ( /obj/structure/closet, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bFY" = ( +"bFW" = ( /obj/machinery/papershredder, /obj/structure/extinguisher_cabinet{ pixel_x = -32 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bFZ" = ( +"bFX" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -50251,18 +49504,18 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bGa" = ( +"bFY" = ( /obj/structure/table/standard, /obj/item/weapon/folder/purple, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bGb" = ( +"bFZ" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/item/weapon/folder/purple, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bGc" = ( +"bGa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -50280,14 +49533,14 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bGd" = ( +"bGb" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bGe" = ( +"bGc" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Corridor Camera 1" }, @@ -50302,7 +49555,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bGf" = ( +"bGd" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/door/window/eastright{ dir = 1; @@ -50326,7 +49579,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bGg" = ( +"bGe" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -50339,7 +49592,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bGh" = ( +"bGf" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -50350,7 +49603,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bGi" = ( +"bGg" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -50366,7 +49619,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bGj" = ( +"bGh" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 6 @@ -50374,7 +49627,7 @@ /obj/structure/bed/chair/office/dark, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bGk" = ( +"bGi" = ( /obj/structure/sign/nosmoking_1{ pixel_x = -32 }, @@ -50392,13 +49645,13 @@ /obj/item/weapon/reagent_containers/dropper, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bGl" = ( +"bGj" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bGm" = ( +"bGk" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -50416,7 +49669,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bGn" = ( +"bGl" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -50437,7 +49690,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bGo" = ( +"bGm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -50448,7 +49701,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bGp" = ( +"bGn" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -50470,14 +49723,14 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bGq" = ( -/obj/machinery/camera/network/civilian_main{ +"bGo" = ( +/obj/machinery/camera/network/civilian_west{ c_tag = "Central Corridor - Camera 1"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bGr" = ( +"bGp" = ( /obj/structure/sign/directions/evac{ dir = 8; icon_state = "direction_evac"; @@ -50491,7 +49744,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bGs" = ( +"bGq" = ( /obj/structure/sign/directions/engineering{ dir = 8; icon_state = "direction_eng"; @@ -50509,7 +49762,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bGt" = ( +"bGr" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/sign/directions/security{ dir = 4; @@ -50529,7 +49782,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bGu" = ( +"bGs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -50540,8 +49793,8 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bGv" = ( -/obj/machinery/camera/network/civilian_main{ +"bGt" = ( +/obj/machinery/camera/network/civilian_west{ c_tag = "Central Corridor - Camera 2"; dir = 8 }, @@ -50552,18 +49805,18 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bGw" = ( +"bGu" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/simulated/floor/wood, /area/library) -"bGx" = ( +"bGv" = ( /obj/structure/table/wood, /obj/item/weapon/pen, /turf/simulated/floor/wood, /area/library) -"bGy" = ( +"bGw" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, @@ -50573,7 +49826,7 @@ }, /turf/simulated/floor/wood, /area/library) -"bGz" = ( +"bGx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -50583,10 +49836,10 @@ }, /turf/simulated/floor/carpet, /area/library) -"bGA" = ( +"bGy" = ( /turf/simulated/floor/carpet, /area/library) -"bGB" = ( +"bGz" = ( /obj/machinery/status_display{ density = 0; layer = 4; @@ -50595,10 +49848,10 @@ }, /turf/simulated/floor/wood, /area/library) -"bGC" = ( +"bGA" = ( /turf/simulated/floor/wood, /area/library) -"bGD" = ( +"bGB" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = 1; @@ -50609,11 +49862,11 @@ }, /turf/simulated/floor/wood, /area/library) -"bGE" = ( +"bGC" = ( /obj/machinery/libraryscanner, /turf/simulated/floor/wood, /area/library) -"bGF" = ( +"bGD" = ( /obj/machinery/librarycomp{ pixel_y = 0 }, @@ -50623,7 +49876,7 @@ }, /turf/simulated/floor/wood, /area/library) -"bGG" = ( +"bGE" = ( /obj/machinery/light/small{ dir = 8 }, @@ -50633,7 +49886,7 @@ }, /turf/simulated/floor/tiled/dark, /area/library) -"bGH" = ( +"bGF" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -50647,13 +49900,13 @@ }, /turf/simulated/floor/tiled/dark, /area/library) -"bGI" = ( +"bGG" = ( /obj/structure/bookcase{ name = "Forbidden Knowledge" }, /turf/simulated/floor/tiled/dark, /area/library) -"bGJ" = ( +"bGH" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green, /obj/machinery/power/apc{ @@ -50668,7 +49921,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bGK" = ( +"bGI" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/bed/chair/office/dark{ dir = 4 @@ -50678,31 +49931,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bGL" = ( +"bGJ" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/computer/med_data/laptop, /obj/structure/table/standard, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bGM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CMO" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "CMO" - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/cmo) -"bGN" = ( +"bGL" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -50710,17 +49945,17 @@ /obj/machinery/computer/med_data, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bGO" = ( +"bGM" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bGP" = ( +"bGN" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/table/glass, /obj/machinery/computer/skills, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bGQ" = ( +"bGO" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/bed/chair/comfy/teal{ dir = 8; @@ -50728,7 +49963,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bGR" = ( +"bGP" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -50738,7 +49973,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bGS" = ( +"bGQ" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -50746,7 +49981,7 @@ /obj/machinery/papershredder, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bGT" = ( +"bGR" = ( /obj/machinery/door/airlock/engineering{ name = "Medbay Substation"; req_one_access = list(11,24,5) @@ -50759,17 +49994,17 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bGU" = ( +"bGS" = ( /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bGV" = ( +"bGT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bGW" = ( +"bGU" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -50783,7 +50018,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bGX" = ( +"bGV" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -50797,7 +50032,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bGY" = ( +"bGW" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -50812,7 +50047,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bGZ" = ( +"bGX" = ( /obj/machinery/light/small/emergency{ dir = 8 }, @@ -50820,7 +50055,7 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bHa" = ( +"bGY" = ( /obj/machinery/vending/coffee, /obj/structure/disposalpipe/segment{ dir = 4; @@ -50828,7 +50063,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHb" = ( +"bGZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -50843,7 +50078,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHc" = ( +"bHa" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -50865,7 +50100,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHd" = ( +"bHb" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -50882,7 +50117,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHe" = ( +"bHc" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -50904,7 +50139,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHf" = ( +"bHd" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -50927,7 +50162,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHg" = ( +"bHe" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -50944,7 +50179,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHh" = ( +"bHf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -50959,7 +50194,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHi" = ( +"bHg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -50978,7 +50213,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHj" = ( +"bHh" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -51000,7 +50235,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/research) -"bHk" = ( +"bHi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -51017,7 +50252,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bHl" = ( +"bHj" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -51040,7 +50275,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bHm" = ( +"bHk" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 5 @@ -51055,7 +50290,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bHn" = ( +"bHl" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, @@ -51064,7 +50299,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bHo" = ( +"bHm" = ( /obj/machinery/atmospherics/pipe/manifold/visible, /obj/machinery/light, /turf/simulated/floor/tiled{ @@ -51072,7 +50307,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bHp" = ( +"bHn" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -51085,13 +50320,13 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bHq" = ( +"bHo" = ( /obj/effect/floor_decal/corner/green/full, /obj/structure/table/standard, /obj/machinery/reagentgrinder, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bHr" = ( +"bHp" = ( /obj/effect/floor_decal/corner/green/full{ icon_state = "corner_white_full"; dir = 4 @@ -51101,7 +50336,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bHs" = ( +"bHq" = ( /obj/structure/table/standard, /obj/machinery/reagentgrinder, /obj/machinery/requests_console{ @@ -51114,7 +50349,7 @@ /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bHt" = ( +"bHr" = ( /obj/machinery/alarm{ dir = 1; icon_state = "alarm0"; @@ -51132,7 +50367,7 @@ /obj/machinery/chem_master, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bHu" = ( +"bHs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -51147,7 +50382,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bHv" = ( +"bHt" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -51157,7 +50392,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bHw" = ( +"bHu" = ( /obj/structure/table/standard, /obj/structure/cable/green, /obj/machinery/power/apc{ @@ -51171,7 +50406,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bHx" = ( +"bHv" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; @@ -51179,7 +50414,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bHy" = ( +"bHw" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -51203,7 +50438,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHz" = ( +"bHx" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -51217,7 +50452,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHA" = ( +"bHy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -51226,7 +50461,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHB" = ( +"bHz" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -51240,7 +50475,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHC" = ( +"bHA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -51254,7 +50489,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHD" = ( +"bHB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -51268,7 +50503,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHE" = ( +"bHC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -51286,7 +50521,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHF" = ( +"bHD" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -51309,7 +50544,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHG" = ( +"bHE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -51330,7 +50565,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHH" = ( +"bHF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -51345,7 +50580,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHI" = ( +"bHG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -51362,7 +50597,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHJ" = ( +"bHH" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -51384,7 +50619,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHK" = ( +"bHI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -51407,7 +50642,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHL" = ( +"bHJ" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -51419,7 +50654,7 @@ }, /turf/simulated/floor/wood, /area/library) -"bHM" = ( +"bHK" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -51427,7 +50662,7 @@ }, /turf/simulated/floor/wood, /area/library) -"bHN" = ( +"bHL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -51437,7 +50672,7 @@ }, /turf/simulated/floor/carpet, /area/library) -"bHO" = ( +"bHM" = ( /obj/structure/table/wood, /obj/machinery/door/window/westright{ dir = 8; @@ -51447,20 +50682,20 @@ }, /turf/simulated/floor/wood, /area/library) -"bHP" = ( +"bHN" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/simulated/floor/wood, /area/library) -"bHQ" = ( +"bHO" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/library) -"bHR" = ( +"bHP" = ( /obj/machinery/door/morgue{ dir = 2; name = "Private Study"; @@ -51472,14 +50707,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/library) -"bHS" = ( +"bHQ" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/dark, /area/library) -"bHT" = ( +"bHR" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, @@ -51488,7 +50723,7 @@ }, /turf/simulated/floor/tiled/dark, /area/library) -"bHU" = ( +"bHS" = ( /obj/structure/table/wood, /obj/item/device/taperecorder{ pixel_y = 0 @@ -51497,13 +50732,13 @@ /obj/item/device/eftpos{ eftpos_name = "Library EFTPOS scanner" }, -/obj/machinery/camera/network/service{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Library - Backroom"; dir = 8 }, /turf/simulated/floor/tiled/dark, /area/library) -"bHV" = ( +"bHT" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/alarm{ dir = 4; @@ -51521,17 +50756,17 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bHW" = ( +"bHU" = ( /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bHX" = ( +"bHV" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/recharger, /obj/structure/table/standard, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bHY" = ( +"bHW" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -51539,7 +50774,7 @@ /obj/item/modular_computer/console/preset/medical, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bHZ" = ( +"bHX" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/bed/chair/office/light{ dir = 4 @@ -51566,26 +50801,26 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIa" = ( +"bHY" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/table/glass, /obj/item/weapon/folder/white, /obj/item/weapon/stamp/cmo, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIb" = ( +"bHZ" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIc" = ( +"bIa" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bId" = ( +"bIb" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -51595,7 +50830,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIe" = ( +"bIc" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -51607,18 +50842,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIf" = ( -/obj/effect/floor_decal/corner/paleblue{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/machinery/photocopier, -/obj/machinery/keycard_auth{ - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"bIg" = ( +"bIe" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -51642,7 +50866,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bIh" = ( +"bIf" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -51660,7 +50884,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bIi" = ( +"bIg" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -51678,15 +50902,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bIj" = ( +"bIh" = ( /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bIk" = ( +"bIi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bIl" = ( +"bIj" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -51695,7 +50919,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bIm" = ( +"bIk" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -51709,7 +50933,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bIn" = ( +"bIl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -51724,38 +50948,38 @@ /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) +"bIm" = ( +/obj/effect/floor_decal/corner/mauve{ + icon_state = "corner_white"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/research) +"bIn" = ( +/obj/effect/floor_decal/corner/mauve{ + icon_state = "corner_white"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/research) "bIo" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 4 }, +/obj/effect/floor_decal/corner/mauve{ + icon_state = "corner_white"; + dir = 1 + }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) "bIp" = ( -/obj/effect/floor_decal/corner/mauve{ - icon_state = "corner_white"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"bIq" = ( -/obj/effect/floor_decal/corner/mauve{ - icon_state = "corner_white"; - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve{ - icon_state = "corner_white"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) -"bIr" = ( /obj/structure/noticeboard{ pixel_y = -32 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bIs" = ( +"bIq" = ( /obj/machinery/light, /obj/machinery/power/apc{ dir = 2; @@ -51765,7 +50989,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bIt" = ( +"bIr" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -51775,14 +50999,14 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bIu" = ( +"bIs" = ( /obj/machinery/light/small{ dir = 8 }, /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bIv" = ( +"bIt" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 4 @@ -51790,13 +51014,13 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bIw" = ( +"bIu" = ( /turf/simulated/wall/r_wall, /area/rnd/misc_lab) -"bIx" = ( +"bIv" = ( /turf/simulated/wall, /area/outpost/research/chemistry) -"bIy" = ( +"bIw" = ( /obj/machinery/door/airlock/research{ name = "Miscellaneous Research Room"; req_one_access = list(7) @@ -51812,18 +51036,18 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bIz" = ( +"bIx" = ( /obj/machinery/newscaster{ pixel_y = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bIA" = ( +"bIy" = ( /obj/machinery/light, /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bIB" = ( +"bIz" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -51833,26 +51057,26 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bIC" = ( +"bIA" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bID" = ( +"bIB" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -30 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bIE" = ( +"bIC" = ( /obj/machinery/light, /obj/item/device/radio/intercom{ pixel_y = -26 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bIF" = ( +"bID" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -51861,16 +51085,16 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/wood, /area/library) -"bIG" = ( +"bIE" = ( /obj/structure/bed/chair/comfy/black, /turf/simulated/floor/wood, /area/library) -"bIH" = ( +"bIF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/library) -"bII" = ( +"bIG" = ( /obj/structure/table/wood, /obj/item/weapon/pen/blue{ pixel_x = 5; @@ -51882,14 +51106,14 @@ /obj/machinery/recharger, /turf/simulated/floor/wood, /area/library) -"bIJ" = ( +"bIH" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light{ dir = 4; icon_state = "tube1"; pixel_x = 0 }, -/obj/machinery/camera/network/service{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Library - Fore Camera"; dir = 8 }, @@ -51898,15 +51122,15 @@ }, /turf/simulated/floor/wood, /area/library) -"bIK" = ( +"bII" = ( /turf/simulated/floor/tiled/dark, /area/library) -"bIL" = ( +"bIJ" = ( /obj/structure/cult/tome, /obj/item/clothing/under/suit_jacket/red, /turf/simulated/floor/tiled/dark, /area/library) -"bIM" = ( +"bIK" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -51915,7 +51139,7 @@ /obj/item/weapon/pen/invisible, /turf/simulated/floor/tiled/dark, /area/library) -"bIN" = ( +"bIL" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/papershredder, /obj/machinery/light_switch{ @@ -51927,14 +51151,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bIO" = ( +"bIM" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/hologram/holopad, /obj/machinery/firealarm/south, /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bIP" = ( +"bIN" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/photocopier, /obj/structure/sign/nosmoking_1{ @@ -51943,23 +51167,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bIQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - id = "CMO" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CMO" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "CMO" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/cmo) -"bIR" = ( +"bIP" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -51967,7 +51175,7 @@ /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIS" = ( +"bIQ" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/table/glass, /obj/item/weapon/paper_bin{ @@ -51976,7 +51184,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIT" = ( +"bIR" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ d1 = 2; @@ -51988,7 +51196,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIU" = ( +"bIS" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ d1 = 4; @@ -51997,7 +51205,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIV" = ( +"bIT" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -52006,7 +51214,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIW" = ( +"bIU" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -52017,7 +51225,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIX" = ( +"bIV" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -52029,14 +51237,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bIY" = ( +"bIW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red, /obj/machinery/meter{ name = "Scrubbers" }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bIZ" = ( +"bIX" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -52048,7 +51256,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bJa" = ( +"bIY" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, @@ -52068,13 +51276,13 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/sleep/research) -"bJb" = ( +"bIZ" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/sleep/research) -"bJc" = ( +"bJa" = ( /turf/simulated/wall/r_wall, /area/rnd/telesci) -"bJd" = ( +"bJb" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -52089,7 +51297,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/telesci) -"bJe" = ( +"bJc" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -52105,7 +51313,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bJf" = ( +"bJd" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -52120,7 +51328,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/telesci) -"bJg" = ( +"bJe" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 9 @@ -52131,14 +51339,14 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bJh" = ( +"bJf" = ( /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bJi" = ( +"bJg" = ( /obj/machinery/atmospherics/unary/freezer, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bJj" = ( +"bJh" = ( /obj/machinery/atmospherics/unary/heater, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -52146,7 +51354,7 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bJk" = ( +"bJi" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -52161,7 +51369,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bJl" = ( +"bJj" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -52178,7 +51386,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJm" = ( +"bJk" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -52188,7 +51396,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJn" = ( +"bJl" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -52196,7 +51404,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJo" = ( +"bJm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -52213,7 +51421,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJp" = ( +"bJn" = ( /obj/structure/sign/nosmoking_1{ pixel_y = 32 }, @@ -52229,7 +51437,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJq" = ( +"bJo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -52239,7 +51447,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJr" = ( +"bJp" = ( /obj/structure/closet/bombcloset, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -52253,7 +51461,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJs" = ( +"bJq" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, @@ -52268,10 +51476,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bJt" = ( +"bJr" = ( /turf/simulated/wall, /area/crew_quarters/sleep/main) -"bJu" = ( +"bJs" = ( /obj/machinery/door/airlock{ id_tag = "Dormitory 2"; name = "Dorm" @@ -52286,7 +51494,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/sleep/main) -"bJv" = ( +"bJt" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -52298,10 +51506,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bJw" = ( +"bJu" = ( /turf/simulated/wall, /area/crew_quarters/locker/locker_toilet) -"bJx" = ( +"bJv" = ( /obj/machinery/door/airlock{ name = "Unisex Restrooms" }, @@ -52315,13 +51523,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bJy" = ( +"bJw" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, /turf/simulated/floor/wood, /area/library) -"bJz" = ( +"bJx" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -52329,12 +51537,12 @@ }, /turf/simulated/floor/wood, /area/library) -"bJA" = ( +"bJy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/library) -"bJB" = ( +"bJz" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -52346,14 +51554,14 @@ }, /turf/simulated/floor/wood, /area/library) -"bJC" = ( +"bJA" = ( /obj/structure/table/wood, /obj/item/device/camera_film, /obj/item/device/camera_film, /obj/structure/window/reinforced, /turf/simulated/floor/wood, /area/library) -"bJD" = ( +"bJB" = ( /obj/machinery/door/window/westright{ dir = 2; icon_state = "right"; @@ -52364,7 +51572,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/wood, /area/library) -"bJE" = ( +"bJC" = ( /obj/effect/floor_decal/corner/paleblue/full, /obj/structure/closet/secure_closet/CMO, /obj/machinery/light_switch{ @@ -52373,7 +51581,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJF" = ( +"bJD" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -52386,7 +51594,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJG" = ( +"bJE" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -52394,7 +51602,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJH" = ( +"bJF" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -52404,7 +51612,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJI" = ( +"bJG" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -52417,7 +51625,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJJ" = ( +"bJH" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -52426,31 +51634,7 @@ /obj/item/weapon/clipboard, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJK" = ( -/obj/effect/floor_decal/corner/paleblue{ - icon_state = "corner_white"; - dir = 10 - }, -/obj/structure/table/glass, -/obj/item/device/megaphone, -/obj/item/device/radio{ - frequency = 1487; - name = "Medbay Emergency Radio Link"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/light, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer RC"; - pixel_x = 0; - pixel_y = -30 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"bJL" = ( +"bJJ" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 4 @@ -52461,7 +51645,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJM" = ( +"bJK" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -52473,21 +51657,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bJN" = ( +"bJL" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bJO" = ( +"bJM" = ( /obj/machinery/light/small/emergency{ dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bJP" = ( +"bJN" = ( /obj/effect/decal/cleanable/generic, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bJQ" = ( +"bJO" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -52501,7 +51685,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bJR" = ( +"bJP" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -52516,7 +51700,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bJS" = ( +"bJQ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -52531,7 +51715,7 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bJT" = ( +"bJR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -52547,10 +51731,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bJU" = ( +"bJS" = ( /turf/simulated/open, /area/turbolift/research_station) -"bJV" = ( +"bJT" = ( /obj/structure/table/standard, /obj/machinery/newscaster{ pixel_y = 32 @@ -52566,7 +51750,7 @@ /obj/item/clothing/mask/gas, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bJW" = ( +"bJU" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -52576,14 +51760,14 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bJX" = ( +"bJV" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bJY" = ( +"bJW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -52597,7 +51781,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bJZ" = ( +"bJX" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -52616,7 +51800,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bKa" = ( +"bJY" = ( /obj/structure/table/standard, /obj/structure/cable/green{ d2 = 8; @@ -52640,23 +51824,23 @@ /obj/item/weapon/folder/purple, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bKb" = ( +"bJZ" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bKc" = ( +"bKa" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bKd" = ( +"bKb" = ( /obj/machinery/atmospherics/pipe/manifold/visible, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bKe" = ( +"bKc" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4 }, @@ -52671,7 +51855,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKf" = ( +"bKd" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -52686,7 +51870,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKg" = ( +"bKe" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -52697,7 +51881,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKh" = ( +"bKf" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -52712,7 +51896,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKi" = ( +"bKg" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, @@ -52728,10 +51912,10 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKj" = ( +"bKh" = ( /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKk" = ( +"bKi" = ( /obj/structure/closet/secure_closet/scientist, /obj/machinery/light{ dir = 4; @@ -52744,12 +51928,12 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKl" = ( +"bKj" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /turf/simulated/floor/wood, /area/crew_quarters/sleep/main) -"bKm" = ( +"bKk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -52759,7 +51943,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, /area/crew_quarters/sleep/main) -"bKn" = ( +"bKl" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /obj/machinery/light_switch{ @@ -52767,11 +51951,11 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/main) -"bKo" = ( +"bKm" = ( /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bKp" = ( +"bKn" = ( /obj/machinery/door/airlock/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -52783,7 +51967,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bKq" = ( +"bKo" = ( /obj/machinery/light_switch{ pixel_y = 28 }, @@ -52798,7 +51982,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bKr" = ( +"bKp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -52808,16 +51992,16 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bKs" = ( +"bKq" = ( /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bKt" = ( +"bKr" = ( /obj/machinery/door/airlock{ name = "Unit 1" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bKu" = ( +"bKs" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -52826,7 +52010,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bKv" = ( +"bKt" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -52836,29 +52020,29 @@ }, /turf/simulated/floor/wood, /area/library) -"bKw" = ( +"bKu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/wood, /area/library) -"bKx" = ( +"bKv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/wood, /area/library) -"bKy" = ( +"bKw" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/library) -"bKz" = ( +"bKx" = ( /obj/structure/table/wood, /obj/machinery/recharger, /turf/simulated/floor/wood, /area/library) -"bKA" = ( +"bKy" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = 0; @@ -52867,31 +52051,31 @@ /obj/item/weapon/pen, /turf/simulated/floor/wood, /area/library) -"bKB" = ( +"bKz" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/library) -"bKC" = ( +"bKA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood, /area/library) -"bKD" = ( +"bKB" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/library) -"bKE" = ( +"bKC" = ( /obj/machinery/librarypubliccomp, /turf/simulated/floor/wood, /area/library) -"bKF" = ( +"bKD" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -52909,7 +52093,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKG" = ( +"bKE" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -52929,7 +52113,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKH" = ( +"bKF" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -52947,7 +52131,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKI" = ( +"bKG" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -52965,16 +52149,16 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKJ" = ( +"bKH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKK" = ( +"bKI" = ( /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKL" = ( +"bKJ" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -52984,7 +52168,7 @@ /obj/item/weapon/extinguisher, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKM" = ( +"bKK" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -52993,7 +52177,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKN" = ( +"bKL" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -53001,14 +52185,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKO" = ( +"bKM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bKP" = ( +"bKN" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -53020,11 +52204,11 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bKQ" = ( +"bKO" = ( /obj/structure/closet/crate, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bKR" = ( +"bKP" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -53044,25 +52228,25 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bKS" = ( +"bKQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/structure/bed/chair/office/light, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bKT" = ( +"bKR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bKU" = ( +"bKS" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bKV" = ( +"bKT" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -53084,7 +52268,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bKW" = ( +"bKU" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Miscellaneous Gas Controller"; dir = 4; @@ -53097,11 +52281,11 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bKX" = ( +"bKV" = ( /obj/machinery/atmospherics/valve, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bKY" = ( +"bKW" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -53113,34 +52297,34 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKZ" = ( +"bKX" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLa" = ( +"bKY" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLb" = ( +"bKZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLc" = ( +"bLa" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLd" = ( +"bLb" = ( /obj/structure/closet/secure_closet/scientist, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -53148,7 +52332,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLe" = ( +"bLc" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /obj/item/device/radio/intercom{ @@ -53156,7 +52340,7 @@ name = "Station Intercom (General)"; pixel_x = -28 }, -/obj/machinery/camera/network/civilian_main{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Dormitories - Main Level"; dir = 4 }, @@ -53165,7 +52349,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/main) -"bLf" = ( +"bLd" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -53180,7 +52364,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/sleep/main) -"bLg" = ( +"bLe" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -53188,11 +52372,11 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/main) -"bLh" = ( +"bLf" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bLi" = ( +"bLg" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -53204,7 +52388,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bLj" = ( +"bLh" = ( /obj/structure/sink{ dir = 8; icon_state = "sink"; @@ -53221,20 +52405,20 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bLk" = ( +"bLi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bLl" = ( +"bLj" = ( /obj/machinery/light{ dir = 4 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bLm" = ( +"bLk" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -23; @@ -53242,33 +52426,33 @@ }, /turf/simulated/floor/wood, /area/library) -"bLn" = ( +"bLl" = ( /obj/structure/bed/chair/office/dark, /turf/simulated/floor/wood, /area/library) -"bLo" = ( +"bLm" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, /turf/simulated/floor/wood, /area/library) -"bLp" = ( +"bLn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/carpet, /area/library) -"bLq" = ( +"bLo" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/carpet, /area/library) -"bLr" = ( +"bLp" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet, /area/library) -"bLs" = ( +"bLq" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53285,7 +52469,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLt" = ( +"bLr" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -53304,7 +52488,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLu" = ( +"bLs" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53329,13 +52513,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLv" = ( +"bLt" = ( /obj/structure/window/reinforced{ dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLw" = ( +"bLu" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -53343,25 +52527,25 @@ /obj/item/weapon/extinguisher, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLx" = ( +"bLv" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLy" = ( +"bLw" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLz" = ( +"bLx" = ( /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bLA" = ( +"bLy" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53374,7 +52558,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bLB" = ( +"bLz" = ( /obj/machinery/button/remote/blast_door{ id = "telescience"; name = "Containment Blast Doors"; @@ -53395,7 +52579,7 @@ /obj/structure/table/standard, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bLC" = ( +"bLA" = ( /obj/effect/floor_decal/corner/mauve/diagonal, /obj/effect/floor_decal/corner/mauve/diagonal{ icon_state = "corner_white_diagonal"; @@ -53406,7 +52590,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bLD" = ( +"bLB" = ( /obj/structure/table/reinforced, /obj/item/device/gps/science, /obj/item/device/gps/science, @@ -53422,16 +52606,16 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bLE" = ( +"bLC" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bLF" = ( +"bLD" = ( /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bLG" = ( +"bLE" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -53439,7 +52623,7 @@ /obj/structure/closet/bombcloset, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bLH" = ( +"bLF" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, @@ -53449,13 +52633,13 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bLI" = ( +"bLG" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bLJ" = ( +"bLH" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, @@ -53470,7 +52654,7 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bLK" = ( +"bLI" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -53488,7 +52672,7 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bLL" = ( +"bLJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -53499,7 +52683,7 @@ /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLM" = ( +"bLK" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, @@ -53518,7 +52702,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLN" = ( +"bLL" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -53529,7 +52713,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLO" = ( +"bLM" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ @@ -53538,7 +52722,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLP" = ( +"bLN" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -53547,7 +52731,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLQ" = ( +"bLO" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -53555,7 +52739,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLR" = ( +"bLP" = ( /obj/structure/closet/bombcloset, /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; @@ -53563,7 +52747,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLS" = ( +"bLQ" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /obj/structure/cable/green{ @@ -53577,7 +52761,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/main) -"bLT" = ( +"bLR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -53586,13 +52770,13 @@ /obj/machinery/light/small, /turf/simulated/floor/carpet, /area/crew_quarters/sleep/main) -"bLU" = ( +"bLS" = ( /obj/machinery/status_display{ pixel_x = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bLV" = ( +"bLT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -53603,10 +52787,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bLW" = ( +"bLU" = ( /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bLX" = ( +"bLV" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -53615,62 +52799,62 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bLY" = ( +"bLW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bLZ" = ( +"bLX" = ( /obj/machinery/door/airlock{ name = "Unit 2" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bMa" = ( +"bLY" = ( /obj/machinery/requests_console{ department = "Library"; pixel_x = -32 }, /turf/simulated/floor/wood, /area/library) -"bMb" = ( +"bLZ" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/simulated/floor/wood, /area/library) -"bMc" = ( +"bMa" = ( /obj/structure/table/wood, /obj/item/weapon/tape_roll, /turf/simulated/floor/wood, /area/library) -"bMd" = ( +"bMb" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/library) -"bMe" = ( +"bMc" = ( /obj/structure/bookcase{ name = "bookcase (Religion)" }, /turf/simulated/floor/wood, /area/library) -"bMf" = ( +"bMd" = ( /obj/structure/bookcase{ name = "bookcase (Fiction)" }, /turf/simulated/floor/wood, /area/library) -"bMg" = ( +"bMe" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/carpet, /area/library) -"bMh" = ( +"bMf" = ( /obj/structure/table/wood, /obj/item/weapon/pen, /obj/structure/disposalpipe/segment{ @@ -53678,7 +52862,7 @@ }, /turf/simulated/floor/wood, /area/library) -"bMi" = ( +"bMg" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -53695,7 +52879,7 @@ }, /turf/simulated/floor/plating, /area/library) -"bMj" = ( +"bMh" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53712,14 +52896,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bMk" = ( +"bMi" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/maintenance/library) -"bMl" = ( +"bMj" = ( /turf/simulated/wall, /area/maintenance/library) -"bMm" = ( +"bMk" = ( /obj/machinery/door/airlock/maintenance{ name = "Firefighting equipment"; req_access = list(12) @@ -53727,7 +52911,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMn" = ( +"bMl" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintance"; req_access = list(12) @@ -53735,7 +52919,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMo" = ( +"bMm" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/power/apc{ dir = 8; @@ -53745,7 +52929,7 @@ /obj/structure/cable, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMp" = ( +"bMn" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Maintenance Access"; @@ -53753,7 +52937,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMq" = ( +"bMo" = ( /obj/item/weapon/extinguisher, /obj/item/weapon/extinguisher{ pixel_x = 8 @@ -53761,11 +52945,11 @@ /obj/structure/table/rack, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMr" = ( +"bMp" = ( /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMs" = ( +"bMq" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -53773,14 +52957,14 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMt" = ( +"bMr" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMu" = ( +"bMs" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(19) }, @@ -53794,7 +52978,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bMv" = ( +"bMt" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53807,7 +52991,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bMw" = ( +"bMu" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -53815,11 +52999,11 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bMx" = ( +"bMv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bMy" = ( +"bMw" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -53827,7 +53011,7 @@ /obj/machinery/suit_storage_unit/standard_unit, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bMz" = ( +"bMx" = ( /obj/structure/grille, /obj/structure/window/reinforced/tinted{ dir = 1 @@ -53840,7 +53024,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bMA" = ( +"bMy" = ( /obj/structure/grille, /obj/structure/window/reinforced/tinted{ dir = 1 @@ -53853,7 +53037,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bMB" = ( +"bMz" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ name = "Autopsy Room"; @@ -53861,11 +53045,11 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bMC" = ( +"bMA" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/wall/r_wall, /area/rnd/misc_lab) -"bMD" = ( +"bMB" = ( /obj/machinery/door/window/southright{ heat_proof = 1; name = "Test Chamber"; @@ -53873,7 +53057,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) -"bME" = ( +"bMC" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53890,16 +53074,16 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bMF" = ( +"bMD" = ( /turf/simulated/wall, /area/chapel/office) -"bMG" = ( +"bME" = ( /obj/machinery/newscaster{ pixel_x = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bMH" = ( +"bMF" = ( /obj/structure/sink{ dir = 8; icon_state = "sink"; @@ -53916,32 +53100,32 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bMI" = ( +"bMG" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bMJ" = ( -/obj/machinery/camera/network/civilian_main{ +"bMH" = ( +/obj/machinery/camera/network/civilian_west{ c_tag = "Main Level - Restrooms"; dir = 8 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bMK" = ( +"bMI" = ( /obj/machinery/newscaster{ pixel_x = -32 }, /turf/simulated/floor/wood, /area/library) -"bML" = ( +"bMJ" = ( /obj/structure/table/wood, /obj/item/weapon/deck/tarot, /turf/simulated/floor/wood, /area/library) -"bMM" = ( +"bMK" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -53952,7 +53136,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/library) -"bMN" = ( +"bML" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53964,45 +53148,45 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/library) -"bMO" = ( +"bMM" = ( /obj/structure/closet/hydrant{ pixel_x = -32 }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMP" = ( +"bMN" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMQ" = ( +"bMO" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/effect/decal/cleanable/dirt, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMR" = ( +"bMP" = ( /obj/effect/landmark{ name = "blobstart" }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMS" = ( +"bMQ" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bMT" = ( +"bMR" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMU" = ( +"bMS" = ( /obj/structure/table, /obj/effect/decal/cleanable/cobweb2, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMV" = ( +"bMT" = ( /obj/effect/decal/warning_stripes, /obj/structure/ladder/up{ pixel_y = 16 @@ -54011,7 +53195,7 @@ roof_type = null }, /area/maintenance/maintcentral) -"bMW" = ( +"bMU" = ( /obj/structure/closet, /obj/item/clothing/head/ushanka, /obj/machinery/light/small/emergency{ @@ -54023,7 +53207,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bMX" = ( +"bMV" = ( /obj/structure/table/rack{ dir = 1 }, @@ -54035,25 +53219,25 @@ /obj/item/clothing/glasses/meson, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bMY" = ( +"bMW" = ( /obj/machinery/space_heater, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bMZ" = ( +"bMX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bNa" = ( +"bMY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bNb" = ( +"bMZ" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -54064,7 +53248,7 @@ /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bNc" = ( +"bNa" = ( /obj/machinery/computer/operating{ name = "Robotics Operating Computer" }, @@ -54074,13 +53258,13 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bNd" = ( +"bNb" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bNe" = ( +"bNc" = ( /obj/item/weapon/reagent_containers/spray/cleaner, /obj/structure/table/standard, /obj/machinery/camera/network/research{ @@ -54092,11 +53276,11 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bNf" = ( +"bNd" = ( /obj/item/toy/figure, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bNg" = ( +"bNe" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ density = 0; @@ -54108,7 +53292,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) -"bNh" = ( +"bNf" = ( /obj/item/stack/material/steel{ amount = -5; description_info = "A non-stack of non-metal. You're not sure how it exists or why it's stable."; @@ -54117,7 +53301,7 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bNi" = ( +"bNg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -54133,13 +53317,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bNj" = ( +"bNh" = ( /obj/structure/crematorium{ _wifi_id = "chapel_crema" }, /turf/simulated/floor/tiled/dark, /area/chapel/office) -"bNk" = ( +"bNi" = ( /obj/machinery/button/crematorium{ _wifi_id = "chapel_crema"; pixel_x = -32; @@ -54150,63 +53334,63 @@ }, /turf/simulated/floor/tiled/dark, /area/chapel/office) -"bNl" = ( +"bNj" = ( /obj/structure/morgue{ icon_state = "morgue1"; dir = 2 }, /turf/simulated/floor/tiled/dark, /area/chapel/office) -"bNm" = ( +"bNk" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; pixel_y = 0 }, -/obj/machinery/camera/network/civilian_main{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Aft Corridor - Camera 3"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bNn" = ( +"bNl" = ( /obj/machinery/door/airlock{ name = "Unisex Restrooms" }, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bNo" = ( +"bNm" = ( /obj/machinery/door/airlock{ name = "Unit 3" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bNp" = ( +"bNn" = ( /obj/machinery/light/small{ dir = 4 }, /obj/machinery/recharge_station, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bNq" = ( +"bNo" = ( /obj/structure/table/wood, /obj/item/weapon/dice/d20, /obj/item/weapon/dice, /turf/simulated/floor/wood, /area/library) -"bNr" = ( +"bNp" = ( /obj/structure/bookcase{ name = "bookcase (Non-Fiction)" }, /turf/simulated/floor/wood, /area/library) -"bNs" = ( +"bNq" = ( /obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/library) -"bNt" = ( +"bNr" = ( /obj/structure/table/rack{ dir = 1 }, @@ -54218,18 +53402,18 @@ /obj/item/clothing/glasses/meson, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNu" = ( +"bNs" = ( /obj/structure/closet, /obj/item/clothing/head/ushanka, /obj/machinery/light/small, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNv" = ( +"bNt" = ( /obj/item/device/t_scanner, /obj/structure/table/steel, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNw" = ( +"bNu" = ( /obj/structure/window/reinforced/tinted{ dir = 1 }, @@ -54246,12 +53430,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNx" = ( +"bNv" = ( /obj/structure/curtain/medical, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bNy" = ( +"bNw" = ( /obj/structure/window/reinforced/tinted{ dir = 1 }, @@ -54267,22 +53451,22 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNz" = ( +"bNx" = ( /obj/structure/curtain/medical, /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bNA" = ( +"bNy" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNB" = ( +"bNz" = ( /obj/item/stack/material/steel, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNC" = ( +"bNA" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -54296,7 +53480,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bND" = ( +"bNB" = ( /obj/machinery/atmospherics/pipe/zpipe/up/supply{ icon_state = "up-supply"; dir = 8 @@ -54316,7 +53500,7 @@ roof_type = null }, /area/maintenance/maintcentral) -"bNE" = ( +"bNC" = ( /obj/structure/closet, /obj/item/clothing/head/ushanka, /obj/machinery/light/small{ @@ -54324,12 +53508,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bNF" = ( +"bND" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bNG" = ( +"bNE" = ( /obj/machinery/door/airlock/maintenance{ name = "Firefighting equipment"; req_access = list(12) @@ -54337,7 +53521,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bNH" = ( +"bNF" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced, /obj/structure/window/phoronreinforced{ @@ -54371,7 +53555,7 @@ }, /turf/simulated/floor/plating, /area/rnd/telesci) -"bNI" = ( +"bNG" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 4; @@ -54385,7 +53569,7 @@ /obj/machinery/door/window/southright, /turf/simulated/floor/tiled/dark, /area/rnd/telesci) -"bNJ" = ( +"bNH" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -54398,15 +53582,15 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bNK" = ( +"bNI" = ( /obj/machinery/optable, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bNL" = ( +"bNJ" = ( /obj/structure/closet/crate/freezer, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bNM" = ( +"bNK" = ( /obj/machinery/door/window/southright{ dir = 1; heat_proof = 1; @@ -54415,17 +53599,17 @@ }, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) -"bNN" = ( +"bNL" = ( /turf/simulated/floor/tiled/dark, /area/chapel/office) -"bNO" = ( +"bNM" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bNP" = ( +"bNN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -54438,7 +53622,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bNQ" = ( +"bNO" = ( /obj/structure/sign/directions/evac{ dir = 1; icon_state = "direction_evac"; @@ -54453,7 +53637,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bNR" = ( +"bNP" = ( /obj/machinery/door/airlock{ name = "Unisex Showers" }, @@ -54461,7 +53645,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bNS" = ( +"bNQ" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -54470,7 +53654,7 @@ }, /turf/simulated/floor/wood, /area/library) -"bNT" = ( +"bNR" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -54479,20 +53663,20 @@ }, /turf/simulated/floor/wood, /area/library) -"bNU" = ( +"bNS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/carpet, /area/library) -"bNV" = ( +"bNT" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/carpet, /area/library) -"bNW" = ( +"bNU" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -54504,24 +53688,24 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/library) -"bNX" = ( +"bNV" = ( /obj/machinery/light/small/emergency, /obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/library) -"bNY" = ( +"bNW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/iv_drip, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bNZ" = ( +"bNX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bOa" = ( +"bNY" = ( /obj/structure/grille, /obj/structure/window/reinforced/tinted{ dir = 8; @@ -54534,46 +53718,46 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bOb" = ( +"bNZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bOc" = ( +"bOa" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/iv_drip, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bOd" = ( +"bOb" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bOe" = ( +"bOc" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bOf" = ( +"bOd" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 10 }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bOg" = ( +"bOe" = ( /obj/item/device/t_scanner, /obj/structure/table/steel, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bOh" = ( +"bOf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -54593,7 +53777,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bOi" = ( +"bOg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; @@ -54611,7 +53795,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bOj" = ( +"bOh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -54630,7 +53814,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bOk" = ( +"bOi" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Telescience Test Chamber"; dir = 4; @@ -54638,17 +53822,17 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/telesci) -"bOl" = ( +"bOj" = ( /turf/simulated/floor/tiled/dark, /area/rnd/telesci) -"bOm" = ( +"bOk" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bOn" = ( +"bOl" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 4 @@ -54658,7 +53842,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bOo" = ( +"bOm" = ( /obj/effect/floor_decal/corner/mauve/full, /obj/machinery/alarm{ dir = 1; @@ -54667,11 +53851,11 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bOp" = ( +"bOn" = ( /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bOq" = ( +"bOo" = ( /obj/structure/table/standard, /obj/item/weapon/circular_saw, /obj/item/weapon/retractor, @@ -54682,21 +53866,21 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bOr" = ( +"bOp" = ( /turf/simulated/floor/reinforced, /area/rnd/misc_lab) -"bOs" = ( +"bOq" = ( /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) -"bOt" = ( +"bOr" = ( /obj/machinery/air_sensor{ frequency = 1439; id_tag = "misc_res_sensor" }, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) -"bOu" = ( +"bOs" = ( /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; dir = 1 @@ -54706,7 +53890,7 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"bOv" = ( +"bOt" = ( /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; dir = 1 @@ -54716,18 +53900,18 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"bOw" = ( +"bOu" = ( /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; dir = 1 }, -/obj/machinery/camera/network/civilian_main{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Chapel - Office"; dir = 8 }, /turf/simulated/floor/wood, /area/chapel/office) -"bOx" = ( +"bOv" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -54739,7 +53923,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bOy" = ( +"bOw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -54755,13 +53939,13 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bOz" = ( +"bOx" = ( /obj/item/device/radio/intercom{ pixel_x = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bOA" = ( +"bOy" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower{ icon_state = "shower"; @@ -54769,14 +53953,14 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bOB" = ( +"bOz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bOC" = ( +"bOA" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower{ dir = 8; @@ -54789,21 +53973,21 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bOD" = ( +"bOB" = ( /turf/unsimulated/chasm_mask, /area/crew_quarters/locker/locker_toilet) -"bOE" = ( +"bOC" = ( /obj/machinery/lapvend, /turf/simulated/floor/wood, /area/library) -"bOF" = ( +"bOD" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/simulated/floor/wood, /area/library) -"bOG" = ( +"bOE" = ( /obj/structure/table/wood, /obj/item/weapon/packageWrap, /obj/item/device/radio/intercom{ @@ -54812,49 +53996,49 @@ pixel_y = -27 }, /obj/machinery/light, -/obj/machinery/camera/network/service{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Library - Port Camera"; dir = 1 }, /obj/item/weapon/hand_labeler, /turf/simulated/floor/wood, /area/library) -"bOH" = ( +"bOF" = ( /obj/structure/filingcabinet, /turf/simulated/floor/wood, /area/library) -"bOI" = ( +"bOG" = ( /obj/machinery/papershredder, /turf/simulated/floor/carpet, /area/library) -"bOJ" = ( +"bOH" = ( /obj/structure/bookcase{ name = "bookcase (Adult)" }, /turf/simulated/floor/wood, /area/library) -"bOK" = ( +"bOI" = ( /obj/machinery/bookbinder{ pixel_y = 0 }, /turf/simulated/floor/wood, /area/library) -"bOL" = ( +"bOJ" = ( /obj/machinery/photocopier, /obj/machinery/light, /turf/simulated/floor/wood, /area/library) -"bOM" = ( +"bOK" = ( /obj/structure/bookcase{ name = "bookcase (Reference)" }, /turf/simulated/floor/wood, /area/library) -"bON" = ( +"bOL" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/obj/machinery/camera/network/service{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Library - Starboard Camera"; dir = 1 }, @@ -54868,12 +54052,6 @@ /turf/simulated/floor/wood, /area/library) "bOO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/medical, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) -"bOP" = ( /obj/structure/window/reinforced/tinted, /obj/structure/window/reinforced/tinted{ dir = 8; @@ -54887,14 +54065,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bOQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/medical, -/obj/effect/decal/cleanable/dirt, -/obj/random/loot, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) "bOR" = ( /obj/machinery/access_button{ command = "cycle_interior"; @@ -56464,7 +55634,7 @@ pixel_x = 30 }, /obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/camera/network/service{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Kitchen - Food Preparation"; dir = 8 }, @@ -56475,7 +55645,7 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/machinery/camera/network/service{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Kitchen - Cold Storage"; dir = 4 }, @@ -57191,7 +56361,7 @@ icon_state = "tube1"; pixel_y = 0 }, -/obj/machinery/camera/network/service{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Hydroponics - Produce Storage"; dir = 4 }, @@ -57273,7 +56443,7 @@ /area/hallway/primary/aft) "bTz" = ( /obj/machinery/light, -/obj/machinery/camera/network/civilian_main{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Aft Corridor - Camera 2"; dir = 1 }, @@ -57506,7 +56676,7 @@ dir = 4 }, /obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/service{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Hydroponics - Greenhouse"; dir = 8 }, @@ -58181,7 +57351,7 @@ icon_state = "tube1"; pixel_y = 0 }, -/obj/machinery/camera/network/service{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Bar - Kitchen Counter"; dir = 4 }, @@ -58216,7 +57386,7 @@ /turf/simulated/floor/wood, /area/crew_quarters/bar) "bVC" = ( -/obj/machinery/camera/network/service{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Bar - Dance Floor"; dir = 8 }, @@ -58405,7 +57575,7 @@ /turf/simulated/floor/grass, /area/hydroponics) "bVY" = ( -/obj/machinery/camera/network/service{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Hydroponics - Animal Pen"; dir = 1 }, @@ -58643,7 +57813,7 @@ /turf/simulated/floor/plating, /area/hydroponics) "bWs" = ( -/obj/machinery/camera/network/civilian_main{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Aft Corridor - Camera 1"; dir = 4 }, @@ -58697,31 +57867,6 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bWy" = ( -/obj/machinery/light_switch{ - pixel_x = 4; - pixel_y = 26 - }, -/obj/machinery/button/remote/blast_door{ - id = "bar"; - name = "Bar Shutters"; - pixel_y = 36 - }, -/obj/machinery/camera/network/service{ - c_tag = "Bar - Counter" - }, -/obj/machinery/button/windowtint{ - id = "finedining"; - pixel_x = -4; - pixel_y = 26 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"bWz" = ( -/obj/structure/table/reinforced, -/obj/machinery/chemical_dispenser/coffeemaster/full, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) "bWA" = ( /obj/structure/closet/crate, /turf/simulated/floor/plating, @@ -58987,7 +58132,7 @@ /obj/machinery/alarm{ pixel_y = 23 }, -/obj/machinery/camera/network/supply{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Cargo - Main Lobby" }, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -59334,7 +58479,7 @@ icon_state = "tube1"; pixel_x = 0 }, -/obj/machinery/camera/network/service{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Bar - Backroom"; dir = 8 }, @@ -59433,6 +58578,24 @@ /turf/simulated/floor/tiled, /area/quartermaster/office) "bXU" = ( +/obj/machinery/door/firedoor{ + dir = 4; + name = "Firelock East" + }, +/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/quartermaster/office) +"bXV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -59450,7 +58613,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bXV" = ( +"bXW" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -59465,7 +58628,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bXW" = ( +"bXX" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -59476,7 +58639,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bXX" = ( +"bXY" = ( /obj/structure/table/wood, /obj/item/weapon/material/kitchen/utensil/fork{ pixel_x = 8 @@ -59493,7 +58656,7 @@ /obj/item/weapon/material/kitchen/utensil/fork, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXY" = ( +"bXZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -59504,11 +58667,11 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXZ" = ( +"bYa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYa" = ( +"bYb" = ( /obj/machinery/requests_console{ announcementConsole = 0; department = "Bar"; @@ -59525,7 +58688,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bYb" = ( +"bYc" = ( /obj/structure/sign/securearea{ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; icon_state = "monkey_painting"; @@ -59536,26 +58699,26 @@ /obj/structure/reagent_dispensers/beerkeg, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYc" = ( +"bYd" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYd" = ( +"bYe" = ( /mob/living/carbon/human/monkey/punpun, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYe" = ( +"bYf" = ( /obj/effect/landmark/start{ name = "Bartender" }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYf" = ( +"bYg" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYg" = ( +"bYh" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -59568,7 +58731,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/library) -"bYh" = ( +"bYi" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -59579,22 +58742,46 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/cargo) -"bYi" = ( +"bYj" = ( /turf/simulated/wall, /area/maintenance/substation/civilian_west) -"bYj" = ( +"bYk" = ( /obj/machinery/light/small, /turf/simulated/floor/tiled/dark, /area/turbolift/cargo_station) -"bYk" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/quartermaster/office) "bYl" = ( -/obj/structure/filingcabinet/filingcabinet, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 9 + }, /turf/simulated/floor/tiled, /area/quartermaster/office) "bYm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"bYn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"bYo" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"bYp" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"bYq" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -59606,7 +58793,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/quartermaster/office) -"bYn" = ( +"bYr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -59616,20 +58803,20 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYo" = ( +"bYs" = ( /obj/machinery/door/firedoor/multi_tile{ dir = 1 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYp" = ( +"bYt" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bYq" = ( +"bYu" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=CC2"; location = "Civ" @@ -59638,7 +58825,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bYr" = ( +"bYv" = ( /obj/structure/table/wood, /obj/item/weapon/material/kitchen/utensil/knife/plastic{ pixel_x = -8 @@ -59655,7 +58842,7 @@ /obj/item/weapon/material/kitchen/utensil/knife/plastic, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYs" = ( +"bYw" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -59663,29 +58850,18 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYt" = ( +"bYx" = ( /obj/machinery/vending/boozeomat, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bYu" = ( +"bYy" = ( /obj/structure/sign/poster{ pixel_x = 0; pixel_y = 0 }, /turf/simulated/wall, /area/crew_quarters/bar) -"bYv" = ( -/obj/structure/table/wood, -/obj/item/weapon/flame/lighter/zippo, -/obj/item/weapon/screwdriver, -/obj/item/clothing/head/that{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/weapon/book/manual/barman_recipes, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"bYw" = ( +"bYA" = ( /obj/structure/bed/chair/wood{ icon_state = "wooden_chair"; dir = 8 @@ -59695,20 +58871,20 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYx" = ( +"bYB" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYy" = ( +"bYC" = ( /obj/item/weapon/bedsheet/brown, /obj/structure/bed, /obj/machinery/firealarm/east, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYz" = ( +"bYD" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -59724,7 +58900,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/cargo) -"bYA" = ( +"bYE" = ( /obj/machinery/door/airlock/engineering{ name = "Civilian West Substation"; req_one_access = list(11,24) @@ -59738,7 +58914,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) -"bYB" = ( +"bYF" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -59755,17 +58931,17 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) -"bYC" = ( +"bYG" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "\[F.3] Civilian Substation Bypass" }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) -"bYD" = ( +"bYH" = ( /obj/turbolift_map_holder/aurora/cargo, /turf/simulated/floor/tiled/dark, /area/turbolift/cargo_station) -"bYE" = ( +"bYI" = ( /obj/item/weapon/folder/yellow, /obj/item/device/eftpos{ eftpos_name = "Cargo Bay EFTPOS scanner" @@ -59773,7 +58949,7 @@ /obj/structure/table/standard{ name = "plastic table frame" }, -/obj/machinery/camera/network/supply{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Cargo - Main Desk"; dir = 4 }, @@ -59787,7 +58963,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYF" = ( +"bYJ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, @@ -59802,25 +58978,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYG" = ( -/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/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bYH" = ( +"bYK" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock East" @@ -59843,25 +59001,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYI" = ( -/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/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bYJ" = ( +"bYL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -59877,31 +59017,26 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYK" = ( +"bYM" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYL" = ( +"bYN" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bYM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bYN" = ( +"bYO" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bYO" = ( +"bYP" = ( /obj/structure/window/reinforced/polarized{ id = "dancedance" }, @@ -59921,7 +59056,7 @@ /obj/item/weapon/material/kitchen/utensil/spoon, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYP" = ( +"bYQ" = ( /obj/structure/table/reinforced, /obj/machinery/door/blast/shutters{ dir = 8; @@ -59934,7 +59069,7 @@ /obj/item/weapon/paper_bin, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bYQ" = ( +"bYR" = ( /obj/machinery/door/window{ dir = 2; name = "Bar"; @@ -59942,25 +59077,13 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bYR" = ( -/obj/structure/window/reinforced/polarized{ - id = "finedining" - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) "bYS" = ( /obj/structure/window/reinforced/polarized{ id = "finedining" }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/machinery/smartfridge/drinks, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bYT" = ( +"bYU" = ( /obj/machinery/power/terminal{ dir = 4 }, @@ -59968,13 +59091,13 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/machinery/camera/network/civilian_main{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Civilian - Civilian Substation"; dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) -"bYU" = ( +"bYV" = ( /obj/machinery/power/smes/buildable{ charge = 0; RCon_tag = "Substation - \[F.3] Civilian" @@ -59986,7 +59109,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) -"bYV" = ( +"bYW" = ( /obj/item/weapon/storage/belt/utility, /obj/structure/table/standard{ name = "plastic table frame" @@ -60012,16 +59135,26 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYW" = ( +"bYX" = ( /obj/machinery/papershredder, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYX" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/loading, -/turf/simulated/floor/tiled, -/area/quartermaster/office) "bYY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"bYZ" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -32 }, @@ -60030,14 +59163,14 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYZ" = ( +"bZa" = ( /obj/machinery/status_display{ pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZa" = ( +"bZb" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -60047,11 +59180,18 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZb" = ( +"bZc" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bZc" = ( +"bZd" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"bZe" = ( /obj/structure/table/wood, /obj/item/weapon/flame/candle, /obj/structure/cable/green{ @@ -60065,7 +59205,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZd" = ( +"bZf" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -60073,7 +59213,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZe" = ( +"bZg" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -60081,7 +59221,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZf" = ( +"bZh" = ( /obj/structure/bed/chair/comfy/black, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -60089,18 +59229,18 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZg" = ( +"bZi" = ( /obj/structure/bed/chair/comfy/black, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZh" = ( +"bZj" = ( /obj/machinery/vending/cigarette, -/obj/machinery/camera/network/service{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Bar - Smoking Lounge" }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZi" = ( +"bZk" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -60112,7 +59252,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bZj" = ( +"bZl" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -60123,7 +59263,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bZk" = ( +"bZm" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -60143,7 +59283,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bZl" = ( +"bZn" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -60155,7 +59295,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) -"bZm" = ( +"bZo" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Civilian (Main Level)"; name_tag = "Civilian (Main Level) Subgrid" @@ -60171,36 +59311,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) -"bZn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/wall, -/area/quartermaster/office) -"bZo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall, -/area/quartermaster/office) "bZp" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/office) -"bZq" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargo_toup" - }, -/turf/simulated/floor/plating, -/area/quartermaster/office) -"bZr" = ( /obj/machinery/newscaster{ pixel_x = -27; pixel_y = 1 @@ -60216,33 +59327,13 @@ /obj/effect/floor_decal/corner/brown/full, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZs" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bZt" = ( +"bZq" = ( /obj/structure/table/standard{ name = "plastic table frame" }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/quartermaster/office) -"bZv" = ( +"bZr" = ( /obj/machinery/conveyor{ backwards = 1; dir = 1; @@ -60250,38 +59341,38 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZw" = ( +"bZs" = ( /obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"bZx" = ( +"bZt" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"bZy" = ( +"bZu" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZz" = ( +"bZv" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZA" = ( +"bZw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZB" = ( +"bZx" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Bar Maintenance"; @@ -60292,7 +59383,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"bZC" = ( +"bZy" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -60305,16 +59396,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bZD" = ( +"bZz" = ( /obj/structure/closet, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/library) -"bZE" = ( -/obj/structure/sign/electricshock, +"bZA" = ( /turf/simulated/wall, -/area/maintenance/substation/civilian_west) -"bZF" = ( +/area/quartermaster/storage) +"bZB" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -60327,23 +59417,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) -"bZG" = ( -/turf/simulated/wall, -/area/quartermaster/storage) -"bZH" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/quartermaster/storage) -"bZI" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "cargo_toup" - }, -/obj/structure/plasticflaps, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/quartermaster/office) -"bZJ" = ( +"bZC" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -60360,7 +59434,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZK" = ( +"bZD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -60375,13 +59449,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZL" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bZM" = ( +"bZE" = ( /obj/machinery/firealarm/east, /obj/structure/table/standard{ name = "plastic table frame" @@ -60392,7 +59460,21 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZN" = ( +"bZF" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"bZG" = ( /obj/machinery/conveyor{ backwards = 1; dir = 1; @@ -60402,14 +59484,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZO" = ( +"bZH" = ( /obj/structure/cryofeed{ icon_state = "cryo_rear"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"bZP" = ( +"bZI" = ( /obj/machinery/cryopod{ icon_state = "body_scanner_0"; dir = 4 @@ -60421,17 +59503,10 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"bZQ" = ( +"bZJ" = ( /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"bZR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/aft) -"bZS" = ( +"bZK" = ( /obj/machinery/cryopod, /obj/machinery/light{ dir = 1; @@ -60444,11 +59519,11 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"bZT" = ( +"bZL" = ( /obj/structure/cryofeed, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"bZU" = ( +"bZM" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, @@ -60457,11 +59532,11 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/bar) -"bZV" = ( +"bZN" = ( /obj/structure/table/wood, /turf/simulated/floor/carpet, /area/crew_quarters/bar) -"bZW" = ( +"bZO" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, @@ -60470,7 +59545,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/bar) -"bZX" = ( +"bZP" = ( /obj/machinery/vending/snack, /obj/structure/window/reinforced{ dir = 8 @@ -60482,7 +59557,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZY" = ( +"bZQ" = ( /obj/machinery/computer/arcade, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -60490,19 +59565,19 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZZ" = ( +"bZR" = ( /obj/machinery/atm{ pixel_y = -32 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"caa" = ( +"bZS" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"cab" = ( +"bZT" = ( /obj/structure/table/wood, /obj/item/weapon/flame/candle, /obj/machinery/newscaster{ @@ -60511,13 +59586,13 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"cac" = ( +"bZU" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"cad" = ( +"bZV" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -60525,13 +59600,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cae" = ( +"bZW" = ( /obj/structure/closet/crate, /obj/effect/decal/cleanable/cobweb, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caf" = ( +"bZX" = ( /obj/structure/closet/crate/medical, /obj/structure/cable/green{ d1 = 1; @@ -60541,7 +59616,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cag" = ( +"bZY" = ( /obj/machinery/ringer{ department = "Cargo"; id = "cargo_ringer"; @@ -60557,7 +59632,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cah" = ( +"bZZ" = ( /obj/machinery/camera/network/supply{ c_tag = "Warehouse - North" }, @@ -60568,7 +59643,7 @@ }, /turf/simulated/floor/plating, /area/quartermaster/storage) -"cai" = ( +"caa" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/outline/yellow, @@ -60578,12 +59653,12 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caj" = ( +"cab" = ( /obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/large_stock_marker, +/obj/structure/table/standard, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cak" = ( +"cac" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 8 @@ -60597,7 +59672,7 @@ /obj/item/weapon/wrapping_paper, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cal" = ( +"cad" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 5 @@ -60609,7 +59684,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cam" = ( +"cae" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 1 @@ -60623,7 +59698,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"can" = ( +"caf" = ( /obj/structure/disposalpipe/segment, /obj/machinery/alarm{ dir = 4; @@ -60637,70 +59712,42 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cao" = ( -/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 = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"cap" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"caq" = ( +"cag" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"car" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "cargo_crates" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"cas" = ( +"cah" = ( /obj/effect/floor_decal/industrial/loading, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cat" = ( +"cai" = ( /obj/machinery/cryopod{ icon_state = "body_scanner_0"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"cau" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/aft) -"cav" = ( +"caj" = ( /obj/machinery/cryopod, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"caw" = ( +"cak" = ( /obj/structure/table/wood, /obj/machinery/light/small, -/obj/machinery/camera/network/service{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Bar - Diner Seating"; dir = 1 }, /turf/simulated/floor/carpet, /area/crew_quarters/bar) -"cax" = ( +"cal" = ( /obj/structure/table/wood, /obj/machinery/light/small, /turf/simulated/floor/carpet, /area/crew_quarters/bar) -"cay" = ( +"cam" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -60712,7 +59759,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caz" = ( +"can" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -60725,7 +59772,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caA" = ( +"cao" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -60739,7 +59786,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caB" = ( +"cap" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ d1 = 4; @@ -60758,7 +59805,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caC" = ( +"caq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -60776,7 +59823,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caD" = ( +"car" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -60790,7 +59837,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caE" = ( +"cas" = ( /obj/machinery/door/blast/shutters{ dir = 2; id = "qm_warehouse"; @@ -60810,7 +59857,43 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caF" = ( +"cat" = ( +/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/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"cau" = ( +/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/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"cav" = ( /obj/machinery/door/airlock/glass_mining{ name = "Equipment Storage"; req_access = list(31) @@ -60829,7 +59912,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"caG" = ( +"caw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -60852,7 +59935,7 @@ /obj/effect/floor_decal/corner/brown, /turf/simulated/floor/tiled, /area/quartermaster/office) -"caH" = ( +"cax" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -60878,40 +59961,13 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"caI" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"caJ" = ( +"cay" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"caK" = ( -/obj/machinery/cryopod{ - icon_state = "body_scanner_0"; - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/aft) -"caL" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/aft) -"caM" = ( +"caz" = ( /obj/machinery/computer/cryopod{ pixel_x = -32; pixel_y = -32 @@ -60922,14 +59978,7 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"caN" = ( -/obj/machinery/cryopod, -/obj/item/device/radio/intercom{ - pixel_y = -26 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/primary/aft) -"caO" = ( +"caA" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Bar Maintenance"; @@ -60937,7 +59986,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"caP" = ( +"caB" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -60945,7 +59994,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"caQ" = ( +"caC" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -60953,7 +60002,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"caR" = ( +"caD" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -60961,10 +60010,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"caS" = ( +"caE" = ( /turf/simulated/floor/tiled, /area/maintenance/library) -"caT" = ( +"caF" = ( /obj/structure/closet/crate/internals, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light/small{ @@ -60972,28 +60021,28 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caU" = ( +"caG" = ( /obj/structure/closet/crate, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caV" = ( +"caH" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caW" = ( +"caI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caX" = ( +"caJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caY" = ( +"caK" = ( /obj/machinery/button/remote/blast_door{ id = "qm_warehouse"; name = "Warehouse Door Control"; @@ -61003,7 +60052,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caZ" = ( +"caL" = ( /obj/machinery/button/remote/blast_door{ id = "qm_warehouse"; name = "Warehouse Door Control"; @@ -61020,7 +60069,7 @@ /obj/effect/large_stock_marker, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cba" = ( +"caM" = ( /obj/machinery/camera/network/supply{ c_tag = "Cargo - Warehouse Entrence"; dir = 1 @@ -61031,7 +60080,7 @@ /obj/machinery/light/small, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cbb" = ( +"caN" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 4 @@ -61044,6 +60093,175 @@ /obj/effect/large_stock_marker, /turf/simulated/floor/tiled, /area/quartermaster/office) +"caO" = ( +/obj/effect/floor_decal/corner/brown/full, +/obj/machinery/computer/guestpass{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"caP" = ( +/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, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"caQ" = ( +/obj/structure/noticeboard{ + pixel_y = -27 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"caR" = ( +/obj/effect/floor_decal/corner/brown/full{ + icon_state = "corner_white_full"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"caS" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #3" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"caT" = ( +/obj/machinery/door/airlock/maintenance{ + req_access = list(12) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/primary/aft) +"caU" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + icon_state = "conpipe-c"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"caV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 23 + }, +/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/plating, +/area/maintenance/library) +"caW" = ( +/obj/structure/cable{ + 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/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"caX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/library) +"caY" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"caZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"cba" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"cbb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) "cbc" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -61094,13 +60312,6 @@ /turf/simulated/floor/plating, /area/quartermaster/office) "cbg" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/primary/aft) -"cbh" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -61112,10 +60323,24 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/obj/structure/disposalpipe/segment{ - icon_state = "conpipe-c"; +/turf/simulated/floor/plating, +/area/maintenance/library) +"cbh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 1 + }, /turf/simulated/floor/plating, /area/maintenance/library) "cbi" = ( @@ -61124,17 +60349,15 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/alarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/library) @@ -61153,237 +60376,39 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/library) "cbk" = ( /obj/structure/cable{ - d1 = 1; + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/library) "cbl" = ( -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cbm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cbn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cbo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cbp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cbq" = ( -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = 24 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"cbr" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"cbs" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/noticeboard{ - pixel_y = 27 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"cbt" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"cbu" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"cbv" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/quartermaster/office) -"cbw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cbx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cby" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cbz" = ( -/obj/structure/cable{ - 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/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cbA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cbB" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/library) -"cbC" = ( +"cbm" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -61391,7 +60416,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/library) -"cbD" = ( +"cbn" = ( /obj/structure/boulder{ icon_state = "boulder2" }, @@ -61400,45 +60425,45 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"cbE" = ( +"cbo" = ( /obj/structure/boulder, /obj/structure/boulder, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"cbF" = ( +"cbp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate/plastic, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cbG" = ( +"cbq" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cbH" = ( +"cbr" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cbI" = ( /obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/standard, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cbJ" = ( +"cbs" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cbK" = ( +"cbt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cbL" = ( +"cbu" = ( /obj/machinery/door/airlock/maintenance{ name = "Mining Maintenance"; req_access = list(48) @@ -61449,14 +60474,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cbM" = ( +"cbv" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cbN" = ( +"cbw" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -61470,27 +60495,17 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cbO" = ( +"cbx" = ( /turf/simulated/floor/carpet, /area/quartermaster/office) -"cbP" = ( +"cby" = ( /obj/structure/bed/chair, /obj/effect/landmark/start{ name = "Cargo Technician" }, /turf/simulated/floor/carpet, /area/quartermaster/office) -"cbQ" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/quartermaster/office) -"cbR" = ( +"cbz" = ( /obj/random/junk, /obj/structure/disposalpipe/segment{ dir = 4 @@ -61498,7 +60513,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/plating, /area/maintenance/library) -"cbS" = ( +"cbA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -61511,13 +60526,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/plating, /area/maintenance/library) -"cbT" = ( +"cbB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, /area/maintenance/disposal) -"cbU" = ( +"cbC" = ( /obj/machinery/door/airlock/maintenance{ name = "Trash Compactor"; req_access = list(12) @@ -61535,30 +60550,30 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/disposal) -"cbV" = ( +"cbD" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, /area/maintenance/disposal) -"cbW" = ( +"cbE" = ( /turf/simulated/wall/r_wall, /area/maintenance/disposal) -"cbX" = ( +"cbF" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/library) -"cbY" = ( +"cbG" = ( /obj/structure/closet, /obj/random/loot, /turf/simulated/floor/tiled, /area/maintenance/library) -"cbZ" = ( +"cbH" = ( /obj/structure/closet, /turf/simulated/floor/plating, /area/maintenance/library) -"cca" = ( +"cbI" = ( /obj/structure/boulder{ icon_state = "boulder4" }, @@ -61567,7 +60582,7 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"ccb" = ( +"cbJ" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -61580,32 +60595,20 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/cargo) -"ccc" = ( +"cbK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"ccd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, +"cbL" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cce" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"ccf" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"ccg" = ( +"cbM" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cch" = ( +"cbN" = ( /obj/machinery/disposal, /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/disposalpipe/trunk{ @@ -61614,7 +60617,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cci" = ( +"cbO" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -61628,16 +60631,37 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/quartermaster/office) -"ccj" = ( +"cbP" = ( +/obj/effect/landmark/start{ + name = "Quartermaster" + }, +/turf/simulated/floor/carpet, +/area/quartermaster/office) +"cbQ" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/carpet, /area/quartermaster/office) -"cck" = ( +"cbR" = ( /obj/structure/table/standard, /turf/simulated/floor/carpet, /area/quartermaster/office) -"ccl" = ( +"cbS" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"cbT" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -61652,7 +60676,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"ccm" = ( +"cbU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -61662,7 +60686,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"ccn" = ( +"cbV" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -61673,7 +60697,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cco" = ( +"cbW" = ( /obj/effect/decal/warning_stripes, /obj/structure/ladder/up{ pixel_y = 16 @@ -61682,10 +60706,10 @@ roof_type = null }, /area/maintenance/library) -"ccp" = ( +"cbX" = ( /turf/simulated/wall, /area/maintenance/disposal) -"ccq" = ( +"cbY" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 9 @@ -61693,7 +60717,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccr" = ( +"cbZ" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -61706,14 +60730,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccs" = ( +"cca" = ( /obj/machinery/light/small/emergency{ dir = 1 }, /obj/structure/ladder, /turf/simulated/open, /area/maintenance/disposal) -"cct" = ( +"ccb" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -61723,32 +60747,37 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccu" = ( +"ccc" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 5 }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccv" = ( +"ccd" = ( /obj/structure/lattice/catwalk, /turf/simulated/open, /area/maintenance/disposal) -"ccw" = ( +"cce" = ( /obj/structure/lattice/catwalk, /obj/structure/sign/drop{ pixel_y = 32 }, /turf/simulated/open, /area/maintenance/disposal) -"ccx" = ( +"ccf" = ( /turf/simulated/open, /area/maintenance/disposal) -"ccy" = ( +"ccg" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, /area/maintenance/disposal) -"ccz" = ( +"cch" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cci" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate, /obj/machinery/light/small{ @@ -61756,28 +60785,23 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"ccA" = ( +"ccj" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate/freezer, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"ccB" = ( +"cck" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"ccC" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/standard, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"ccD" = ( +"ccl" = ( +/turf/unsimulated/chasm_mask, +/area/outpost/mining_main/refinery) +"ccm" = ( /obj/structure/weightlifter, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; @@ -61793,11 +60817,11 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/quartermaster/office) -"ccE" = ( +"ccn" = ( /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/quartermaster/office) -"ccF" = ( +"cco" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -61807,12 +60831,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/quartermaster/office) -"ccG" = ( +"ccp" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet, +/area/quartermaster/office) +"ccq" = ( /obj/structure/table/standard, /obj/item/weapon/deck/cards, /turf/simulated/floor/carpet, /area/quartermaster/office) -"ccH" = ( +"ccr" = ( /obj/structure/table/standard, /obj/machinery/camera/network/supply{ c_tag = "Cargo - Break Room"; @@ -61825,9 +60853,10 @@ pixel_y = 0; req_access = list(31) }, +/obj/item/trash/tray, /turf/simulated/floor/carpet, /area/quartermaster/office) -"ccI" = ( +"ccs" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -61847,7 +60876,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/library) -"ccJ" = ( +"cct" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -61862,7 +60891,7 @@ roof_type = null }, /area/maintenance/library) -"ccK" = ( +"ccu" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -61871,7 +60900,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/plating, /area/maintenance/library) -"ccL" = ( +"ccv" = ( /obj/structure/cable{ icon_state = "0-4"; d2 = 4 @@ -61881,7 +60910,7 @@ name = "west bump"; pixel_x = -24 }, -/obj/machinery/camera/network/civilian_main{ +/obj/machinery/camera/network/civilian_west{ c_tag = "Maintenance - Trash Compactor Control"; dir = 4 }, @@ -61891,7 +60920,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccM" = ( +"ccw" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -61906,7 +60935,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccN" = ( +"ccx" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -61915,7 +60944,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccO" = ( +"ccy" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 1 @@ -61925,7 +60954,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccP" = ( +"ccz" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, @@ -61944,7 +60973,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccQ" = ( +"ccA" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, @@ -61953,7 +60982,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/disposal) -"ccR" = ( +"ccB" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -61971,7 +61000,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"ccS" = ( +"ccC" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -61993,7 +61022,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"ccT" = ( +"ccD" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -62011,7 +61040,12 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/library) -"ccU" = ( +"ccE" = ( +/obj/effect/decal/cleanable/vomit, +/obj/effect/decal/cleanable/vomit, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ccF" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -62024,13 +61058,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/cargo) -"ccV" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, +"ccG" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/large_stock_marker, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"ccW" = ( +"ccH" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 8 @@ -62046,7 +61079,14 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"ccX" = ( +"ccI" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"ccJ" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -62057,7 +61097,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/quartermaster/office) -"ccY" = ( +"ccK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/quartermaster/office) +"ccL" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -62066,7 +61112,19 @@ }, /turf/simulated/floor/carpet, /area/quartermaster/office) -"ccZ" = ( +"ccM" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/quartermaster/office) +"ccN" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -62082,7 +61140,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cda" = ( +"ccO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -62092,7 +61150,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cdb" = ( +"ccP" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -62109,7 +61167,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cdc" = ( +"ccQ" = ( /obj/structure/disposalpipe/up{ icon_state = "pipe-u"; dir = 8 @@ -62133,7 +61191,7 @@ roof_type = null }, /area/maintenance/library) -"cdd" = ( +"ccR" = ( /obj/machinery/disposal{ name = "External Disposals" }, @@ -62147,7 +61205,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"cde" = ( +"ccS" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/closet/crate/trashcart, /obj/item/weapon/storage/bag/trash, @@ -62156,39 +61214,49 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"cdf" = ( +"ccT" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"cdg" = ( +"ccU" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"cdh" = ( +"ccV" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"cdi" = ( +"ccW" = ( /obj/machinery/light/small/emergency, /obj/structure/lattice/catwalk, /turf/simulated/open, /area/maintenance/disposal) -"cdj" = ( +"ccX" = ( /obj/machinery/light/small/emergency, /obj/structure/closet/crate, /turf/simulated/floor/plating, /area/maintenance/library) -"cdk" = ( +"ccY" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ccZ" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints, +/obj/effect/decal/cleanable/blood/tracks/footprints, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cda" = ( /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdl" = ( +"cdb" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 @@ -62197,16 +61265,15 @@ /obj/structure/closet/crate, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cdm" = ( +"cdc" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/network/supply{ c_tag = "Cargo - Main Warehouse"; dir = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cdn" = ( +"cdd" = ( /obj/effect/floor_decal/corner/brown/full, /obj/machinery/status_display/supply_display{ pixel_x = -32; @@ -62217,14 +61284,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdo" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"cdp" = ( +"cde" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -62237,27 +61297,27 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdq" = ( +"cdf" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdr" = ( +"cdg" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall, /area/maintenance/disposal) -"cds" = ( +"cdh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, /area/maintenance/disposal) -"cdt" = ( +"cdi" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -62266,7 +61326,7 @@ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdu" = ( +"cdj" = ( /obj/machinery/light/small/emergency{ dir = 8 }, @@ -62274,7 +61334,7 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdv" = ( +"cdk" = ( /obj/machinery/door/airlock/maintenance{ name = "Cargo Bay Warehouse Maintenance"; req_access = list(31) @@ -62285,7 +61345,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/quartermaster/storage) -"cdw" = ( +"cdl" = ( /obj/structure/cable{ d2 = 2; icon_state = "0-2"; @@ -62300,7 +61360,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdx" = ( +"cdm" = ( /obj/structure/punching_bag, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; @@ -62312,7 +61372,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdy" = ( +"cdn" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/machinery/alarm{ dir = 1; @@ -62320,7 +61380,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdz" = ( +"cdo" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -62332,7 +61392,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdA" = ( +"cdp" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/machinery/newscaster{ pixel_x = 0; @@ -62340,17 +61400,17 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdB" = ( +"cdq" = ( /obj/machinery/vending/cigarette, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdC" = ( +"cdr" = ( /obj/machinery/vending/snack, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdD" = ( +"cds" = ( /obj/structure/table/standard, /obj/machinery/microwave{ pixel_y = 6 @@ -62358,27 +61418,27 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdE" = ( +"cdt" = ( /obj/machinery/door/window/westright, /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdF" = ( +"cdu" = ( /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdG" = ( +"cdv" = ( /obj/machinery/door/window, /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdH" = ( +"cdw" = ( /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdI" = ( +"cdx" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -62396,7 +61456,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdJ" = ( +"cdy" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -62416,7 +61476,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdK" = ( +"cdz" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -62430,7 +61490,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdL" = ( +"cdA" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -62448,17 +61508,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"cdN" = ( +"cdB" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -62471,12 +61521,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdO" = ( +"cdC" = ( /obj/random/junk, /obj/random/junk, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"cdP" = ( +"cdD" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -62485,13 +61535,13 @@ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdQ" = ( +"cdE" = ( /obj/machinery/door/window/southright, /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdR" = ( +"cdF" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -62500,7 +61550,7 @@ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdS" = ( +"cdG" = ( /obj/random/junk, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -62519,7 +61569,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdT" = ( +"cdH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -62536,31 +61586,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - name = "Cargo"; - sortType = "Cargo" - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"cdV" = ( +"cdI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -62581,7 +61607,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdW" = ( +"cdJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -62605,7 +61631,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdX" = ( +"cdK" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -62637,7 +61663,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdY" = ( +"cdL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -62658,7 +61684,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdZ" = ( +"cdM" = ( /obj/machinery/door/airlock/maintenance{ req_one_access = list(12,54) }, @@ -62679,7 +61705,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/library) -"cea" = ( +"cdN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -62696,7 +61722,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"ceb" = ( +"cdO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -62716,64 +61742,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cec" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4; - icon_state = "warning_dust" - }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ced" = ( -/obj/structure/track{ - icon_state = "track12" - }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"cee" = ( -/obj/structure/track{ - icon_state = "track6" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/outpost/mining_main/eva) -"cef" = ( -/obj/structure/track{ - icon_state = "track12" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/outpost/mining_main/eva) -"ceg" = ( -/obj/structure/track{ - icon_state = "track12" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/outpost/mining_main/eva) -"ceh" = ( -/obj/structure/track{ - icon_state = "track10" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/outpost/mining_main/eva) -"cei" = ( +"cdP" = ( /turf/simulated/wall, /area/outpost/mining_main/eva) -"cej" = ( +"cdQ" = ( /turf/simulated/wall, /area/outpost/mining_main/refinery) -"cek" = ( +"cdR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -62789,51 +61764,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cel" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Mining Processing Hatch"; - req_access = list(48) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cem" = ( -/obj/structure/track{ - icon_state = "track3" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/outpost/mining_main/eva) -"cen" = ( -/obj/structure/track{ - icon_state = "track13" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/outpost/mining_main/eva) -"ceo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" - }, -/area/outpost/mining_main/eva) -"cep" = ( -/obj/vehicle/train/cargo/engine/mining{ - icon_state = "mining_engine"; - dir = 2 - }, -/obj/structure/track{ - icon_state = "track12" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/outpost/mining_main/eva) -"ceq" = ( +"cdS" = ( /obj/structure/closet/secure_closet/miner, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; @@ -62845,7 +61776,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cer" = ( +"cdT" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -62858,7 +61789,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ces" = ( +"cdU" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, @@ -62874,7 +61805,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cet" = ( +"cdV" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -62890,7 +61821,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceu" = ( +"cdW" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 8 @@ -62913,7 +61844,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cev" = ( +"cdX" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; @@ -62935,7 +61866,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cew" = ( +"cdY" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -62954,108 +61885,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cex" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/obj/structure/plasticflaps, -/obj/machinery/mineral/output, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cey" = ( -/obj/machinery/mineral/stacking_machine, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cez" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/obj/machinery/mineral/input, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"ceA" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"ceB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"ceC" = ( -/obj/structure/track{ - icon_state = "track4" - }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ceD" = ( -/obj/structure/track{ - icon_state = "track12" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4; - icon_state = "warning_dust" - }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ceE" = ( -/obj/vehicle/train/cargo/trolley/mining, -/obj/structure/track{ - icon_state = "track12" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/outpost/mining_main/eva) -"ceF" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" - }, -/area/outpost/mining_main/eva) -"ceG" = ( -/obj/structure/track{ - icon_state = "track9" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/outpost/mining_main/eva) -"ceH" = ( -/obj/structure/table/rack{ - dir = 1 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" - }, -/area/outpost/mining_main/eva) -"ceI" = ( +"cdZ" = ( /obj/structure/closet/secure_closet/miner, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; @@ -63066,18 +61896,15 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceJ" = ( +"cea" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceK" = ( +"ceb" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8; icon_state = "map" @@ -63087,7 +61914,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceL" = ( +"cec" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -63102,7 +61929,23 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceM" = ( +"ced" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/eva) +"cee" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 @@ -63115,7 +61958,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"ceN" = ( +"cef" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -63131,113 +61974,113 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"ceO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"ceP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"ceQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"ceR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"ceS" = ( -/obj/machinery/mineral/processing_unit, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"ceT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"ceU" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 4 - }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ceV" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 1 - }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ceW" = ( -/obj/structure/closet/secure_closet/miner, +"ceg" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; - dir = 9 - }, -/obj/machinery/status_display/supply_display{ - pixel_x = -32 + dir = 4 }, /turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"ceX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/area/outpost/mining_main/refinery) +"ceh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cei" = ( +/obj/machinery/mineral/stacking_machine, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cej" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cek" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cel" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cem" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 5 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cen" = ( +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" }, -/turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceY" = ( +"ceo" = ( +/obj/structure/track{ + icon_state = "track14" + }, +/obj/structure/ore_box{ + icon_state = "orebox1"; + name = "minecart ore box" + }, +/obj/structure/track{ + icon_state = "track14" + }, +/obj/structure/ore_box{ + icon_state = "orebox1"; + name = "minecart ore box" + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cep" = ( +/obj/structure/track{ + icon_state = "track10" + }, +/obj/structure/ore_box{ + icon_state = "orebox1"; + name = "minecart ore box" + }, +/obj/structure/track{ + icon_state = "track10" + }, +/obj/structure/ore_box{ + icon_state = "orebox1"; + name = "minecart ore box" + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ceq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8; @@ -63245,7 +62088,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceZ" = ( +"cer" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 @@ -63257,7 +62100,17 @@ /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfa" = ( +"ces" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cet" = ( /obj/structure/grille, /obj/machinery/door/firedoor{ dir = 2 @@ -63276,7 +62129,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cfb" = ( +"ceu" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -63292,7 +62145,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfc" = ( +"cev" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -63308,19 +62161,36 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cfd" = ( -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 6 +"cew" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/mineral/equipment_vendor, -/turf/simulated/floor/tiled, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cfe" = ( +"cex" = ( /obj/machinery/mineral/rigpress, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cff" = ( +"cey" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "mining_internal" + }, +/obj/machinery/mineral/output, +/obj/machinery/door/firedoor, +/obj/structure/plasticflaps, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cez" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -63333,27 +62203,45 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cfg" = ( -/obj/machinery/mineral/input, -/obj/machinery/conveyor{ - dir = 1; - id = "mining_internal" +"ceA" = ( +/obj/structure/track{ + icon_state = "track12" }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cfh" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 5 +/obj/structure/track{ + icon_state = "track12" }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"cfi" = ( -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" +"ceB" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4; + icon_state = "warning_dust" + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ceC" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" }, /area/outpost/mining_main/eva) -"cfj" = ( +"ceD" = ( +/obj/vehicle/train/cargo/trolley/mining, +/obj/structure/track{ + icon_state = "track13" + }, +/obj/vehicle/train/cargo/trolley/mining, +/obj/structure/track{ + icon_state = "track13" + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ceE" = ( /obj/structure/closet/secure_closet/miner, /obj/structure/window/reinforced, /obj/effect/floor_decal/corner/brown{ @@ -63362,7 +62250,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfk" = ( +"ceF" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -63374,7 +62262,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfl" = ( +"ceG" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/door/window/southright, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -63383,7 +62271,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfm" = ( +"ceH" = ( /obj/structure/window/reinforced, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; @@ -63392,24 +62280,7 @@ /obj/structure/closet/crate, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"cfo" = ( +"ceI" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 @@ -63421,14 +62292,10 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfp" = ( +"ceJ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 5 - }, /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -63436,14 +62303,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfq" = ( +"ceK" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfr" = ( +"ceL" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 @@ -63454,46 +62321,12 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfs" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cft" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "mining_internal" - }, -/obj/machinery/mineral/output, -/obj/machinery/door/firedoor, -/obj/structure/plasticflaps, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cfu" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" - }, -/area/outpost/mining_main/eva) -"cfv" = ( +"ceM" = ( /obj/machinery/recharge_station, /obj/machinery/firealarm/west, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cfw" = ( +"ceN" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 @@ -63505,13 +62338,7 @@ /obj/item/weapon/ladder_mobile, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cfy" = ( +"ceO" = ( /obj/structure/table/rack{ dir = 1 }, @@ -63527,7 +62354,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfz" = ( +"ceP" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -63541,28 +62368,28 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cfA" = ( +"ceQ" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfB" = ( +"ceR" = ( /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" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfC" = ( +"ceS" = ( /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfD" = ( +"ceT" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 @@ -63577,18 +62404,28 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfE" = ( -/obj/machinery/mineral/unloading_machine, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cfF" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; +"ceU" = ( +/obj/structure/window/reinforced{ dir = 8 }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"cfG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"ceV" = ( +/obj/machinery/mineral/output, +/obj/machinery/conveyor{ + dir = 1; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"ceW" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1379; @@ -63601,7 +62438,7 @@ icon_state = "asteroidfloor" }, /area/outpost/mining_main/eva) -"cfH" = ( +"ceX" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -63618,7 +62455,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cfI" = ( +"ceY" = ( /obj/machinery/light/small{ dir = 1 }, @@ -63634,7 +62471,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfJ" = ( +"ceZ" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 2; frequency = 1379; @@ -63645,7 +62482,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfK" = ( +"cfa" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -63662,7 +62499,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cfL" = ( +"cfb" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 8 @@ -63679,7 +62516,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfM" = ( +"cfc" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 1 @@ -63689,7 +62526,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfN" = ( +"cfd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -63701,7 +62538,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfO" = ( +"cfe" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ d1 = 4; @@ -63714,7 +62551,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfP" = ( +"cff" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 4 @@ -63732,7 +62569,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfQ" = ( +"cfg" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -63757,7 +62594,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfR" = ( +"cfh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -63775,7 +62612,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfS" = ( +"cfi" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -63788,58 +62625,33 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cfU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cfV" = ( -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cfW" = ( +"cfj" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 }, -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 1 - }, -/obj/machinery/mineral/processing_unit_console{ - pixel_y = 32 - }, +/obj/machinery/mineral/equipment_vendor, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfX" = ( -/obj/machinery/mineral/input, -/obj/effect/floor_decal/industrial/loading{ - icon_state = "loadingarea"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, +"cfk" = ( +/obj/machinery/mineral/processing_unit, +/turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cfY" = ( -/obj/item/weapon/wrench, -/obj/item/weapon/screwdriver, -/obj/item/weapon/crowbar, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" +"cfl" = ( +/obj/machinery/door/firedoor{ + dir = 2 }, -/area/outpost/mining_main/eva) -"cfZ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cfm" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -63853,20 +62665,12 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cga" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8; - icon_state = "map" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgb" = ( +"cfn" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgc" = ( +"cfo" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -63882,7 +62686,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgd" = ( +"cfp" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1379; @@ -63900,13 +62704,13 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cge" = ( +"cfq" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgf" = ( +"cfr" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" @@ -63915,14 +62719,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgg" = ( +"cfs" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1" }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgh" = ( +"cft" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 @@ -63934,32 +62738,44 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgi" = ( +"cfu" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgj" = ( +"cfv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cfw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 }, +/obj/machinery/camera/network/mining{ + c_tag = "Mining - Production Room"; + dir = 8 + }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgk" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/ore_box, -/turf/simulated/floor/tiled, +"cfx" = ( +/obj/machinery/mineral/processing_unit_console, +/turf/simulated/wall, /area/outpost/mining_main/refinery) -"cgl" = ( -/obj/machinery/light{ - dir = 4 +"cfy" = ( +/obj/machinery/mineral/input, +/obj/machinery/conveyor{ + dir = 1; + id = "mining_internal" }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/outpost/mining_main/eva) -"cgm" = ( +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cfz" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -63977,7 +62793,7 @@ /obj/structure/sign/drop, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cgn" = ( +"cfA" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ tag_airpump = "mining_east_pump"; tag_exterior_door = "mining_east_outer"; @@ -63997,7 +62813,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgo" = ( +"cfB" = ( /obj/machinery/airlock_sensor{ frequency = 1379; id_tag = "mining_east_sensor"; @@ -64014,7 +62830,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgp" = ( +"cfC" = ( /obj/effect/floor_decal/corner/brown/full, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; @@ -64026,7 +62842,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgq" = ( +"cfD" = ( /obj/machinery/atmospherics/binary/pump/on{ dir = 8; name = "Distro to Canisters"; @@ -64038,7 +62854,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cgr" = ( +"cfE" = ( /obj/effect/floor_decal/industrial/warning/cee{ icon_state = "warningcee"; dir = 4 @@ -64048,7 +62864,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cgs" = ( +"cfF" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -64057,14 +62873,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgt" = ( +"cfG" = ( /obj/effect/floor_decal/corner/brown, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgu" = ( +"cfH" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -64081,18 +62897,46 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgv" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 1 +"cfI" = ( +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 8 }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"cgw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cfJ" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cfK" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgx" = ( +"cfL" = ( +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cfM" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cfN" = ( /obj/machinery/mech_recharger, /obj/machinery/alarm{ dir = 4; @@ -64102,22 +62946,22 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cgy" = ( +"cfO" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgz" = ( +"cfP" = ( /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgA" = ( +"cfQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgB" = ( +"cfR" = ( /obj/structure/table/standard, /obj/item/device/suit_cooling_unit/improved, /obj/item/weapon/storage/toolbox/mechanical{ @@ -64134,23 +62978,39 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgC" = ( -/obj/structure/window/reinforced{ +"cfS" = ( +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cfT" = ( +/obj/effect/floor_decal/corner/brown, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cfU" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "mining_internal"; + name = "mining conveyor" + }, +/obj/effect/floor_decal/corner/brown/full{ + icon_state = "corner_white_full"; dir = 4 }, -/obj/structure/window/reinforced{ - dir = 1 +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cfV" = ( +/obj/item/weapon/wrench, +/obj/item/weapon/screwdriver, +/obj/item/weapon/crowbar, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" }, -/obj/structure/grille, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cgE" = ( +"cfW" = ( /obj/item/weapon/cell/high{ charge = 100; maxcharge = 15000 @@ -64164,14 +63024,14 @@ icon_state = "asteroidplating" }, /area/outpost/mining_main/eva) -"cgF" = ( +"cfX" = ( /obj/machinery/cell_charger, /obj/structure/table/reinforced/steel, /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/outpost/mining_main/eva) -"cgG" = ( +"cfY" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -64188,14 +63048,14 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgH" = ( +"cfZ" = ( /obj/machinery/door/window/northleft, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgI" = ( +"cga" = ( /obj/machinery/door/window/northright, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -64203,7 +63063,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgJ" = ( +"cgb" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, /obj/item/stack/flag/purple, @@ -64219,7 +63079,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgK" = ( +"cgc" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 @@ -64227,11 +63087,22 @@ /obj/machinery/papershredder, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgL" = ( -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, +"cgd" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cgM" = ( +"cge" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 @@ -64246,34 +63117,13 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cgO" = ( -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" - }, -/area/outpost/mining_main/eva) -"cgP" = ( +"cgf" = ( /obj/machinery/mech_recharger, /turf/simulated/floor/airless{ icon_state = "asteroidplating" }, /area/outpost/mining_main/eva) -"cgQ" = ( +"cgg" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 @@ -64284,11 +63134,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgS" = ( +"cgh" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, /obj/item/stack/flag/red, @@ -64305,7 +63151,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgT" = ( +"cgi" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 @@ -64321,7 +63167,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgU" = ( +"cgj" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -64331,13 +63177,24 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgV" = ( +"cgk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgW" = ( +"cgl" = ( +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cgm" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 @@ -64352,24 +63209,19 @@ /obj/machinery/photocopier, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, +"cgn" = ( +/obj/machinery/mineral/unloading_machine, /turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"cgY" = ( +/area/outpost/mining_main/refinery) +"cgo" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "mining_internal" + }, +/obj/machinery/mineral/output, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cgp" = ( /obj/structure/dispenser/oxygen, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; @@ -64377,7 +63229,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgZ" = ( +"cgq" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, /obj/item/stack/flag/green, @@ -64389,7 +63241,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cha" = ( +"cgr" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; @@ -64404,88 +63256,37 @@ /obj/item/weapon/pen/blue, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"chb" = ( +"cgs" = ( /obj/structure/bed/chair/office/dark, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"chc" = ( +"cgt" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cgu" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"chd" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"che" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"chf" = ( -/obj/structure/ladder/up, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" - }, -/area/outpost/mining_main/eva) -"chg" = ( -/obj/structure/ladder, -/turf/simulated/open/airless, -/area/outpost/mining_main/eva) -"chh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"chi" = ( +"cgv" = ( /obj/machinery/suit_cycler/mining, /obj/effect/floor_decal/corner/brown/full, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"chj" = ( +"cgw" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"chk" = ( -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"chl" = ( +"cgx" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, /obj/item/stack/flag/yellow, @@ -64501,7 +63302,2058 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) +"cgy" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cgz" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/item/weapon/packageWrap, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cgA" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cgB" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/eva) +"cgC" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/outpost/mining_main/eva) +"cgD" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/eva) +"cgE" = ( +/turf/simulated/floor/asteroid/ash/rocky, +/area/skipjack_station/cavern) +"cgF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/vacantoffice2) +"cgG" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/investigations) +"cgH" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/investigations) +"cgI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/investigations) +"cgJ" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/investigations) +"cgK" = ( +/obj/structure/noticeboard{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"cgL" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 30; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"cgM" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/button/windowtint{ + id = "iaa"; + pixel_x = -24; + pixel_y = 0 + }, +/obj/effect/landmark/start{ + name = "Internal Affairs Agent" + }, +/turf/simulated/floor/carpet, +/area/lawoffice) +"cgN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/button/windowtint{ + id = "iaa"; + pixel_x = -24; + pixel_y = 0 + }, +/obj/effect/landmark/start{ + name = "Internal Affairs Agent" + }, +/turf/simulated/floor/carpet, +/area/lawoffice) +"cgO" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/store) +"cgP" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/store) +"cgQ" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/store) +"cgR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/store) +"cgS" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/store) +"cgT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering Hallway"; + req_one_access = null + }, +/turf/simulated/floor/tiled, +/area/engineering/foyer) +"cgU" = ( +/obj/machinery/light, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/store) +"cgV" = ( +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/machinery/button/remote/blast_door{ + id = "merch_shop"; + name = "Entrance Shutters"; + pixel_x = 28; + pixel_y = 5; + req_access = null + }, +/obj/machinery/button/remote/blast_door{ + id = "storefront"; + name = "Storefront Shutters"; + pixel_x = 28; + pixel_y = -5; + req_access = null + }, +/obj/item/device/radio/intercom{ + pixel_y = -27 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/store) +"cgW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering Hallway"; + req_one_access = null + }, +/turf/simulated/floor/tiled, +/area/engineering/foyer) +"cgX" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/door/airlock/glass_medical{ + name = "Psychiatric Ward" + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"cgY" = ( +/obj/machinery/button/remote/airlock{ + id = "main_door"; + name = "Main Exit Door Control"; + pixel_x = 0; + pixel_y = 26; + req_access = null + }, +/obj/effect/floor_decal/corner/lime{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/triage) +"cgZ" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"cha" = ( +/obj/structure/stairs/north, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/medical/medbay2) +"chb" = ( +/obj/structure/stairs/north, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"chc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall, +/area/medical/medbay2) +"chd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"che" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"chf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"chg" = ( +/obj/structure/table/standard, +/obj/machinery/reagentgrinder, +/obj/effect/floor_decal/corner/mauve{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/firealarm/west, +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Isolation Room"; + dir = 4; + icon_state = "camera"; + network = list("Medical","Isolation Room") + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"chh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall, +/area/medical/medbay2) +"chi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"chj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"chk" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"chl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall, +/area/medical/medbay2) "chm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"chn" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"cho" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/flora/pottedplant/random, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"chp" = ( +/obj/machinery/door/firedoor, +/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/corner/white/diagonal, +/obj/machinery/door/airlock/glass_medical{ + name = "Psychiatric Ward"; + req_access = list(5) + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"chq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/medical/medbay2) +"chr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/medical/medbay2) +"chs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Recovery Ward"; + req_access = list(66) + }, +/turf/simulated/floor/tiled/white, +/area/medical/em_preop) +"cht" = ( +/obj/effect/floor_decal/sign/p, +/turf/simulated/floor/tiled/white, +/area/medical/medbay2) +"chu" = ( +/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/white, +/area/medical/medbay2) +"chv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "reanimation_door"; + name = "Recovery Ward"; + req_access = list(66) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/em_preop) +"chw" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "RDTint" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "RDTint" + }, +/turf/simulated/floor/plating, +/area/rnd/rdoffice) +"chx" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/sign/nosmoking_1{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay) +"chy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Maintenance Access"; + req_access = list(5) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay) +"chz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/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/plating, +/area/maintenance/medbay) +"chA" = ( +/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 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"chB" = ( +/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/medbay) +"chC" = ( +/obj/structure/reagent_dispensers/fueltank, +/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/medbay) +"chD" = ( +/obj/structure/reagent_dispensers/watertank, +/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/medbay) +"chE" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + icon_state = "up-scrubbers"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + icon_state = "up-supply"; + dir = 8 + }, +/obj/structure/disposalpipe/up{ + icon_state = "pipe-u"; + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "12-0" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"chF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "RDTint" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "RDTint" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/window/reinforced/polarized{ + id = "RDTint" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "Psy" + }, +/turf/simulated/floor/plating, +/area/rnd/rdoffice) +"chG" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + id = "RDTint" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "RDTint" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "RDTint" + }, +/turf/simulated/floor/plating, +/area/rnd/rdoffice) +"chH" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized{ + id = "CMO" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "CMO" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/cmo) +"chI" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized{ + id = "CMO" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "CMO" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "CMO" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/cmo) +"chJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "CMO" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "CMO" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/cmo) +"chK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "CMO" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/cmo) +"chL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "CMO" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/cmo) +"chM" = ( +/obj/effect/floor_decal/corner/paleblue{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/photocopier, +/obj/machinery/keycard_auth{ + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/cmo) +"chN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + id = "CMO" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "CMO" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/cmo) +"chO" = ( +/obj/effect/floor_decal/corner/paleblue{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/structure/table/glass, +/obj/item/device/megaphone, +/obj/item/device/radio{ + frequency = 1487; + name = "Medbay Emergency Radio Link"; + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/light, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer RC"; + pixel_x = 0; + pixel_y = -30 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/cmo) +"chP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/turf/simulated/floor/tiled, +/area/maintenance/medbay) +"chQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/obj/effect/decal/cleanable/dirt, +/obj/random/loot, +/turf/simulated/floor/tiled, +/area/maintenance/medbay) +"chR" = ( +/obj/machinery/light_switch{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/machinery/button/remote/blast_door{ + id = "bar"; + name = "Bar Shutters"; + pixel_y = 36 + }, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Bar - Counter" + }, +/obj/machinery/button/windowtint{ + id = "finedining"; + pixel_x = -4; + pixel_y = 26 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"chS" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/coffeemaster/full, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"chT" = ( +/obj/structure/table/wood, +/obj/item/weapon/flame/lighter/zippo, +/obj/item/weapon/screwdriver, +/obj/item/clothing/head/that{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/book/manual/barman_recipes, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"chU" = ( +/obj/structure/window/reinforced/polarized{ + id = "finedining" + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/machinery/smartfridge/drinks, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"chV" = ( +/obj/machinery/camera/network/civilian_west{ + c_tag = "Starboard Corridor - Camera 1" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) +"chW" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 2; + icon_state = "freezer" + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Cryogenics Control Room"; + dir = 2 + }, +/turf/simulated/floor/plating, +/area/medical/cryo) +"chX" = ( +/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/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"chY" = ( +/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/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"chZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"cia" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"cib" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) +"cic" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/wall, +/area/quartermaster/office) +"cid" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall, +/area/quartermaster/office) +"cie" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall, +/area/quartermaster/office) +"cif" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"cig" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargo_toup" + }, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"cih" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargo_toup" + }, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"cii" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"cij" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"cik" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall, +/area/maintenance/substation/civilian_west) +"cil" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall, +/area/quartermaster/storage) +"cim" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargo_toup" + }, +/obj/structure/plasticflaps, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"cin" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"cio" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/aft) +"cip" = ( +/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 = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"ciq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"cir" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "cargo_crates" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"cis" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/aft) +"cit" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"ciu" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"civ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"ciw" = ( +/obj/machinery/cryopod{ + icon_state = "body_scanner_0"; + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/aft) +"cix" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/aft) +"ciy" = ( +/obj/machinery/cryopod, +/obj/item/device/radio/intercom{ + pixel_y = -26 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/aft) +"ciz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch{ + pixel_x = 32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"ciA" = ( +/obj/machinery/light_switch{ + pixel_x = 0; + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"ciB" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"ciC" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/noticeboard{ + pixel_y = 27 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"ciD" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"ciE" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"ciF" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"ciG" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/quartermaster/office) +"ciH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"ciI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"ciJ" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"ciK" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/standard, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"ciL" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"ciM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"ciN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Cargo"; + sortType = "Cargo" + }, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"ciO" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 5 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ciP" = ( +/obj/structure/track{ + icon_state = "track6" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ciQ" = ( +/obj/structure/track{ + icon_state = "track12" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ciR" = ( +/obj/structure/track{ + icon_state = "track12" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ciS" = ( +/obj/structure/track{ + icon_state = "track12" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ciT" = ( +/obj/structure/track{ + icon_state = "track12" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ciU" = ( +/obj/structure/track{ + icon_state = "track12" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ciV" = ( +/obj/structure/track{ + icon_state = "track10" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ciW" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Mining Processing Hatch"; + req_access = list(48) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"ciX" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4; + icon_state = "warning_dust" + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ciY" = ( +/obj/structure/track{ + icon_state = "track3" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ciZ" = ( +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"cja" = ( +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"cjb" = ( +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"cjc" = ( +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"cjd" = ( +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"cje" = ( +/obj/structure/track{ + icon_state = "track3" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"cjf" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/obj/structure/plasticflaps, +/obj/machinery/mineral/output, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cjg" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/obj/machinery/mineral/input, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cjh" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/obj/machinery/mineral/output, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cji" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cjj" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"cjk" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cjl" = ( +/obj/structure/track{ + icon_state = "track4" + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cjm" = ( +/obj/structure/track{ + icon_state = "track12" + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cjn" = ( +/obj/structure/track{ + icon_state = "track12" + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cjo" = ( +/obj/structure/track{ + icon_state = "track12" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4; + icon_state = "warning_dust" + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cjp" = ( +/obj/structure/track{ + icon_state = "track13" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"cjq" = ( +/obj/vehicle/train/cargo/engine/mining{ + icon_state = "mining_engine"; + dir = 2 + }, +/obj/structure/track{ + icon_state = "track12" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"cjr" = ( +/obj/vehicle/train/cargo/trolley/mining, +/obj/structure/track{ + icon_state = "track12" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"cjs" = ( +/obj/vehicle/train/cargo/trolley/mining, +/obj/structure/track{ + icon_state = "track12" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"cjt" = ( +/obj/vehicle/train/cargo/trolley/mining, +/obj/structure/track{ + icon_state = "track12" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"cju" = ( +/obj/vehicle/train/cargo/trolley/mining, +/obj/structure/track{ + icon_state = "track12" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"cjv" = ( +/obj/structure/track{ + icon_state = "track9" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"cjw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"cjx" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cjy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cjz" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"cjA" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cjB" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + icon_state = "warningcorner_dust"; + dir = 4 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cjC" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cjD" = ( +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"cjE" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/status_display/supply_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"cjF" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cjG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/eva) +"cjH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cjI" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cjJ" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"cjK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"cjL" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"cjM" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cjN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cjO" = ( +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/mineral/processing_unit_console{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cjP" = ( +/obj/machinery/mineral/input, +/obj/effect/floor_decal/industrial/loading{ + icon_state = "loadingarea"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cjQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cjR" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"cjS" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cjT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8; + icon_state = "map" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"cjU" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/ore_box, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cjV" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"cjW" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cjX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/ore_box, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cjY" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"cjZ" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cka" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"ckb" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/ore_box, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"ckc" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ckd" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cke" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/ore_box, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"ckf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"ckg" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ckh" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"cki" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ckj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"ckk" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"ckl" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ckm" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ckn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/eva) +"cko" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"ckp" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"ckq" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"ckr" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"cks" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ckt" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cku" = ( +/obj/structure/ladder/up, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"ckv" = ( +/obj/structure/ladder, +/turf/simulated/open/airless, +/area/outpost/mining_main/eva) +"ckw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/eva) +"ckx" = ( +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"cky" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; @@ -64511,16 +65363,7 @@ /obj/item/device/destTagger, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"chn" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 10 - }, -/obj/item/weapon/packageWrap, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cho" = ( +"ckz" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 10 @@ -64534,16 +65377,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"chp" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 10 - }, -/obj/item/weapon/hand_labeler, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"chq" = ( +"ckA" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; @@ -64555,7 +65389,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"chr" = ( +"ckB" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -64569,99 +65403,268 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"chs" = ( +"ckC" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ckD" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; dir = 9 }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"cht" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ +"ckE" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; dir = 1 }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"chu" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"chv" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"chw" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"chx" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"chy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"chB" = ( /turf/simulated/floor/asteroid/ash/rocky, -/area/skipjack_station/cavern) +/area/mine/unexplored) +"ckF" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + icon_state = "warningcorner_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ckG" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ckH" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"ckI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"ckJ" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ckK" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ckL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"ckM" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ckN" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ckO" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"ckP" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ckQ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"ckR" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ckS" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + icon_state = "warningcorner_dust"; + dir = 4 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ckT" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ckU" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ckV" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ckW" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ckX" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ckY" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ckZ" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cla" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"clb" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"clc" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cld" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cle" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"clf" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"clg" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"clh" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cli" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"clj" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"clk" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cll" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + icon_state = "warningcorner_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) (1,1,1) = {" aaa @@ -68623,9 +69626,9 @@ aaa aaa aaa aaa -arM +arK aaa -arM +arK aaa aaa aaa @@ -68879,11 +69882,11 @@ aaa aaa aaa aaa -aha -aha -aha -aha -aha +agZ +agZ +agZ +agZ +agZ aaa aaa aaa @@ -69135,13 +70138,13 @@ aaa aaa aaa aaa -arM -aha -auK -awp -auK -aha -arM +arK +agZ +auI +awn +auI +agZ +arK aaa aaa aaa @@ -69393,11 +70396,11 @@ aaa aaa aaa aaa -aha -auK -auK -auK -aha +agZ +auI +auI +auI +agZ aaa aaa aaa @@ -69649,13 +70652,13 @@ aab aab aab aaa -arM -aha -auK -auK -auK -aha -arM +arK +agZ +auI +auI +auI +agZ +arK aaa aaa aaa @@ -69907,11 +70910,11 @@ aab aab aab aab -atg -auL -auL -auL -azC +ate +auJ +auJ +auJ +azA aaa aaa aaa @@ -70165,9 +71168,9 @@ aaa aaa aab aab -auM -auM -auM +auK +auK +auK aab aaa aaa @@ -70423,7 +71426,7 @@ aab aab aab aab -auM +auK aab aab aaa @@ -70678,9 +71681,9 @@ aab aab aab aab -anT +anR aab -auM +auK aab aab aab @@ -70934,12 +71937,12 @@ aaa aab aab aab -anT -arM -auM -auM +anR +arK +auK +auK aab -anT +anR aab aab aab @@ -71191,13 +72194,13 @@ aab aab aab aab -anT -anT -auM -auM -auM -arM -anT +anR +anR +auK +auK +auK +arK +anR aab aab aab @@ -71445,16 +72448,16 @@ aaa aab aab aab -anT -anT -anT -anT -arM -auM -auM -auM -anT -anT +anR +anR +anR +anR +arK +auK +auK +auK +anR +anR aab aab aab @@ -71704,15 +72707,15 @@ aab aab aab aab -anT -anT -anT -auM -auM -auM -arM -anT -anT +anR +anR +anR +auK +auK +auK +arK +anR +anR aab aab aab @@ -71962,15 +72965,15 @@ aab aab aab aab -anT -arM -auM -auM -auM -anT -anT -anT -anT +anR +arK +auK +auK +auK +anR +anR +anR +anR aab aab aaa @@ -72222,13 +73225,13 @@ aab aab aab aab -auM -auM -arM -anT -anT -anT -anT +auK +auK +arK +anR +anR +anR +anR aab aab aaa @@ -72479,13 +73482,13 @@ aab aab aab aab -auM +auK aab -anT -anT -anT -anT -anT +anR +anR +anR +anR +anR aab aab aab @@ -72736,11 +73739,11 @@ aab aab aab aab -auM +auK aab aab aab -anT +anR aab aab aab @@ -72993,7 +73996,7 @@ aab aab aab aab -auM +auK aab aab aab @@ -73250,7 +74253,7 @@ aab aab aab aab -auM +auK aab aab aab @@ -73507,7 +74510,7 @@ aab aab aab aab -auM +auK aab aab aab @@ -73764,7 +74767,7 @@ aab aab aab aab -auM +auK aab aab aab @@ -74021,7 +75024,7 @@ aab aab aab aab -auM +auK aab aab aab @@ -74278,7 +75281,7 @@ aab aab aab aab -auM +auK aab aab aab @@ -74295,7 +75298,7 @@ aaa aaa aab aab -anT +anR aaa aaa aaa @@ -74535,7 +75538,7 @@ aab aab aab aab -auM +auK aab aab aab @@ -74552,7 +75555,7 @@ aaa aaa aab aab -anT +anR aaa aaa aaa @@ -74792,7 +75795,7 @@ aab aab aab aab -auM +auK aab aab aab @@ -75048,9 +76051,9 @@ aab aab aab aab -auM -auM -auM +auK +auK +auK aab aab aab @@ -75298,25 +76301,25 @@ aaa aaa aaa aaa -ala -ala -ala -ala -ala -ala -ala -ala -awq -ala -ala -ala -ala -ala -ala -ala -ala -ala -ala +akY +akY +akY +akY +akY +akY +akY +akY +awo +akY +akY +akY +akY +akY +akY +akY +akY +akY +akY aab aab aab @@ -75555,25 +76558,25 @@ aaa aaa aaa aaa -ala -amU -amU +akY +amS +amS +amT +aqq +arL +atf +auL +awp +auM +atf +aAT +aCL +aEA +aGz amV -aqs -arN -ath -auN -awr -auO -ath -aAV -aCN -aEC -aGB -amX -aKa -aLK -ala +aJY +aLI +akY aab aab aab @@ -75811,26 +76814,26 @@ aaa aaa aaa aaa -ala -ala -amU -amU -amV -amV -arN -ati -auO -aws -auO -ati -aAW -amV -aED -aGC -aIh -amV -aLL -ala +akY +akY +amS +amS +amT +amT +arL +atg +auM +awq +auM +atg +aAU +amT +aEB +aGA +aIf +amT +aLJ +akY aab aab aab @@ -76068,26 +77071,26 @@ aaa aaa aaa aaa -ala -alU -amV -amV -amV -amV -arN -atj -auP -awt -ayd -atj -aAW -ayg -apm -aqv -aIi -aKb -aLL -ala +akY +alS +amT +amT +amT +amT +arL +ath +auN +awr +ayb +ath +aAU +aye +apk +aqt +aIg +aJZ +aLJ +akY aab aab aab @@ -76320,33 +77323,33 @@ aab aaa aaa aab -aha -aha -aha -aha -aha -aha -aha -amW -amV -amV -amV -arN -atk -auQ -awu -aye -ala -aAX -aCO -aEE -aqv -aIj -aKc -aLM -ala -ala -ala +agZ +agZ +agZ +agZ +agZ +agZ +agZ +amU +amT +amT +amT +arL +ati +auO +aws +ayc +akY +aAV +aCM +aEC +aqt +aIh +aKa +aLK +akY +akY +akY aab aab aab @@ -76577,33 +77580,33 @@ aab aaa aaa aab -aha -ahN -aiB -ajo -akd -ajo -aha -amV -amV -amV -amV -arO -atl -auR -awv -ayf -azD -aAY -aCP -aED -aGD -aIh -aKd -aLN -aNE -aPk -ala +agZ +ahM +aiA +ajn +akc +ajn +agZ +amT +amT +amT +amT +arM +atj +auP +awt +ayd +azB +aAW +aCN +aEB +aGB +aIf +aKb +aLL +aNC +aPi +akY aab aab aab @@ -76834,33 +77837,33 @@ aab aab aab aab -aha -ahO -aiC -ajo -ake -alb -alV -amX -anU +agZ +ahN +aiB +ajn +akd +akZ +alT +amV +anS +aph +aqr +aqr +aqr apj +awu +aye +azC +aqr +aCO +apk aqt -aqt -aqt -apl -aww -ayg -azE -aqt -aCQ -apm -aqv -aIk -aKe -aLO -aNF -aPl -ala +aIi +aKc +aLM +aND +aPj +akY aab aab aab @@ -77091,33 +78094,33 @@ aaa aab aab aab -aha -ahP -aiD -ajp -akf -alc -alW -amY -anV +agZ +ahO +aiC +ajo +ake +ala +alU +amW +anT +api +amT +amT +amT +auQ +awv apk -amV -amV -amV -auS -awx -apm -amV -amV -anV -aEF -aGE -aIl -amV -amV -ala -ala -ala +amT +amT +anT +aED +aGC +aIj +amT +amT +akY +akY +akY aab aab aab @@ -77348,31 +78351,31 @@ aaa aaa aab aab -aha -ahO -aiE -ajo -akg -ald -alW -amZ -anW -apl -aqu -arP -atm -atm -awy -ayh -atm -atm -aCR -atm -aGF -aIm -amV -aLP -ala +agZ +ahN +aiD +ajn +akf +alb +alU +amX +anU +apj +aqs +arN +atk +atk +aww +ayf +atk +atk +aCP +atk +aGD +aIk +amT +aLN +akY aab aab aab @@ -77605,31 +78608,31 @@ aaa aaa aab aab -aha -ahQ -aiF -ajq -akh -ale -aha -ana -anX -apm -aqv -arQ -atn -auT -awz -ayi -azF -aAZ -aCS -amV -aGG -aCS -aKf -aLQ -ala +agZ +ahP +aiE +ajp +akg +alc +agZ +amY +anV +apk +aqt +arO +atl +auR +awx +ayg +azD +aAX +aCQ +amT +aGE +aCQ +aKd +aLO +akY aab aab aab @@ -77862,32 +78865,32 @@ aaa aaa aab aab -ahb -ahb -aiG -ahb -aki -ahb -aiG -anb -anb -anb -aqw -anh -ato -auU -awA -auU -azG -anh -aCT -aEG -aCT -aCT -ala -ala -ala -aKk +aha +aha +aiF +aha +akh +aha +aiF +amZ +amZ +amZ +aqu +anf +atm +auS +awy +auS +azE +anf +aCR +aEE +aCR +aCR +akY +akY +akY +aKi aab aab aab @@ -78119,32 +79122,32 @@ aaa aaa aab aaa -ahb -ahR -aiH -ajr -akj -aiH -aiH -anb -anY -apn -aqx -anh -atp -auV -awB -auV -azH -anh -aCU -aEH -aGH -aCT -aKg -aLR -aNG -aKk +aha +ahQ +aiG +ajq +aki +aiG +aiG +amZ +anW +apl +aqv +anf +atn +auT +awz +auT +azF +anf +aCS +aEF +aGF +aCR +aKe +aLP +aNE +aKi aab aab aab @@ -78376,38 +79379,38 @@ aaa aaa aab aaa -ahb -ahS -aiI -ajs -akk -aiI -ahS -anb -anZ -apo -aqy -anh -atq -auW -awC -ayj -azI -anh -aCV -aEI -aGI +aha +ahR +aiH +ajr +akj +aiH +ahR +amZ +anX +apm +aqw +anf +ato +auU +awA +ayh +azG +anf aCT -aKh -aLS -aNH -aKk +aEG +aGG +aCR +aKf +aLQ +aNF +aKi aaa aab aab aab aab -anT +anR aaa aaa aaa @@ -78633,32 +79636,32 @@ aaa aaa aab aaa -ahb -ahT -aiJ -ajt -akl -aiJ -ahT -anb -aoa -apo -aqz -anh -atr -auX -awD -ayk -azJ -anh -aCW -aEJ -aCW -aCT +aha +ahS +aiI +ajs +akk +aiI +ahS +amZ +anY +apm +aqx +anf +atp +auV +awB +ayi +azH +anf +aCU +aEH +aCU +aCR +aKg +aLP +aNG aKi -aLR -aNI -aKk aaa aab aab @@ -78890,32 +79893,32 @@ aaa aaa aab aaa -ahb -ahU -aiH -aju -akm -alf -alX -anc -aob -app -aqA -arR -ats -ats -awE -and -azK -anh -aCX -aEK -aGJ -aCT -aKj -aLT -aNH -aKk +aha +ahT +aiG +ajt +akl +ald +alV +ana +anZ +apn +aqy +arP +atq +atq +awC +anb +azI +anf +aCV +aEI +aGH +aCR +aKh +aLR +aNF +aKi aaa aaa aab @@ -79147,50 +80150,50 @@ aab aab aab aab -ahb -ahV -aiK -ajv -akn -aiK -ahV -anb -aoc -apq -aqB -anh -att -auY -awF -ayl -azL -anh -aCY -aEL -aGK -aCT -aKk -aKk -aNJ -aKk -aKk -aKk -aKk -aKk -aKk -aKk -aKk -aKk -aKk -aKk -aKk -aKk -aKk -aKk -aKk -aKk -aKk -aKk +aha +ahU +aiJ +aju +akm +aiJ +ahU +amZ +aoa +apo +aqz +anf +atr +auW +awD +ayj +azJ +anf +aCW +aEJ +aGI +aCR +aKi +aKi +aNH +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKi aaa aaa aaa @@ -79404,50 +80407,50 @@ aab aab aab aab -ahb -ahb -ahb -ahb -ako -ahb -ahb -anb -aod -anb -aqC -arS -atu -auZ -awG -aym -auZ -arS -aCZ -aEM -aCZ -aIn -aKl -aLU -aNK -aPm -aRb -aSs -aUh -aVg -aWP -aYe -aZx -aYe -aYe -aYe -aYe -aYe -bhx -bja -aKl -blA -aLV -aKk +aha +aha +aha +aha +akn +aha +aha +amZ +aob +amZ +aqA +arQ +ats +auX +awE +ayk +auX +arQ +aCX +aEK +aCX +aIl +aKj +aLS +aNI +aPk +aQZ +aSq +aUf +aVf +aWN +aYc +aZv +aYc +aYc +aYc +aYc +aYc +bhv +biY +aKj +bly +aLT +aKi aaa aaa aaa @@ -79663,48 +80666,48 @@ aab aab aab aab -aiL -ajw -akp -aiL -alY -and -and -apr -aqD -arT -atv -ava -awH -ayn -atv -aBa -atv -aEN -atv -aIo -aKm -aKm -aNL -aPn -aRc -aSt +aiK +ajv +ako +aiK +alW +anb +anb +app +aqB +arR +att +auY +awF +ayl +att +aAY +att +aEL +att +aIm aKk aKk -aWQ -aKk -aKk -aKk -aKk -aKk -aKk -aKk -aKk -bjb -aYe -aYe -bmY -aKk +aNJ +aPl +aRa +aSr +aKi +aKi +aWO +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKi +biZ +aYc +aYc +bmW +aKi aaa aab aab @@ -79920,48 +80923,48 @@ aab aab aab aab -aiL -ajx -akq -alg -alZ -alZ -aoe -alZ -aqE -arU -alZ -avb -awI -ayo -azM -aBb -aDa -aEO -aGL -aIp -aKn -aLV -aKk -aKk -aKk -aKk -aKk -aVh -aWR -aYf -aZy -aZE -bbY -bdv -beJ -bgh -aKk -aKk -aKk -aKk -bmZ -aKk +aiK +ajw +akp +ale +alX +alX +aoc +alX +aqC +arS +alX +auZ +awG +aym +azK +aAZ +aCY +aEM +aGJ +aIn +aKl +aLT +aKi +aKi +aKi +aKi +aKi +aVg +aWP +aYd +aZw +aZC +bbW +bdt +beH +bgf +aKi +aKi +aKi +aKi +bmX +aKi aaa aab aab @@ -80177,48 +81180,48 @@ aab aab aab aab -aiL -ajw -akr -aiL -ama -ama -ama -ama -ama -ama -and -avc -awF -ayp -ama -aBc -aDb -aDb -aGM -ama -ama -aKk -aKk +aiK +ajv +akq +aiK +alY +alY +alY +alY +alY +alY +anb +ava +awD +ayn +alY +aBa +aCZ +aCZ +aGK +alY +alY +aKi +aKi aaa aaa aaa -aUi -aVi -aWS -aYg -aZz -aZE +aUg +aVh +aWQ +aYe +aZx +aZC +bbX bbZ -bcb -bcb -bcb -bcb -bjc -bkf -aKk -bna -aKk +bbZ +bbZ +bbZ +bja +bkd +aKi +bmY +aKi aaa aaa aab @@ -80434,48 +81437,48 @@ aab aab aab aab -aiL -ajw -akr -aiL -amb -amb -amb -aps -aqF -ama -atw -avc -awF -ayp -azN -aBd -aDc -aEP -aGN -aIq -ama +aiK +ajv +akq +aiK +alZ +alZ +alZ +apq +aqD +alY +atu +ava +awD +ayn +azL +aBb +aDa +aEN +aGL +aIo +alY aaa -aLW -aLW -aLW +aLU +aLU +aLU aaa -aUi -aVj -aWT -aYh -aZA -baI -bca -bdw -beK -beK -bhy -bjd -bkg -aKk -bna -aKk +aUg +aVi +aWR +aYf +aZy +baG +bbY +bdu +beI +beI +bhw +bjb +bke +aKi +bmY +aKi aaa aaa aab @@ -80490,11 +81493,11 @@ aab aab aab aab -baL -baL -baL -baL -baL +baJ +baJ +baJ +baJ +baJ aab aab aab @@ -80691,48 +81694,48 @@ aab aab aab aab -aiL -ajy -akr -aiL -amc -ane -aof -apt -aqG -arV -atx -avd -awJ -ayp -azO -aBe -aBe -aBe -aBe -aIr +aiK +ajx +akq +aiK ama -aLW -aLW -aPo -aLW -aLW -aLW -aVk -aWU -aYg -aZB -aZE -bcb -bdx -beL -beL -bhz -bcb -bkh -aKk -bna -aKk +anc +aod +apr +aqE +arT +atv +avb +awH +ayn +azM +aBc +aBc +aBc +aBc +aIp +alY +aLU +aLU +aPm +aLU +aLU +aLU +aVj +aWS +aYe +aZz +aZC +bbZ +bdv +beJ +beJ +bhx +bbZ +bkf +aKi +bmY +aKi aaa aab aab @@ -80743,17 +81746,17 @@ aab aab aab aab -baL -baL -baL -baL -baL -bFX -bGZ -blA -baL -baL -baL +baJ +baJ +baJ +baJ +baJ +bFV +bGX +bly +baJ +baJ +baJ aab aab aaa @@ -80948,48 +81951,48 @@ aab aab aab aab -aiL -ajw -akr -aiL -amd -anf -aog -anf -anf -arW -aty -avc -awF -ayp -azP -aBf -aBe -aBe -aBe -aIs -ama -aLX -aNM -aPp -aRd -aSu -aLW -aVl -aWV -aYg +aiK +ajv +akq +aiK +amb +and +aoe +and +and +arU +atw +ava +awD +ayn +azN +aBd +aBc +aBc +aBc +aIq +alY +aLV +aNK +aPn +aRb +aSs +aLU +aVk +aWT +aYe +aZA aZC -aZE -bcc -bcb -bcb -bcb -bcb -bcb -bki -aKk -bna -aKk +bca +bbZ +bbZ +bbZ +bbZ +bbZ +bkg +aKi +bmY +aKi aaa aab aab @@ -81000,17 +82003,17 @@ aab aab aab aab -baL -bCd -baM -baM -baM -baM -baM -baM -baM -bJQ -baL +baJ +bCb +baK +baK +baK +baK +baK +baK +baK +bJO +baJ aab aab aaa @@ -81205,74 +82208,74 @@ aab aab aab aab -aiL -ajw -akr -aiL -ame -anf -aoh -anf -aqH -ama -atz -avc -awK -ayq -azQ -aBf -aBe -aBe -aGO -aIt -ama -aLY -aNN -aPq -aRe -aSv +aiK +ajv +akq +aiK +amc +and +aof +and +aqF +alY +atx +ava +awI +ayo +azO +aBd +aBc +aBc +aGM +aIr +alY aLW -aVm -aWW -aYg -aZD -aZE -bcd -bdy -beM -bgi -bhA -bhA -aZE -aKk -bna -aKk +aNL +aPo +aRc +aSt +aLU +aVl +aWU +aYe +aZB +aZC +bcb +bdw +beK +bgg +bhy +bhy +aZC +aKi +bmY +aKi aab aab aab -anT +anR aab aab aab aab aab aab -bBh -bdL -baL -baL -baL -baL -baL -baL -baL -bJR -baL +bBf +bdJ +baJ +baJ +baJ +baJ +baJ +baJ +baJ +bJP +baJ aab aab -anT -anT -anT +anR +anR +anR aab aaa aaa @@ -81462,48 +82465,48 @@ aab aab aab aab -aiL -ajw -akr -aiL -amf -ang -aoi -amf -aqI -ama -atA -avc -awF -ayp -azQ -aBg +aiK +ajv +akq +aiK +amd +ane +aog +amd +aqG +alY +aty +ava +awD +ayn +azO aBe -aEQ -aGP -aIu -ama -aLZ -aNN -aPr -aRf -aSw -aLW -aVn -aWX -aYi -aZE -aZE -aZE -aZE -aZE -aZE -aZE -aZE -aZE -aKk -bnb -aKk +aBc +aEO +aGN +aIs +alY +aLX +aNL +aPp +aRd +aSu +aLU +aVm +aWV +aYg +aZC +aZC +aZC +aZC +aZC +aZC +aZC +aZC +aZC +aKi +bmZ +aKi aab aab aab @@ -81511,24 +82514,24 @@ aab aab aab aab -bxQ +bxP aab aab -bBi -bdL -aKn -aKn -baL -bDW -aKn -aKn -baL -bdL -baL +bBg +bdJ +aKl +aKl +baJ +bDU +aKl +aKl +baJ +bdJ +baJ aab aab -anT -anT +anR +anR aab aab aab @@ -81719,37 +82722,37 @@ aab aab aab aab -aiL -ajw -akr -aiL -amg -ang -aoi -apu -aqI -ama -atB -ave -awL -ayr -azR -aBg -aDd -aER -aGQ -aIv -ama -aMa -aNO -aPs -aRg -aSx -aUj -aVo -aWY -aYj -aPB +aiK +ajv +akq +aiK +ame +ane +aog +aps +aqG +alY +atz +avc +awJ +ayp +azP +aBe +aDb +aEP +aGO +aIt +alY +aLY +aNM +aPq +aRe +aSv +aUh +aVn +aWW +aYh +aPz aab aab aab @@ -81758,31 +82761,31 @@ aab aab aab aab -aKk -bna -aKk +aKi +bmY +aKi aab aab aab aab aab aab -bwI -bxR -bwI +bwH +bxQ +bwH aab -bBi -bdL -baL -bdH -baL -bdH -baL -aKn -baL -bdL -baL -baL +bBg +bdJ +baJ +bdF +baJ +bdF +baJ +aKl +baJ +bdJ +baJ +baJ aab aab aab @@ -81976,75 +82979,75 @@ aab aab aab aab -aiL -aiL -aks -aiL -aiL -anh -anh -anh -anh -anh -anh -avf -awM -ays -ama -aBh -aBe -aBe -aGR -aIv -ama -aMb -aNN -aPp -aRh -aSy -aUk -aDm -aWZ -aYk -aPB +aiK +aiK +akr +aiK +aiK +anf +anf +anf +anf +anf +anf +avd +awK +ayq +alY +aBf +aBc +aBc +aGP +aIt +alY +aLZ +aNL +aPn +aRf +aSw +aUi +aDk +aWX +aYi +aPz aab -bce -bce -bce -bce -bce +bcc +bcc +bcc +bcc +bcc aab aab -aKk -bna -aKk +aKi +bmY +aKi aab aab aab aab aab aab -bwJ -bxS -bwJ +bwI +bxR +bwI aab -bBi -bdL -baL -aKn -baL -aKn -baL -baL -baL -bJS -bFX -baL +bBg +bdJ +baJ +aKl +baJ +aKl +baJ +baJ +baJ +bJQ +bFV +baJ aab aab aab -anT -anT +anR +anR aab aab aaa @@ -82233,79 +83236,79 @@ aab aab aab aab -aiL -ajw -akr -ajw -aiL -ani -ani -ani -ani -ani -anh -avg -awN -ayt -azP -aBi -aBe -aBe -aGR -aIw -ama -aMc -aNP -aPt -aRi +aiK +ajv +akq +ajv +aiK +ang +ang +ang +ang +ang +anf +ave +awL +ayr +azN +aBg +aBc +aBc +aGP +aIu +alY +aMa aNN -aUl -aVp -aWZ -aBt -aPB +aPr +aRg +aNL +aUj +aVo +aWX +aBr +aPz aab -bce -bdz -beN -bgj -bce +bcc +bdx +beL +bgh +bcc aab aab -aKk -bna -aKk -anT +aKi +bmY +aKi +anR aab aab aab aab aab -bwK -bxT -bzj +bwJ +bxS +bzh aab -bBi -bdL -baL -aKn -bdH -aKn -aKn -aKn -baL -bdL -bKQ -baL -baL -baL -baL -baL -baL -baL -baL -baL -baL +bBg +bdJ +baJ +aKl +bdF +aKl +aKl +aKl +baJ +bdJ +bKO +baJ +baJ +baJ +baJ +baJ +baJ +baJ +baJ +baJ +baJ aaa aaa aaa @@ -82490,85 +83493,85 @@ aab aab aab aab -aiL -ajx -akr +aiK ajw -aiL -ani -ani -ani -ani -ani -anh -avh -awF -ayu -azR -aBj -aDe -aES -aGS -aIx -ama -aMd -aNQ -aPu -aRj -aSz -aUm -aVq -aXa -aBt -aPB +akq +ajv +aiK +ang +ang +ang +ang +ang +anf +avf +awD +ays +azP +aBh +aDc +aEQ +aGQ +aIv +alY +aMb +aNO +aPs +aRh +aSx +aUk +aVp +aWY +aBr +aPz aab -bce -bdA -beO -beO -bce +bcc +bdy +beM +beM +bcc aab aab -aKk -bna -aKk -anT -anT -anT -anT -anT -baL -baL -bxU -baL +aKi +bmY +aKi +anR +anR +anR +anR +anR +baJ +baJ +bxT +baJ aab -bBj -bdL -baL -aKn -baL -baL -aKn -baL -baL -bdL -aKn -beV -aKn -bdH -aKn -aKn -aKn -aKn -bpI -bFX -baL -baL -baL -baL -baL -baL -baL +bBh +bdJ +baJ +aKl +baJ +baJ +aKl +baJ +baJ +bdJ +aKl +beT +aKl +bdF +aKl +aKl +aKl +aKl +bpG +bFV +baJ +baJ +baJ +baJ +baJ +baJ +baJ aab aab aab @@ -82747,85 +83750,85 @@ aab aab aab aab -aiL -ajz -akr -ajw -aiL -ani -ani -ani -ani -ani -anh -avh -awF -ayv -ama -ama -ama -aET -aGT -ama -ama -aMe -aNR -aPv -aRk -aSA -aLW -aVr -aWZ -aYl -aPB +aiK +ajy +akq +ajv +aiK +ang +ang +ang +ang +ang +anf +avf +awD +ayt +alY +alY +alY +aER +aGR +alY +alY +aMc +aNP +aPt +aRi +aSy +aLU +aVq +aWX +aYj +aPz +baH +bcc +bdz +beN +bgi +bcc +bcc +aab +aKi +bmY +aKi +anR +anR +anR +anR +anR +baJ +bwK +bxU baJ -bce -bdB -beP -bgk -bce -bce aab -aKk -bna -aKk -anT -anT -anT -anT -anT -baL -bwL -bxV -baL -aab -baL -bCe -baL -aKn -baL -bDW -aKn -aKn -baL -bdL -baL -baL -baL -baL -baL -baL -baL -aKn -aKn -bdH -aKn -aKn -aKn -aKn -aKn -aKn -baL +baJ +bCc +baJ +aKl +baJ +bDU +aKl +aKl +baJ +bdJ +baJ +baJ +baJ +baJ +baJ +baJ +baJ +aKl +aKl +bdF +aKl +aKl +aKl +aKl +aKl +aKl +baJ aaa aaa aab @@ -83004,85 +84007,85 @@ aab aab aab aab -aiM -ajw -akt -alh aiL -ani -ani -ani -ani -ani -anh -avh -awF -ayw -azS -aBk -aDf -aEU -aGU -aIy -aKo -aDm -aDm -aPw -aRl -aSB -aUn -aDm -aWZ -aBt -aZF -baJ -bcf -bdC -bdC -bdC -bhB -bce +ajv +aks +alf +aiK +ang +ang +ang +ang +ang +anf +avf +awD +ayu +azQ +aBi +aDd +aES +aGS +aIw +aKm +aDk +aDk +aPu +aRj +aSz +aUl +aDk +aWX +aBr +aZD +baH +bcd +bdA +bdA +bdA +bhz +bcc aab -aKk -bnc -aKk -baL -baL -baL -baL -baL -baL -baL -bxW -baL -baL -baL -bCf -baL -aKn -baL -baL -baL -bdH -baL -bdL -baL -anT -baL -bMX -bNE -bOg -baL -baL -baL -baL -baL -baL -baL -baL -baL -aKn -baL +aKi +bna +aKi +baJ +baJ +baJ +baJ +baJ +baJ +baJ +bxV +baJ +baJ +baJ +bCd +baJ +aKl +baJ +baJ +baJ +bdF +baJ +bdJ +baJ +anR +baJ +bMV +bNC +bOe +baJ +baJ +baJ +baJ +baJ +baJ +baJ +baJ +baJ +aKl +baJ aaa aaa aab @@ -83258,78 +84261,78 @@ aab aab aab aab -agD -ahc -ahW -aiL -aiL -aku -ali -aiL -ani -ani -ani -ani -ani -anh -avi -awO -ayx -azT -aBl -aDg -aEV -aGV -aIz -aKp -aDl -aDl -aPx -aRm -aSC -aUo -aVs -aXb -aYm -aZG -baJ -bcg -bdD -bdC -bdC -bhC +agC +ahb +ahV +aiK +aiK +akt +alg +aiK +ang +ang +ang +ang +ang +anf +avg +awM +ayv +azR +aBj +aDe +aET +aGT +aIx +aKn +aDj +aDj +aPv +aRk +aSA +aUm +aVr +aWZ +aYk +aZE +baH bce -aKk -aKk -bna -aKn -bpI -bqR -brX -blA -aLV -baL -baL -bxX -baL -bAj -bBk -bCg -baL -bDW -aKn -baL -aKn -aKn -aKn -bdL -baL -baL -baL -bMY -bNF -aKn -baL +bdB +bdA +bdA +bhA +bcc +aKi +aKi +bmY +aKl +bpG +bqP +brV +bly +aLT +baJ +baJ +bxW +baJ +bAh +bBi +bCe +baJ +bDU +aKl +baJ +aKl +aKl +aKl +bdJ +baJ +baJ +baJ +bMW +bND +aKl +baJ bPj bPp bPp @@ -83338,8 +84341,8 @@ bRB bPU bSz bPq -aKn -baL +aKl +baJ aaa aaa aaa @@ -83515,88 +84518,88 @@ aab aab aab aab -agE -ahd -ahX -aiN -ajA -akv -alj -aiL -ani -ani -ani -ani -ani -anh -avj -awP -ayy -azU -aBm -aDh -aEW -aGW -aIA -aKq -aMf -aNS -aPy -aRn -aSD -aUp -aVt -aXc -aYn -aZH +agD +ahc +ahW +aiM +ajz +aku +alh +aiK +ang +ang +ang +ang +ang +anf +avh +awN +ayw +azS +aBk +aDf +aEU +aGU +aIy +aKo +aMd +aNQ +aPw +aRl +aSB +aUn +aVs +aXa +aYl +aZF +baI +bcf +bdC +beO +bgj +bhB +bcc +bkh +blz +bnb baK -bch -bdE -beQ -bgl -bhD -bce -bkj -blB -bnd -baM -bpJ -baM -brY -bto -bto -bto -bto -baM -bto -bAk -aKn -aKn -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bdL -aKn -bLz -baL -baL -bNG -baL -baL +bpH +baK +brW +btm +btm +btm +btm +baK +btm +bAi +aKl +aKl +bCZ +bCZ +bCZ +bCZ +bCZ +bCZ +bCZ +bdJ +aKl +bLx +baJ +baJ +bNE +baJ +baJ bPk bPT -aKn -baL +aKl +baJ bRC bRD bSA -baL -aKn -baL +baJ +aKl +baJ aaa aaa aaa @@ -83772,88 +84775,88 @@ aab aab aab aab -agF -ahd -ahY -aiO -aiL -aiL -aiL -aiL -ajE -ajE -ajE -ajE -ajE -atC -atC -atC -atC -atC -aBn +agE +ahc +ahX +aiN +aiK +aiK +aiK +aiK +ajD +ajD +ajD +ajD +ajD +atA +atA +atA +atA +atA +aBl +aDg +aEV +aGV +aGW +aKp +aMe +aNR +aPx aDi -aEX -aGX -aGY -aKr -aMg -aNT -aPz -aDk -aSE -aUq -aVu -aXd -aBt -aZI +aSC +aUo +aVt +aXb +aBr +aZG +baH +bcg +bdA +bdA +bdA +bhC +bcc +beR +blA +blA +blA +bpI +bqQ +bqQ +bqQ +bqQ +bvH +bvH +bvH +bvH +bvH +bvH +bvH +bvH +bDV +bES +bFW +bGY +bIk +bIY +bJR +bgm +bLy +bMt +blz +bgm +bOf baJ -bci -bdC -bdC -bdC -bhE -bce -beT -blC -blC -blC -bpK -bqS -bqS -bqS -bqS -bvI -bvI -bvI -bvI -bvI -bvI -bvI -bvI -bDX -bEU -bFY -bHa -bIm -bJa -bJT -bgo -bLA -bMv -blB -bgo -bOh -baL bPl bPp bQs bQS bRD -aKn +aKl bSB -baL -aKn -baL +baJ +aKl +baJ aaa aaa aaa @@ -83893,7 +84896,7 @@ aaa aaa aaa aaa -cbD +cbn aaa aaa aaa @@ -84029,78 +85032,78 @@ aab aab aab aab -agF -ahe -ahZ -aiP agE -akw -alk -amh -anj -aoj -apv -aqJ -arX -atD -avk -awQ -ayz -atC -aBo -aDi -aEX -aGY -aGY -aKs -aMg -aNU -aPA -aRo -aSF -aUr -aVv -aXe -aYo -aPB +ahd +ahY +aiO +agD +akv +ali +amf +anh +aoh +apt +aqH +arV +atB +avi +awO +ayx +atA +aBm +aDg +aEV +aGW +aGW +aKq +aMe +aNS +aPy +aRm +aSD +aUp +aVu +aXc +aYm +aPz +baH +bcg +bdD +beP +bgk +bhD +bcc +bki +blA +bnc +box +bpJ +bqQ +brX +btn +bup +bvH +bwL +bxX +bzi +bAj +bBj +bCf +chF +bDW +bET +bFX +bGZ +bIl +bIZ +bIZ +bIZ +bIZ +bIZ +bIZ +bIZ +bOg baJ -bci -bdF -beR -bgm -bhF -bce -bkk -blC -bne -boz -bpL -bqS -brZ -btp -buq -bvI -bwM -bxY -bzk -bAl -bBl -bCh -bDc -bDY -bEV -bFZ -bHb -bIn -bJb -bJb -bJb -bJb -bJb -bJb -bJb -bOi -baL bPm bPU bQt @@ -84108,9 +85111,9 @@ bPp bRE bPp bPp -baL -aKn -baL +baJ +aKl +baJ aaa aaa aaa @@ -84286,78 +85289,78 @@ aab aab aab aab +agE +ahe +ahZ +aiP agF -ahf -aia -aiQ -agG -akx -all -ami -ami -ami -apw -ami -arY -atE -avl -awR -avl -azV -aBp -aDi -aEY -aGZ -aIB -aKs -aMg -aNV -aPB -aPB -aPB -aUs -aDm -aXf -aYp -aPB +akw +alj +amg +amg +amg +apu +amg +arW +atC +avj +awP +avj +azT +aBn +aDg +aEW +aGX +aIz +aKq +aMe +aNT +aPz +aPz +aPz +aUq +aDk +aXd +aYn +aPz +baH +bch +bdA +bdA +bdA +bhE +bcc +beR +blA +bnd +boy +bpK +bqQ +brY +bto +buq +bvH +bwM +bxY +bzj +bAk +bBk +bCf +bDb +bDW +bEU +bFY +bHa +bDW +bIZ +bJS +bJS +bJS +bJS +bJS +bIZ +beR baJ -bcj -bdC -bdC -bdC -bhG -bce -beT -blC -bnf -boA -bpM -bqS -bsa -btq -bur -bvI -bwN -bxZ -bzl -bAm -bBm -bCh -bDd -bDY -bEW -bGa -bHc -bDY -bJb -bJU -bJU -bJU -bJU -bJU -bJb -beT -baL bPn bPV bQu @@ -84365,9 +85368,9 @@ bQT bPU bPV bSC -baL -aKn -baL +baJ +aKl +baJ aaa aaa aaa @@ -84393,7 +85396,7 @@ aaa aaa aaa aaa -cbD +cbn aaa aaa aaa @@ -84539,92 +85542,92 @@ aaa aaa aab aab -aeU +aeV aab aab aab -agF -ahg -aia -aiR -ajB -aky -alm -amj -amj -amj -apx -aqK -arZ -atF -avm -awS -ayA -azW -aBq -aDi -aEZ -aGY -aGY -aKt -aMg -aNW -aPC -aRp -aSG -aUt -aDm -aXe -aBt -aZJ +agE +ahf +ahZ +aiQ +ajA +akx +alk +amh +amh +amh +apv +aqI +arX +atD +avk +awQ +ayy +azU +aBo +aDg +aEX +aGW +aGW +aKr +aMe +aNU +aPA +aRn +aSE +aUr +aDk +aXc +aBr +aZH +baH +bci +bdE +beQ +bgl +bhF +bcc +beR +blB +bne +blB +blB +bqQ +brZ +btp +brZ +bvH +bwN +bxZ +bzk +bAl +bBl +bBl +chG +bDX +bEV +bFZ +bHb +bIm +bIZ +bJS +bJS +bJS +bJS +bJS +bIZ +beR baJ -bck -bdG -beS -bgn -bhH -bce -beT -blD -bng -blD -blD -bqS -bsb -btr -bsb -bvI -bwO -bya -bzm -bAn -bBn -bBn -bDe -bDZ -bEX -bGb -bHd -bIo -bJb -bJU -bJU -bJU -bJU -bJU -bJb -beT -baL bPo -bxX +bxW bPU bQU bPU -bNF +bND bPp -baL -aKn -baL +baJ +aKl +baJ aaa aaa aaa @@ -84643,14 +85646,14 @@ aaa aaa aaa aaa -cbD -cca +cbn +cbI aaa aaa aab aab aab -cbE +cbo aaa aab aab @@ -84800,88 +85803,88 @@ aab aab aab aab -agF -ahh -aib -aiS -ajC -akz -aln -amk -ank -ank -apy -aqL -asa -atG -avn -awT -ayB -azX -aBl -aDj -aFa -aHa -aIC -aKu -aMh -aNU -aPD -aRq -aSH -aUu -aDm -aXe -aBt -aZK -baJ -bce -bce -bce -bce -bce -bce -beT -aKk -bnh -aKk +agE +ahg +aia +aiR +ajB +aky +all +ami +ani +ani +apw +aqJ +arY +atE +avl +awR +ayz +azV +aBj +aDh +aEY +aGY +aIA +aKs +aMf +aNS +aPB +aRo +aSF +aUs +aDk +aXc +aBr +aZI +baH +bcc +bcc +bcc +bcc +bcc +bcc +beR +aKi +bnf +aKi aab -bqS -bsc -bts -bus -bvI -bwP -byb -bzn -bAo -bBo -bCi -bvI -bEa -bEW -bGa -bHe -bIp -bJb -bJU -bJU -bJU -bJU -bJU -bJb -beT -baL +bqQ +bsa +btq +bur +bvH +bwO +bya +bzl +bAm +bBm +bCg +bvH +bDY +bEU +bFY +bHc +bIn +bIZ +bJS +bJS +bJS +bJS +bJS +bIZ +beR +baJ bPp bPp bPp bQV -aKn +aKl bPp -aKn -baL -aKn -baL +aKl +baJ +aKl +baJ aaa aaa aaa @@ -84900,7 +85903,7 @@ aaa aaa aaa aaa -cbE +cbo aab aab aab @@ -85057,98 +86060,98 @@ aab aab aab aab -agF -ahi -aic -aiT -ajD -akA -alo -aml -anl -aok -apz -aqM -asb -atH -avo -awU -ayC -azY +agE +ahh +aib +aiS +ajC +akz +alm +amj +anj +aoi +apx +aqK +arZ +atF +avm +awS +ayA +azW +aBp +aDi +aEZ +aDi +aDi +aKt +aDi +aNV +aDk +aRp +aSG +aUs +aDk +aXc aBr -aDk -aFb -aDk -aDk -aKv -aDk -aNX -aDm -aRr -aSI -aUu -aDm -aXe -aBt -aZK -aPB -aKn -aKn -bdI -bgo -bgo -bgo -beU -aKk -bnh -aKk +aZI +aPz +aKl +aKl +bdG +bgm +bgm +bgm +beS +aKi +bnf +aKi aab -bqS -bsd -btt -but -bvI -bwQ -byc -bzo -bAp -bBp -bCj -bvI -bEb -bEY -bGa -bHf -bIq -bJb -bJU -bJU -bJU -bJU -bJU -bJb -beT -baL +bqQ +bsb +btr +bus +bvH +bwP +byb +bzm +bAn +bBn +bCh +bvH +bDZ +bEW +bFY +bHd +bIo +bIZ +bJS +bJS +bJS +bJS +bJS +bIZ +beR +baJ bPq -baL -baL -baL -baL -baL -baL -baL -beV -baL -baL -baL -baL -baL -baL -baL -baL -baL -baL -baL +baJ +baJ +baJ +baJ +baJ +baJ +baJ +beT +baJ +baJ +baJ +baJ +baJ +baJ +baJ +baJ +baJ +baJ +baJ aab aaa aaa @@ -85161,7 +86164,7 @@ aaa aaa aab aab -cbE +cbo aab aaa aaa @@ -85314,98 +86317,98 @@ aab aab aab aab -agG -ahj -aid -aiU -agG -akB -alp -aml -anm -aol -apA -aqN -asc -atI -avp -awV -ayD -azZ -aBs -aDl -aFc -aHb -aDm -aKw -aMi -aNY -aPE -aRs -aSJ -aUu -aDm -aXe -aBt -aZK -aPB -aKn -bdH -beT -aKk -aKk -aKk -aZO -aZO -bni -aZO -aZO -bqS -bse -btu -buu -bvI -bwR -byd -bzp -bAq -bAq -bCk -bvI -bEc -bEZ -bGb -bHg -bIr -bJb -bJU -bJU -bJU -bJU -bJU -bJb -bOj -blB +agF +ahi +aic +aiT +agF +akA +aln +amj +ank +aoj +apy +aqL +asa +atG +avn +awT +ayB +azX +aBq +aDj +aFa +aGZ +aDk +aKu +aMg +aNW +aPC +aRq +aSH +aUs +aDk +aXc +aBr +aZI +aPz +aKl +bdF +beR +aKi +aKi +aKi +aZM +aZM +bng +aZM +aZM +bqQ +bsc +bts +but +bvH +bwQ +byc +bzn +bAo +bAo +bCi +bvH +bEa +bEX +bFZ +bHe +bIp +bIZ +bJS +bJS +bJS +bJS +bJS +bIZ +bOh +blz bPr -blB +blz bQv -aKn -aKn -aKn -aKn -aKn -aKn -aKn -aKn -aKn -aKn -bdH -aKn -aKn -aKn -aKn -aKn -baL +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +bdF +aKl +aKl +aKl +aKl +aKl +baJ aab aab aaa @@ -85460,8 +86463,8 @@ aab aab aab aab -chB -chB +cgE +cgE aab aab aab @@ -85571,117 +86574,117 @@ aab aab aab aab -agD -agD -agD -agD -agD -akC -alq -amm -ann -aom -apB -aqO -ajE -atJ -avq -awW -ayE -aAa -aBt -aDm -aDm -aHc -aID -aKx -aDm -aDm -aPF -aRt -aSH -aUv -aID -aXg -aBt -aZL -aPB -aKn -aKn -beT -aKk +agC +agC +agC +agC +agC +akB +alo +amk +anl +aok +apz +aqM +ajD +atH +avo +awU +ayC +azY +aBr +aDk +aDk +aHa +aIB +aKv +aDk +aDk +aPD +aRr +aSF +aUt +aIB +aXe +aBr +aZJ +aPz +aKl +aKl +beR +aKi aab aab -aZO -blE -bnj -boB -bpN -bqS -bsf -btv -buv -bvI -bwS -bye -bzq -bAq -bAq -bCl -bvI -bEd -bFa -bGc -bHh -bIs -bJb -bJb -bJb -bJb -bJb -bJb -bJb -aKk -aKk -aKk -aKk -beT -baL -baL -aKn -baL -baL +aZM +blC +bnh +boz +bpL +bqQ +bsd +btt +buu +bvH +bwR +byd +bzo +bAo +bAo +bCj +bvH +bEb +bEY +bGa +bHf +bIq +bIZ +bIZ +bIZ +bIZ +bIZ +bIZ +bIZ +aKi +aKi +aKi +aKi +beR +baJ +baJ +aKl +baJ +baJ bQW -aKn -baL -baL -baL -baL -baL +aKl +baJ +baJ +baJ +baJ +baJ bRI -baL -baL -aKn -baL -baL -baL +baJ +baJ +aKl +baJ +baJ +baJ aaa aaa -baL -baL -baL -baL -baL +baJ +baJ +baJ +baJ +baJ aaa aaa aaa -anT -anT -anT -anT +anR +anR +anR +anR aab aab -ceC +cjl aab aab aab @@ -85707,19 +86710,19 @@ aab aab aab aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE aab aab aab @@ -85832,113 +86835,113 @@ aab aab aab aab -ajE -akD -alr -amn -ano -aon -apA -aqP -ajE -atK -avr -awX -ayE -aAb -aBu -aDn -aFd -aHd -aIE -aKy -aMj -aNZ -aPG -aRu -aSK -aRu -aPF -aXh -aYq +ajD +akC +alp +aml +anm +aol +apy +aqN +ajD +atI +avp +awV +ayC +azZ +aBs +aDl +aFb +aHb +aIC +aKw +aMh +aNX +aPE +aRs +aSI +aRs +aPD +aXf +aYo +aZK +aPz +aKl +bdG +beS +aKi +aab +aab aZM -aPB -aKn -bdI -beU -aKk -aab -aab -aZO -blF -bnk -boC -bpN -bqS -bqS -btw -bqS -bvI -bwT -byf -bzr -bAr -bBq -bCm -bvI -bEe -bFb -bDY -bHi -bIt -bJc -bJV -bKR -bLB -bMw -bLF -bNH -bOk +blD +bni +boA +bpL +bqQ +bqQ +btu +bqQ +bvH +bwS +bye +bzp +bAp +bBo +bCk +bvH +bEc +bEZ +bDW +bHg +bIr +bJa +bJT +bKP +bLz +bMu +bLD +bNF +bOi bOS bPs -aKk -beT -baL +aKi +beR +baJ bRF bRU bSD bRH -aKn -aKn -aKn -baL +aKl +aKl +aKl +baJ bVF -aKn -aKn -aKn +aKl +aKl +aKl bSD -baL -aKn -bpI +baJ aKl -baL -baL -baL -baL -bpI -aLV -aKl -baL +bpG +aKj +baJ +baJ +baJ +baJ +bpG +aLT +aKj +baJ aaa aaa aaa -anT -anT -anT -anT -anT +anR +anR +anR +anR +anR aab -ced +cjm aab aab aab @@ -85965,18 +86968,18 @@ aab aab aab aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE aab aab aab @@ -86089,103 +87092,103 @@ aab aab aab aab -ajE -ajE -ajE -amo -ajE -aoo -apC -aoo -ajE -atL -avs -awY -ayF -ayF -aBv -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aVw -aXi -aYr -aPB -aPB -baL -bdJ -beV -aKk -aKk -aKk -aZO -blG -bnl -boD -bpO -aZO -bsg -btx -buw -bvI -bwU -byg -bzs -bzs -bzs -bCn -bvI -bEf -bDb -bEf -bHj -bEf -bJc -bJW -bKS -bLC -bLF -bLF -bNI -bOl +ajD +ajD +ajD +amm +ajD +aom +apA +aom +ajD +atJ +avq +awW +ayD +ayD +aBt +aDm +aDm +aDm +aDm +aDm +aDm +aDm +aDm +aDm +aDm +aDm +cgT +aXg +cgW +aPz +aPz +baJ +bdH +beT +aKi +aKi +aKi +aZM +blE +bnj +boB +bpM +aZM +bse +btv +buv +bvH +bwT +chw +bzq +bzq +bzq +bCl +bvH +bEd +bCZ +bEd +bHh +bEd +bJa +bJU +bKQ +bLA +bLD +bLD +bNG +bOj bOT -bOl -aKk +bOj +aKi bQw bQW bRG -aKn -aKn -aKn -aKn +aKl +aKl +aKl +aKl bUl -aKn +aKl bRI bUm -aKn -bdH -aKn -aKn -baL -aKn -bdH -aKn -aKn -aKn -aKn -aKn -aKn -aKn -aKn -baL +aKl +bdF +aKl +aKl +baJ +aKl +bdF +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +baJ aaa aaa bRJ @@ -86193,9 +87196,9 @@ bRJ bRJ bRJ bRJ -anT +anR aab -ced +cjn aab aab aab @@ -86222,18 +87225,18 @@ aab aab aab aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE aab aab aab @@ -86348,112 +87351,112 @@ aab aab aab aaa -afq -amp -ajE -aop -apD -aqQ -asd -atM -avt -awZ -ayG -aAc -aBw -aDp -aFe -aHe -aDo -aKz -aMk -aDo -aPH -aRv -aSL -aDo -aVx -aXj -aYs -aUB +afr +amn +ajD +aon +apB +aqO +asb +atK +avr +awX +ayE +aAa +aBu +aDn +aFc +aHc +aDm +aKx +aMi +aDm +aPF +aRt +aSJ +aDm +aVw +aXh +aYq +aUz aab -baL -bdK -beW -beW -beW -bje -aZO -blH -bnm -boE -bpO -aZO -bsh -bty -bsh -bvJ -bwV -byh -bsh -bAs -bsh -bsh -bDf -bEg -bFc -bGd -bHk -bIu -bJd -bJX -bKT +baJ +bdI +beU +beU +beU +bjc +aZM +blF +bnk +boC +bpM +aZM +bsf +btw +bsf +bvI +bwU +byg +bsf +bAq +bsf +bsf +bDd +bEe +bFa +bGb +bHi +bIs +bJb +bJV +bKR +bLB bLD -bLF -bLF -bNH -bOl -bOl -bOl -aKk -beT -aKn -bdH -aKn -bdH +bLD +bNF +bOj +bOj +bOj +aKi +beR +aKl +bdF +aKl +bdF bTl -aKn -bdH -aKn -baL -aKn -aKn -aKn -aKn -aKn -baL -beV -baL -baL -baL -baL -baL -baL -baL -baL -beV -baL +aKl +bdF +aKl +baJ +aKl +aKl +aKl +aKl +aKl +baJ +beT +baJ +baJ +baJ +baJ +baJ +baJ +baJ +baJ +beT +baJ bRJ bRJ bRJ -cdk -cdu -cdH +cda +cdj +cdw bRJ -cfh -cec -ceD -ceU +ciO +ciX +cjo +cjB aab aab aab @@ -86478,19 +87481,19 @@ aaa aaa aab aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE aab aab aab @@ -86605,112 +87608,112 @@ aab aab aab aab -afq -amq -ajE -aoq -ami -aqR -ase -atN -avu -axa -ayG -aAd -aBx -aDo -aFf -aHf -aDo -aKA -aFn -aDo -aFn -aFn -aFn -aDo -aVy -aXk -aYt -aUB +afr +amo +ajD +aoo +amg +aqP +asc +atL +avs +awY +ayE +aAb +aBv +aDm +aFd +aHd +aDm +aKy +aFl +aDm +aFl +aFl +aFl +aDm +aVx +aXi +aYr +aUz aab -baL -bdL -aKn -aZO -aZO -bjf -aZO -blI -bnn -blI -bpP -aZO -bsi -btz -bux -bvK -bwW -bvK -bvK -bAt -bvK -bCo -bDg -bEh -bFd -bvK -bHl -bvK -bJe -bJY -bKU -bLE -bMx -bMZ +baJ +bdJ +aKl +aZM +aZM +bjd +aZM +blG +bnl +blG +bpN +aZM +bsg +btx +buw +bvJ +bwV +bvJ +bvJ +bAr +bvJ +bCm +bDe +bEf +bFb +bvJ +bHj +bvJ bJc -bJc -bJc -bJc -aKk -beT -aKn -aKn -aKn -aKn -aKn -aKn -aKn -aKn -aKn -aKn -aKn -aKn -aKn +bJW +bKS +bLC +bMv +bMX +bJa +bJa +bJa +bJa +aKi +beR +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl bRH -baL -bdI -bYh -bYz -bYh -bYh +baJ +bdG +bYi +bYD +bYi +bYi bSI bSI bSI bSI bSI bSI -ccb +cbJ bSI -ccU +ccF bSI bSI -cdI +cdx bRJ -cee -cem -cen -ceV +ciP +ciY +cjp +cjC aab aab aab @@ -86739,19 +87742,19 @@ aab aab aab aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE aab aab aab @@ -86862,125 +87865,125 @@ aab aab aab aab -afq -amr -ajE -aor -ami -aqS -ase -atO -avu -axb -ayG -aAe -aBy -aDo -aFg -aHg -aDo -aHg -aMl -aDo -aHg -aRw -aHg -aDo -aVz -aXk -aYu -aUB +afr +amp +ajD +aop +amg +aqQ +asc +atM +avs +awZ +ayE +aAc +aBw +aDm +aFe +aHe +aDm +aHe +aMj +aDm +aHe +aRu +aHe +aDm +aVy +aXi +aYs +aUz aab -baL -bdL -beX -aZO -bhI -bjg -bkl -blJ -bno -boF -bpQ -bqT -bsh -btA -buy -bvL -bwX -bwX -bwX -bAu -bwX -bCp -bwX -bEi -bFe -bGe -bsh -bIv -bJf -bJZ -bKT -bLF -bLF -bNa -bLF -bOm +baJ +bdJ +beV +aZM +bhG +bje +bkj +blH +bnm +boD +bpO +bqR +bsf +bty +bux +bvK +bwW +bwW +bwW +bAs +bwW +bCn +bwW +bEg +bFc +bGc +bsf +bIt +bJd +bJX +bKR +bLD +bLD +bMY +bLD +bOk bOU bPt -baL -beT -aKn +baJ +beR +aKl bRH -bdH -aKn -aKn -aKn +bdF +aKl +aKl +aKl bUm -aKn -baL +aKl +baJ bRU -aKn +aKl bQW -bdH -aKn +bdF +aKl bQW bXM -bYi -bYA -bYi -bYi -bYi -bZG -bZG -bZG -bZG -bZG -bZG -bZG -bZG -bZG -bZG +bYj +bYE +bYj +bYj +bYj +bZA +bZA +bZA +bZA +bZA +bZA +bZA +bZA +bZA +bZA bVT bRJ -cef -cgO -cep -cfh -cec -cec -cec -cec -cec -cec -cec -cec -cec -cec -cec -cec -ceU +ciQ +ciZ +cjq +cem +ceB +ceB +ceB +ceB +ceB +ceB +ceB +ceB +ceB +ceB +ceB +ceB +ckS aab aaa aaa @@ -86996,19 +87999,19 @@ aab aab aab aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE aab aab aab @@ -87119,125 +88122,125 @@ aab aab aab aaa -afq -ams -ajE -aos -apE -aqT -ase -atP -avv -axc -ayG -aAf -aBz -aDo -aFh +afr +amq +ajD +aoq +apC +aqR +asc +atN +avt +axa +ayE +aAd +aBx +aDm +aFf +aHf +aID +aKz aHh -aIF -aKB -aHj -aOa -aPI -aHj -aSM -aUw -aVA -aXk -aVA -aUB +aNY +aPG +aHh +aSK +aUu +aVz +aXi +aVz +aUz aab +baJ +bdK +beW +bgn +bhH +bjf +bkk +blI +bnn +boE +bpO baL -bdM -beY -bgp -bhJ -bjh -bkm -blK -bnp -boG -bpQ -baN -bsj -btA -buy -bvM -bwY -byi -byi -byi -byi -byi -bDh -bvM -bvM -bvM -bvM -bvM -bJc -bKa -bKV -bLG -bMy -bNb -bNJ -bOn -bJc +bsh +bty +bux +bvL +bwX +byh +byh +byh +byh +byh +bDf +bvL +bvL +bvL +bvL +bvL +bJa +bJY +bKT +bLE +bMw +bMZ +bNH +bOl +bJa bPu -baL +baJ bQx -baL -baL -baL -baL -baL -baL +baJ +baJ +baJ +baJ +baJ +baJ bUn bSD -baL -baL -baL -baL -baL +baJ +baJ +baJ +baJ +baJ bWS -aKn +aKl bXM -bYi -bYB -bYT -bZl -bZE -cae -cay -caT -cbl -cbF -ccc -ccz -cbH -cbG -bZG -cdJ +bYj +bYF +bYU +bZn +cik +bZW +cam +caF +caY +cbp +cbK +cci +cbL +cbq +bZA +cdy bRJ -cef -cgO -ceE -cgO -cgO -cfu -cfG -cgO -cgO -cfu -cgO -cfi -cgO -cgO -cgl -cgO -ceV +ciR +cja +cjr +cjD +cen +cjJ +ceW +cen +cen +cka +cen +ckh +cen +cen +ckG +cen +ckT aab aaa aaa @@ -87251,22 +88254,22 @@ aaa aab aab aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE aab aab aaa @@ -87376,84 +88379,84 @@ aab aab aab aaa -afq -ams -ajE -ajE -ajE -ajE -ase -ase -ase -ase -ayG -aAg -aBA -aDo -aFi -aFl -aFl -aFl -aFl -aOb -aFl -aFl -aSN -aUx -aVA -aXk -aVA -aUB +afr +amq +ajD +ajD +ajD +ajD +asc +asc +asc +asc +ayE +aAe +aBy +aDm +aFg +aFj +aFj +aFj +aFj +aNZ +aFj +aFj +aSL +aUv +aVz +aXi +aVz +aUz aab -baL -bdM -beZ -aZO -bhK -bji -bkn -blL -bnq -blT -bpR -bqU -bsh -btA -buz -bvM -bwZ -byj -byj -byj -byj -bCq -bDi -bEj -bFf -bGf -bHm -bIw -bIw -bIw -bIw -bIw -bIw -bIw -bIw -bIw -bJc +baJ +bdK +beX +aZM +bhI +bjg +bkl +blJ +bno +blR +bpP +bqS +bsf +bty +buy +bvL +bwY +byi +byi +byi +byi +bCo +bDg +bEh +bFd +bGd +bHk +bIu +bIu +bIu +bIu +bIu +bIu +bIu +bIu +bIu +bJa bPu bPW -beT +beR bQX -baL +baJ bRV bSE bTm -baL -baL -baL -baL +baJ +baJ +baJ +baJ bRJ bVS bSI @@ -87461,40 +88464,40 @@ bSI bSI bSI bVV -bYi -bYC -bYU -bZm -bZF -caf -caz -caU -cbl -cbG -cbH -ccA -cbl -cdl -bZG +bYj +bYG +bYV +bZo +bZB +bZX +can +caG +caY +cbq +cbL +ccj +caY +cdb +bZA bVT bRJ -cef -cgO -ceE -cgO -ceH -cei -cfH -cfZ -cgm -cei -cfY -cgO -cfi -cgO -cei -cgO -ceV +ciS +cjb +cjs +cen +ceC +cdP +ceX +cfm +cfz +cdP +cfV +cen +ckm +cen +cdP +cen +ckU aab aaa aaa @@ -87506,25 +88509,25 @@ aab aaa aaa aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE aab aaa aaa @@ -87633,80 +88636,80 @@ aab aab aab aaa -afq -ams -afq -aot -apF -afq -asf -akE -akE -akE -akE -akE -aBB -aDq -aFj -aHi -aHi -aKC -aMm -aOc -aHi -aHi -aSO -aUy -aVB -aXl +afr +amq +afr +aor +apD +afr +asd +akD +akD +akD +akD +akD +aBz +aDo +aFh +aHg +aHg +aKA +aMk +aOa +aHg +aHg +aSM +aUw aVA -aUB -baL -baL -bdM -beZ -aZO -bhL -bjj -bko -blM -bnr -boH -bpS -bqV -bsh -btA -buA -bvM -bxa -byk -bzt -bzt -bzt -bzt -bDj -bEk -bFg -bGg -bHn -bIw -bJg -bKb -bKW -bLH -bMz -bNc -bNK -bOo -bIw +aXj +aVz +aUz +baJ +baJ +bdK +beX +aZM +bhJ +bjh +bkm +blK +bnp +boF +bpQ +bqT +bsf +bty +buz +bvL +bwZ +byj +bzr +bzr +bzr +bzr +bDh +bEi +bFe +bGe +bHl +bIu +bJe +bJZ +bKU +bLF +bMx +bNa +bNI +bOm +bIu bPv -baL -bOj +baJ +bOh bQY -baL +baJ bPU bSF -bNF +bND bTL bUo bUJ @@ -87722,66 +88725,66 @@ bWm bWm bWm bWm -bZG -cag -caA -caV -cbm -caW -ccd -caW -caW -caW -cdv -cdK +bZA +bZY +cao +caH +caZ +caI +ciH +caI +caI +caI +cdk +cdz bRJ -cef -cgO -ceE -cgO -ceH -cei -cfI -cga -cgn -cei +ciT +cjc +cjt +cen +ceC +cdP +ceY +cjT +cfA +cdP +cfW +cki +cen +cku +cdP +ckK +ckV +aab +aab +aaa +aaa +aaa +aab +aab +aaa +aaa +aaa +aab +aab +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE cgE -cfi -cgO -chf -cei -cfi -ceV -aab -aab -aaa -aaa -aaa -aab -aab -aaa -aaa -aaa -aab -aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB aab aaa aaa @@ -87890,82 +88893,82 @@ aab aab aab aaa -afq -amt -anp -aou -apG -afq -ahq -afq -afq -afq -afq -afq -afq -aDo -aFk -aHj -aHj -aKD -aHj -aHj -aHj -aHj -aSP -aUz -aVA -aXm -aYv -aZN -baM -baM -bdN -beZ -aZO -bhM -bji -bkp -blL -bns -boI -bpT -bqW -bsh -btB -buB -bvN -bxb -byl -bzu -bAv -bBr -bCr -bDk -bEl -bFh -bGh -bHo -bIw -bJh -bKc -bKX -bKd -bMA -bKj -bKj -bKj -bMB +afr +amr +ann +aos +apE +afr +ahp +afr +afr +afr +afr +afr +afr +aDm +aFi +aHh +aHh +aKB +aHh +aHh +aHh +aHh +aSN +aUx +aVz +aXk +aYt +aZL +baK +baK +bdL +beX +aZM +bhK +bjg +bkn +blJ +bnq +boG +bpR +bqU +bsf +btz +buA +bvM +bxa +byk +bzs +bAt +bBp +bCp +bDi +bEj +bFf +bGf +bHm +bIu +bJf +bKa +bKV +bKb +bMy +bKh +bKh +bKh +bMz bPt -baL -aKk -bOi +baJ +aKi +bOg bRI bRW bSG bSH bTM -bNF +bND bUK bVj bRJ @@ -87976,39 +88979,39 @@ bWF bWF bWF bWF -bYD +bYH bWm -bZn -bZH -cah -caB -caW -cbn -cbl -cce -cbl -cbl -cdm -bZG +cic +cil +bZZ +cap +caI +cba +caY +ciI +caY +caY +cdc +bZA bVT bRJ -ceg -cgO -ceE -cgO -ceH -cei -cfJ -cgb -cgo -cei -cgF -cgO -cgO -chg -cei -cgO -ceV +ciU +cjd +cju +cen +ceC +cdP +ceZ +cfn +cfB +cdP +cfX +cen +cen +ckv +cdP +cen +ckW aab aaa aaa @@ -88021,24 +89024,24 @@ aaa aaa aab aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE aab aaa aaa @@ -88147,77 +89150,77 @@ aab aaa aaa aaa -afq -ams -afq -aov -apH -afq -ahq -afq +afr +amq +afr +aot +apF +afr +ahp +afr aaa aaa aaa aaa aaa -aDr +aDp +aFj +aHi +aIE +aKC +aMl +aFj +aPH aFl -aHk -aIG -aKE -aMn -aFl -aPJ -aFn -aSQ -aUA -aVC -aXk -aVA -aZO -baN -baN -baN -bfa -aZO -bhN -bji -bkq -blN -bnt -boJ -bpU -bqX -bsk -btA -buC -bvM -bxc -bym -bzv -bAw -bBs -bCs -bDl -bEm -bFi -bGi -bHp -bIw -bJi -bKd -bJh -bLI -bMB -bNd -bKj -bOp -bIw -bIw -bIw -aKk -bOi +aSO +aUy +aVB +aXi +aVz +aZM baL +baL +baL +beY +aZM +bhL +bjg +bko +blL +bnr +boH +bpS +bqV +bsi +bty +buB +bvL +bxb +byl +bzt +bAu +bBq +bCq +bDj +bEk +bFg +bGg +bHn +bIu +bJg +bKb +bJf +bLG +bMz +bNb +bKh +bOn +bIu +bIu +bIu +aKi +bOg +baJ bPV bSH bTn @@ -88235,37 +89238,37 @@ bWT bWT bWF bWm -bZo -bZG -cai -caC -caX -cbo -cbo -cbo -ccB -cbl -caj -bZG +cid +bZA +caa +caq +caJ +cbb +cbb +cbb +cck +caY +ccG +bZA bVT bRJ -ceh -cem -ceG -cgO -cei -cei -cfK -cgc -cfK -cei -cei -cgP -cgO -cgO -cei -cgO -ceV +ciV +cje +cjv +cen +cdP +cdP +cfa +cfo +cfa +cdP +cdP +cgf +cen +cen +cdP +cen +ckX aab aaa aaa @@ -88278,24 +89281,24 @@ aaa aaa aab aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE aab aaa aaa @@ -88397,83 +89400,83 @@ aab aab aab aab -afq -afq -afq -afq -afq -afq -afq -afq -amu -afq -afq -afq -afq -asg -afq -afq -afq -afq -afq +afr +afr +afr +afr +afr +afr +afr +afr +ams +afr +afr +afr +afr +ase +afr +afr +afr +afr +afr aaa -aDo -aFm -aHl -aIH -aDo -aMo -aOd -aPK -aRx -aSR -aDo -aVD -aXn -aVA -aZO -baO -baO -baN -bfa -aZO -bhO -bjk -bkr -blO -bnu -boK -boK -bqY -bsl -btC -buD -bvM -bxd -bym -bzt -bzt -bBt -bCt -bDm -bzt -bFj -bCq -bHq -bIw -bJj -bKd +aDm +aFk +aHj +aIF +aDm +aMm +aOb +aPI +aRv +aSP +aDm +aVC +aXl +aVz +aZM +baM +baM +baL +beY +aZM +bhM +bji +bkp +blM +bns +boI +boI +bqW +bsj +btA +buC +bvL +bxc +byl +bzr +bzr +bBr +bCr +bDk +bzr +bFh +bCo +bHo +bIu bJh -bLJ -bIw -bNe -bNL -bOq -bIw +bKb +bJf +bLH +bIu +bNc +bNJ +bOo +bIu aaa aaa -aKk -bOi +aKi +bOg bRJ bRJ bRJ @@ -88492,37 +89495,37 @@ bWF bWF bWF bWm -bZo -bZG -caj -caD +cie +bZA +ccG +car +caK +ciz +cbL +ciJ caY -cbp -cbH -ccf -cbl -ccV -caj -bZG +ciL +ccG +bZA bVT bRJ -cei -cei -cei -cei -cei -cfv -cfL -cgd -cgp -cgx -cei -cei -cgX -chh -cei -ceF -ceV +cdP +cdP +cdP +cdP +cdP +ceM +cfb +cfp +cfC +cfN +cdP +cdP +ckn +ckw +cdP +ckL +ckY aab aaa aaa @@ -88535,24 +89538,24 @@ aab aaa aab aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE aab aaa aaa @@ -88648,88 +89651,88 @@ aaR aab aab aab -adr -adJ +ads +adK aaR aaR -afq -afq -afq -agH -ahk -aie -aiV -aiV -akE -als -amv -akE -aow +afr +afr +afr +agG +ahj +aid +aiU +aiU +akD +alq +amt +akD aou -aqU -ash -atQ -aou -axd -ayH -afq +aos +aqS +asf +atO +aos +axb +ayF +afr aaa -aDo -aFn -aFn -aFn -aDo -aMp -aFn -aFn -aFn -aFn -aDo -aVA -aXk -aVA -aZO -baP -bcl +aDm +aFl +aFl +aFl +aDm +aMn +aFl +aFl +aFl +aFl +aDm +aVz +aXi +aVz +aZM baN -bfa -aZO -baN -baN -baN -blP -bnv -baN -baN -baN -bsm -btA -buy -bvM -bxe -byn -bzw -bAx -bBu -bCu -bDn -bEn -bFk -bGj -bHr -bIw -bJk -bKe -bKY -bLK -bIw -bIw -bIw -bIw -bIw -bIw -bIw -bIw +bcj +baL +beY +aZM +baL +baL +baL +blN +bnt +baL +baL +baL +bsk +bty +bux +bvL +bxd +bym +bzu +bAv +bBs +bCs +bDl +bEl +bFi +bGh +bHp +bIu +bJi +bKc +bKW +bLI +bIu +bIu +bIu +bIu +bIu +bIu +bIu +bIu bQZ bRK bRX @@ -88746,40 +89749,40 @@ bWF bWU bWF bWF -bYj +bYk bWF bWm -bZp -bZG -bZG -caE -bZG -bZG -cbI -cbI -ccC -cbI -cbI -bZG -cdL +cif +bZA +bZA +cas +bZA +bZA +cab +cab +ciK +cab +cab +bZA +cdA +cdG +cdP cdS -cei -ceq -ceI -ceW -cfj -cfw -cfM -cge -cgq -cgy -cgG -cgQ -cgY -chi -cht -cfi -ceV +cdZ +cjE +ceE +ceN +cfc +cfq +cfD +cfO +cfY +cgg +cgp +cgv +cgB +ckM +ckZ aab aab aaa @@ -88792,24 +89795,24 @@ aab aaa aab aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE aab aaa aaa @@ -88909,83 +89912,83 @@ acD aaS acF acF -afr -afJ +afs +afK agj -agI -ahl -afq -afq -afq -afq -afq -amw -anq -aox -apI -aqV -asi -atR -atR -axe -ayI -afq -afq -aDo -aFo -aHm -aII -aDo -aMq -aFl -aPL -aRy -aSS -aDo -aVE -aXk -aVA -aZO -baQ -bcm -baN -bfa -aZO -bhP -bjl -bhP -blQ -bnw -boL -bpV -baN -bsn -btD -buE -bvO -bvO -bvO -bvO -bvO -bvO -bvO -bvO -bvO -bFl -bFl -bFl -bFl -bJl -bKf -bKZ -bLL -bIw -bNf -bIw -bOr -bOr -bOr -bOr +agH +ahk +afr +afr +afr +afr +afr +amu +ano +aov +apG +aqT +asg +atP +atP +axc +ayG +afr +afr +aDm +aFm +aHk +aIG +aDm +aMo +aFj +aPJ +aRw +aSQ +aDm +aVD +aXi +aVz +aZM +baO +bck +baL +beY +aZM +bhN +bjj +bhN +blO +bnu +boJ +bpT +baL +bsl +btB +buD +bvN +bvN +bvN +bvN +bvN +bvN +bvN +bvN +bvN +bFj +bFj +bFj +bFj +bJj +bKd +bKX +bLJ +bIu +bNd +bIu +bOp +bOp +bOp +bOp bQy bRa bRL @@ -89006,37 +90009,37 @@ bWF bWF bWF bWm -bZq +cig bWm -cak -bYI -caZ +cac +cat +caL bWm -bZG -bZG -bZG -bZG -bZG -bZG +bZA +bZA +bZA +bZA +bZA +bZA +cdw cdH +cdP cdT -cei -cer -ceJ -ceX -cfk -ceX -cfN -cge -cgr -cgz -cgH -cgz -cgz -chj -chu -cfi -ceV +cjw +cea +ceF +cea +cfd +cfq +cfE +cfP +cfZ +cfP +cfP +cgw +cgC +ckN +cla aab aab aaa @@ -89048,25 +90051,25 @@ aab aab aab aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE aab aaa aaa @@ -89162,89 +90165,89 @@ acb aaS acE acD -ads -ads -aeo -aeV -afr -afJ +adt +adt +aep +aeW +afs +afK agk -agJ -ahl -afq +agI +ahk +afr aab -ajF -ajF -ajF -ajF -ajF -ajF -ajF -ajF -ajF -ajF -ajF -axf -ayJ -aAh -afq -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aVF -aXk -aYw -aZO -baR -bcn -baN -bfa -aZO -bhQ -bjm -bks -blR -bnx -bji -bpV -baN -bso -btA -buy -bvO -bxf -byo -bzx -bAy -bBv -bCv -bDo -bEo -bFm -bGk -bHs -bFl -bJm -bKg -bLa -bLM -bMC -bMC -bMC -bOs -bOs +ajE +ajE +ajE +ajE +ajE +ajE +ajE +ajE +ajE +ajE +ajE +axd +ayH +aAf +afr +aDm +aDm +aDm +aDm +aDm +aDm +aDm +aDm +aDm +aDm +aDm +aVE +aXi +aYu +aZM +baP +bcl +baL +beY +aZM +bhO +bjk +bkq +blP +bnv +bjg +bpT +baL +bsm +bty +bux +bvN +bxe +byn +bzv +bAw +bBt +bCt +bDm +bEm +bFk +bGi +bHq +bFj +bJk +bKe +bKY +bLK +bMA +bMA +bMA +bOq +bOq bPw -bOr +bOp bQz -bdL +bdJ bRL bRZ bSJ @@ -89263,37 +90266,37 @@ bWF bWF bWF bWm -bZq -bZI -cal +cih +cim +cad bXT -cba +caM bWm -cbJ -ccg -ccg -ccg -ccg -cdw -cdM +cbs +cbM +cbM +cbM +cbM +cdl +ciM +ciN +cdP cdU -cei -ces -ceK -ceY -cfl -cfx -cfO -cgf -cgs -cgA -cgI -cgR -cgR -chk -chu -cgO -ceV +ceb +ceq +ceG +cjK +cfe +cfr +cfF +cfQ +cga +ckj +cko +ckx +cgC +cen +clb aab aaa aaa @@ -89307,22 +90310,22 @@ aab aab aab aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE aab aab aaa @@ -89420,88 +90423,88 @@ aab acF acF aab +adL adK -adJ -adJ -afq -afq -afq -afq -ahm -afq +adK +afr +afr +afr +afr +ahl +afr aab -ajF -ajF -ajF -ajF -ajF -ajF -ajF -ajF -ajF -ajF -ajF -axg -ayK -aAi -atR -atR -atR -atR -atR -aKF -aKF -aKF -aKF -aKF -aST -aUB -aVA -aXo -aYx -aZO -baS -baN -baN -bfb -aZO -bhP -bjl -bhP -blR -bnx -boM -bpW -baN -bsp -btE -buF -bvP -bxg -byp -bzy -bAz -bBw -bCw -bDp -bEp -bFn -bGl -bHt -bIx -bJn -bKh -bLb -bLN -bMD -bNg -bNM -bOt -bOr +ajE +ajE +ajE +ajE +ajE +ajE +ajE +ajE +ajE +ajE +ajE +axe +ayI +aAg +atP +atP +atP +atP +atP +aKD +aKD +aKD +aKD +aKD +aSR +aUz +aVz +aXm +aYv +aZM +baQ +baL +baL +beZ +aZM +bhN +bjj +bhN +blP +bnv +boK +bpU +baL +bsn +btC +buE +bvO +bxf +byo +bzw +bAx +bBu +bCu +bDn +bEn +bFl +bGj +bHr +bIv +bJl +bKf +bKZ +bLL +bMB +bNe +bNK bOr +bOp +bOp bPX bQz -bdL +bdJ bRL bSa bSK @@ -89522,35 +90525,35 @@ bWm bWm bWm bWm -cam -bYG -cbb +cae +cau +caN bWm -cbK +cbt bWm bWm bWm bWm bWm bWm -cdT -cei -cet -ceL -ceZ -cfm -cfy -cfP -cgg -cgt -cgB -cgJ -cgS -cgZ -chl -chv -cgO -ceV +cdH +cdP +cdV +cec +cer +ceH +ceO +cff +cfs +cfG +cfR +cgb +cgh +cgq +cgx +cgD +cen +clc aab aaa aaa @@ -89566,19 +90569,19 @@ aab aab aab aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE aab aab aab @@ -89683,82 +90686,82 @@ aab aab aab aaa -afq -ahn -afq +afr +ahm +afr aab -ajF -ajF -alt -amx -anr -aoy -apJ -aqW -aqW -aqW -ajF -axh -axh -axh -axh +ajE +ajE +alr +amv +anp +aow +apH +aqU +aqU +aqU +ajE +axf +axf +axf +axf aaV abE -aHn -aHn -aHn -aHn -aHn -aHn -aHn -aSU -aUB -aVA -aXk -aVA -aZO -baT -bco -bdO -bfc -bgq -bhR -bjn -bkt -blS -bny -boN -bpX -aZO -bsq -btF -bsq -bvO -bxh -byq -bzz -bAA -bBx -bCx -bDq -bEq -bFo -bGm -bHu -bIy -bJo -bKi -bLc -bLO -bMC -bMC -bMC -bOs -bOs +aHl +aHl +aHl +aHl +aHl +aHl +aHl +aSS +aUz +aVz +aXi +aVz +aZM +baR +bcm +bdM +bfa +bgo +bhP +bjl +bkr +blQ +bnw +boL +bpV +aZM +bso +btD +bso +bvN +bxg +byp +bzx +bAy +bBv +bCv +bDo +bEo +bFm +bGk +bHs +bIw +bJm +bKg +bLa +bLM +bMA +bMA +bMA +bOq +bOq bPx -bOr +bOp bQz -bdL +bdJ bRM bSb bSL @@ -89775,39 +90778,39 @@ bWV bXn bXn bXn -bYE -bYV -bZr +bYI +bYW +bZp bWm bWm -caF +cav bWm bWm -cbL +cbu bWm -ccD -ccW -cdn -cdx +ccm +ccH +cdd +cdm bWm -cdV -cei -cei -cei -cei -cfn -cfz -cfQ -cei -cgu -cgC -cfz -cei -cgC -cfz -cei -ceF -ceV +cdI +cdP +cdP +cdP +cdP +cjG +ceP +cfg +cdP +cfH +ced +ceP +cdP +ced +ceP +cdP +ckO +cld aab aaa aaa @@ -89823,19 +90826,19 @@ aab aab aab aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE aab aab aab @@ -89940,82 +90943,82 @@ aab aab aab aaa -afq -aho -afq +afr +ahn +afr aab -ajF -ajF -alu -amx -ans -aoz -apK -aqW -aqW -aqW -ajF -axi -ayL -aAj -aBC -aDs -aFp -aHo -aIJ -aKG -aMr -aOe -aPM -aHn -aSV -aUC -aVG -aXp -aYy -aZO -baU -bcp -bdP -bfd -bgr -bhS -bjo -bku -blT -bji -boO -bpY -aZO -bsr -btG -buG -bvO -bxi -byr -bzA -bAB -bBy -bCy -bDr -bEr -bFp -bGn -bHv -bFl -bJp -bKj -bKj -bLP -bIw -bNh -bIw -bOr -bOr -bOr -bOr +ajE +ajE +als +amv +anq +aox +apI +aqU +aqU +aqU +ajE +axg +ayJ +aAh +aBA +aDq +aFn +aHm +aIH +aKE +aMp +aOc +aPK +aHl +aST +aUA +aVF +aXn +aYw +aZM +baS +bcn +bdN +bfb +bgp +bhQ +bjm +bks +blR +bjg +boM +bpW +aZM +bsp +btE +buF +bvN +bxh +byq +bzy +bAz +bBw +bCw +bDp +bEp +bFn +bGl +bHt +bFj +bJn +bKh +bKh +bLN +bIu +bNf +bIu +bOp +bOp +bOp +bOp bQA -bdL +bdJ bRL bSc bSM @@ -90034,37 +91037,37 @@ bWW bWW bWW bWW -bZs -bZJ -can -caG +cii +bZC +caf +caw bWm -cbq -cbM -cch -ccE -ccE -cdo -cdy +ciA +cbv +cbN +ccn +ccn +ccI +cdn bWm +cdJ +cdQ cdW -cej -ceu -ceM -cfa -cfo -cfA -cfR -cgh -cfA -cfA -cgK -cgT -cha -chm -chw -cgO -ceV +cee +cet +ceI +ceQ +cfh +cft +ceQ +ceQ +cgc +cgi +cgr +cky +cgy +cen +cle aab aaa aaa @@ -90076,19 +91079,19 @@ aaa aaa aab aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE aab aab aab @@ -90197,81 +91200,81 @@ aab aab aab aab -agK -ahp -agK +agJ +aho +agJ aab -ajF -ajF -alv -amx -amx -amx -apK -amx -amx -atS -ajF -axj -ayM -aAk -aBD -aDt -aFq -aHp -aIK -aKH -aMs -aKH -aPN +ajE +ajE +alt +amv +amv +amv +apI +amv +amv +atQ +ajE +axh +ayK +aAi +aBB +aDr +aFo aHn -amt -aUB -aVH -aXq -aVH -aZO -baV -bcq -bdQ -bcq -bgs -bhT -bjp -bkv -blT -bji -boP -bpZ -aZO -bss -btG -buH -bvO -bxj -bys -bzB -bAC -bBz -bCz -bDs -bEs -bFq -bGo -bHw -bFl -bJq -bKj -bKj -bLQ -bIw -bIw -bIw -bIw -bIw -bIw -bIw -bIw +aII +aKF +aMq +aKF +aPL +aHl +amr +aUz +aVG +aXo +aVG +aZM +baT +bco +bdO +bco +bgq +bhR +bjn +bkt +blR +bjg +boN +bpX +aZM +bsq +btE +buG +bvN +bxi +byr +bzz +bAA +bBx +bCx +bDq +bEq +bFo +bGm +bHu +bFj +bJo +bKh +bKh +bLO +bIu +bIu +bIu +bIu +bIu +bIu +bIu +bIu bRb bRL bSd @@ -90289,39 +91292,39 @@ bWX bXo bXo bXo -bYF -bYn -bYn -bZK -cao -caH +bYJ +bYr +bYr +bZD +cip +cax cbc -cbr -cbN -cci -ccF -ccX -cdp -cdz -cdN +ciB +cbw +cbO +cco +ccJ +cde +cdo +cdB +cdK +cdR cdX -cek -cev -ceN -cfb -cfp -cfB -cfS -cgi -cgi -cgi -cgi -cgU -chb -chn -chx -cgO -ceV +cef +ceu +cjH +ceJ +cfi +cfu +cfu +cfu +cfu +cgj +cgs +cgz +ckH +cen +clf aab aab aaa @@ -90334,18 +91337,18 @@ aaa aaa aab aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE aab aab aab @@ -90454,82 +91457,82 @@ aaa aab aab aab -agL -ahn -agL +agK +ahm +agK aab -ajF -ajF -alw -amx -ant -aoA -apL -aqX -asj -atT -avw -axk -ayN -aAl -aBE -aDu -aFr -aHq -aIK -aKI -aMt -aOf -aPO -aHn -amt -aUB -aVI -aXr -aVI -aZO -baW -bcr -bdR -bfe -bgt -bhU -bjq -aZO -blU -bnz -aZO -aZO -aZO -bst -bsh -buI -bvO -bxk -byt -bzC -bzC -bzC -bzC -bDt -bvO -bFr -bGp -bHx -bFl -bJr -bKk -bLd -bLR -bIw -bNi -bto -baM +ajE +ajE +alu +amv +anr +aoy +apJ +aqV +ash +atR +avu +axi +ayL +aAj +aBC +aDs +aFp +aHo +aII +aKG +aMr +aOd +aPM +aHl +amr +aUz +aVH +aXp +aVH +aZM +baU +bcp +bdP +bfc +bgr +bhS +bjo +aZM +blS +bnx +aZM +aZM +aZM +bsr +bsf +buH +bvN +bxj +bys +bzA +bzA +bzA +bzA +bDr +bvN +bFp +bGn +bHv +bFj +bJp +bKi +bLb +bLP +bIu +bNg +btm +baK bOV -baM -baM -bto -bAk +baK +baK +btm +bAi bRL bSe bSO @@ -90545,40 +91548,40 @@ bWm bWY bXp bXN -bYk +bYo bXT bXp bXp -bZL -cap -caI +cin +ciq +cit bWm -cbs -cbO -cbO -cbO -cbO -ccE -cdA +ciC +cbx +cbx +cbx +cbx +ccn +cdp bWm +cdL +cdQ cdY -cej -cew -ceO -cfc -cfq -cfC -cfT -cfC -cfC -cfC -cfC -cgV -cfC -cho -cej -cfi -ceV +cjx +cev +ceK +ceS +cfv +ceS +ceS +ceS +ceS +cgk +ceS +ckz +cdQ +ckP +clg aab aab aaa @@ -90591,18 +91594,18 @@ aaa aaa aab aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE aab aab aab @@ -90711,82 +91714,82 @@ aaa aab aab aab -agM -ahl -agM +agL +ahk +agL aab -ajF -ajF -ajF -ajF -ajF -aoB -apM -ajF -ajF -ajF -ajF -ajF -ajF -ajF -ajF -aDv -aFs -aHr -aIL -aKJ -aMu -aOg -aPP -aHn -aSW -aUD -aVJ -aXs -aVJ -aZO -aZO -bcs -bdS -bff -aZO -bhV -aYz -bkw -blV -bnA -boQ -bqa -aZO -bsq -btH -bsq -bvO -bxl -aYz -bct -aYz -bct -aYz -bDu -bvO -bFl -bFl -bFl -bFl -bIw -bIw -bIw -bIw -bIw -bdL -aLV -bMF -bMF -bMF -bMF +ajE +ajE +ajE +ajE +ajE +aoz +apK +ajE +ajE +ajE +ajE +ajE +ajE +ajE +ajE +aDt +aFq +aHp +aIJ +aKH +aMs +aOe +aPN +aHl +aSU +aUB +aVI +aXq +aVI +aZM +aZM +bcq +bdQ +bfd +aZM +bhT +aYx +bku +blT +bny +boO +bpY +aZM +bso +btF +bso +bvN +bxk +aYx +bcr +aYx +bcr +aYx +bDs +bvN +bFj +bFj +bFj +bFj +bIu +bIu +bIu +bIu +bIu +bdJ +aLT +bMD +bMD +bMD +bMD bQB -bMF +bMD bRL bSf bSP @@ -90802,40 +91805,40 @@ bWm bWZ bXq bXO -bYl -bYG -bYW -bZt -bZM -caq -caJ +bYp +chX +bYX +bZq +bZE +cag +ciu cbd -cbt -cbP -ccj -cck -ccY -ccE -cdB +ciD +cby +cbQ +cbR +ccL +ccn +cdq bWm -cdZ -cej -cex -ceP -cfd -cfq -cfC -cfU -cfC -cgw -cfC -cfC -cfC -chc -chp -chw -cgO -ceV +cdM +cdQ +cjf +ceh +cfj +ceK +ceS +cjN +ceS +cfK +ceS +ceS +ceS +cgu +cgA +cgy +cen +clh aab aab aab @@ -90847,19 +91850,19 @@ aaa aaa aaa aab -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB -chB +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE +cgE aab aab aab @@ -90968,77 +91971,77 @@ aab aab aab aab -afq -ahl -afq +afr +ahk +afr aab -ajF -ajF -alx -amy -anu -aoC -apN -aqY -ask -atU -avx -axl -ayO -aAm -ajF -atZ -aFt -aHs -aIM -aKK -aMv -aMw -aPQ -aHn -aSW -aUD -aVK -aXt -aYz -aZP -baX -bct -aYz -bct -bgu -bbc -aYz -aYz -aYz -aYz -aYz -aYz -baX -bsu -bct -buJ -bjt -aYz -aYz -aYz -aYz -bbc -aYz -aYz -bEt -aZP -bGq -bHy -baY -bJs -baM -baM -baM -bME -bCg -blA -bMF +ajE +ajE +alv +amw +ans +aoA +apL +aqW +asi +atS +avv +axj +ayM +aAk +ajE +atX +aFr +aHq +aIK +aKI +aMt +aMu +aPO +aHl +aSU +aUB +aVJ +aXr +aYx +aZN +baV +bcr +aYx +bcr +bgs +bba +aYx +aYx +aYx +aYx +aYx +aYx +baV +bss +bcr +buI +bjr +aYx +aYx +aYx +aYx +bba +aYx +aYx +bEr +aZN +bGo +bHw +baW +bJq +baK +baK +baK +bMC +bCe +bly +bMD bOW bPy bPY @@ -91059,40 +92062,40 @@ bWm bWm bXr bXP -bYm -bYH +bYq +bYK bXP -bZu +cij bWm -car -caJ +cir +civ cbe -cbt -cbP -cck -ccG -ccY -ccE -cdC +ciE +cby +cbR +ccq +ccL +ccn +cdr bWm -cea -cej -cey -ceQ -cfe -cfr -cfD -cfV -cfC -cfC -cfC -cgL -cgW -chd -chq -chy -cgO -ceV +cdN +cdQ +cei +cjy +cex +ceL +ceT +ceg +ceS +ceS +ceS +cfT +cgm +ckp +ckA +ckI +cen +cli aab aab aab @@ -91114,8 +92117,8 @@ aab aab aab aab -chB -chB +cgE +cgE aab aab aab @@ -91225,77 +92228,77 @@ aab aab aab aab -afq -ahn -afq +afr +ahm +afr aab -ajF -ajF -aly -amx -anv -aoD -apO -aqZ -asl -amx -amx -amx -amx -amx -aBF -aDt -aFt -aHt -aIN -aKL -aMw -aMw -aPR -aHn -amt -aUD -aVL -aXu -aYA -aZQ -baY -bcu -baY -baY -bgv -bhW -baY -baY -bgv -baY -baY -baY -baY -baY -baY -baY -baY -bcu -baY -baY -baY -bBA -baY -baY -baY -bFs -baY -bHz -bIz -bJt -bJt -bJt -bJt -bMF -bMF -bMF -bMF +ajE +ajE +alw +amv +ant +aoB +apM +aqX +asj +amv +amv +amv +amv +amv +aBD +aDr +aFr +aHr +aIL +aKJ +aMu +aMu +aPP +aHl +amr +aUB +aVK +aXs +aYy +aZO +baW +bcs +baW +baW +bgt +bhU +baW +baW +bgt +baW +baW +baW +baW +baW +baW +baW +baW +bcs +baW +baW +baW +bBy +baW +baW +baW +bFq +baW +bHx +bIx +bJr +bJr +bJr +bJr +bMD +bMD +bMD +bMD bOX bPz bPZ @@ -91317,39 +92320,39 @@ bXa bXs bXQ bXQ -bYI -bYX -bZv -bZN -cas -caJ +chY +cia +bZr +bZG +cah +cay cbf -cbu -cbQ -cck -ccH -ccY -cdq -cdD +ciF +ciG +cbR +ccr +ccL +cdf +cds bWm -cea +cdN +cdQ +cjg cej cez -ceR -cff -cfs -cej -cfW -cgj -cgj -cgj -cgM -cej -che -chr -cej -ceF -ceV +cfl +cdQ +cjO +cfL +cfL +cfL +cge +cdQ +ckq +ckB +cdQ +ckQ +clj aab aab aaa @@ -91482,77 +92485,77 @@ aab aab aab aab -afq -ahn -afq +afr +ahm +afr aab -ajF -ajF -alz -amx -amx -amx -apK -ara -asl -atV -amx -amx -amx -amx -aBG -aDw -aFu -aHu -aIO -aKM -aMx -aOh -aPS -aHn -amt -aUD -aVM -aXt -aYz -aZR -aYz -bcv -bdT -bfg -aYz -bhX -aYz -bfg -bdT -bfg -aYz -bqb -aYz -aYz -btI -aYz -bdT -bxm -aYz -aYz -aYz -blW -bdT -aYz -aYz -aVJ -aYz -bHA -bIA -bJt -bKl -bLe -bLS -bMF -bNj -bNN -bOu +ajE +ajE +alx +amv +amv +amv +apI +aqY +asj +atT +amv +amv +amv +amv +aBE +aDu +aFs +aHs +aIM +aKK +aMv +aOf +aPQ +aHl +amr +aUB +aVL +aXr +aYx +aZP +aYx +bct +bdR +bfe +aYx +bhV +aYx +bfe +bdR +bfe +aYx +bpZ +aYx +aYx +btG +aYx +bdR +bxl +aYx +aYx +aYx +blU +bdR +aYx +aYx +aVI +aYx +bHy +bIy +bJr +bKj +bLc +bLQ +bMD +bNh +bNL +bOs bOY bPA bOY @@ -91573,40 +92576,40 @@ bWm bXb bXp bXR -bYn -bYJ -bYY +bYr +bYL +bYZ bWm bWm bXQ bXQ bWm -cbv +cbS bWm -cbv +cbS bWm -cbv +cbS bWm -cbv +cbS bWm -cea -cel -ceA -ceS -cfg -cft -cfE -cfX -cgk -cgk -cgk -cgk -cej -cfi -cfi -cgO -cgO -ceV +cdN +ciW +cjh +cfk +cfy +cey +cgn +cjP +cjU +cjX +ckb +cke +cdQ +ckr +ckC +cen +cen +clk aab aaa aaa @@ -91739,77 +92742,77 @@ aab aab aab aab -afq -ahq -afq +afr +ahp +afr aab -ajF -ajF -aly -amx -amx -amx -apP -arb -asm -atW -avy -amx -amx -amx -aBG -aDt -aFt -aHv -aHv -aHv -aHv -aHv -aHv -aHv -aSX -aHv -aVN -aXt -aYB -aUD -baZ -bcw -bdU -bfh -bgw -aUD -bgw -bcw -bdU -bfh -baZ -aUD -bqZ -bsv -aZS -buK -bvQ -aZS -buK -bzD -bvQ -aZS -buK -bzD -bvQ -aZS -bGr -bHB -bIB -bJu -bKm -bLf -bLT -bMF -bNk -bNN -bOv +ajE +ajE +alw +amv +amv +amv +apN +aqZ +ask +atU +avw +amv +amv +amv +aBE +aDr +aFr +aHt +aHt +aHt +aHt +aHt +aHt +aHt +aSV +aHt +aVM +aXr +aYz +aUB +baX +bcu +bdS +bff +bgu +aUB +bgu +bcu +bdS +bff +baX +aUB +bqX +bst +aZQ +buJ +bvP +aZQ +buJ +bzB +bvP +aZQ +buJ +bzB +bvP +aZQ +bGp +bHz +bIz +bJs +bKk +bLd +bLR +bMD +bNi +bNL +bOt bOZ bPB bQa @@ -91830,40 +92833,40 @@ bWm bXc bXt bXS -bYk +bYo bXp -bYZ +bZa bWm bWm bWm bWm bWm -cbw +cbg bQO -ccl -ccI -ccZ -bMN -bMN -bMN -ceb -cej -ceB -ceT -cff -cfs -cej -ceB -ceT -ceT -ceT -cgN -cej -cfi -chs -cfF -cfF -cgv +cbT +ccs +ccN +bML +bML +bML +cdO +cdQ +cji +cel +cez +cfl +cdQ +cjQ +cel +cel +cel +ckf +cdQ +cks +ckD +ckJ +ckR +cll aab aaa aaa @@ -91996,77 +92999,77 @@ aaa aab aab aab -afq -ahn -afq +afr +ahm +afr aab -ajF -ajF -alA -amz -anw -aoE -ant -arc -asn -atX -avz -axm -avz -avz -ajF -aDx -aFv -aHv -aIP -aKN -aMy -aOi -aPT -aRz -aSY -aHv -aVO -aXt -aYz -aUD -bba -bcx -bcx -bcx -bgx -bhY -bjr -bcx -bcx -bcx -boR -aUD -aYz -aYz -btJ -buL -buL -buL -buL -buL -buL -buL -buL -buL -buL -btJ -aYz -bHC -bIC -bJt -bKn -bLg +ajE +ajE +aly +amx +anu +aoC +anr +ara +asl +atV +avx +axk +avx +avx +ajE +aDv +aFt +aHt +aIN +aKL +aMw +aOg +aPR +aRx +aSW +aHt +aVN +aXr +aYx +aUB +baY +bcv +bcv +bcv +bgv +bhW +bjp +bcv +bcv +bcv +boP +aUB +aYx +aYx +btH +buK +buK +buK +buK +buK +buK +buK +buK +buK +buK +btH +aYx +bHA +bIA +bJr bKl -bMF -bNl -bNN -bOw +bLe +bKj +bMD +bNj +bNL +bOu bPa bPC bQb @@ -92088,36 +93091,36 @@ bXd bXu bXT bXp -bYK -bZa +bYM +bZb bWm -bZO -bZO -bZO +bZH +bZH +bZH bPH -cbx -cbR -ccm -ccJ -cda -bMl -bMl -bMl -bMl -bMl -cfi -cfi -cgO -cgO -ceo -cfi -cfi -cfi -cfi -cgO -ceo -cgO -ceV +cbh +cbz +cbU +cct +ccO +bMj +bMj +bMj +bMj +bMj +cjj +cjz +cen +cen +cjL +cjR +cjV +cjY +ckc +cen +ckk +cen +ckE aab aab aab @@ -92253,82 +93256,82 @@ aaa aab aab aab -agK -ahp -agK +agJ +aho +agJ aab -ajF -ajF -ajF -ajF -ajF -ajF -ajF -ajF -ajF -ajF -ajF -ajF -ajF -ajF -ajF -aDy -aFt -aHv -aIQ -aKO -aKO -aOj -aKO -aKO -aSY -aHv -aVP -aXt -aYB -aZS -aZS -aZS -aZS -aZS -aZS -aZS -aZS -aZS -aZS -aZS -aZS -aZS -bra -aYB -aZS -buL -buL -buL -buL -buL -buL -buL -buL -buL -buL -aZS -bGs -bHD -bID -bJt -bJt -bJt -bJt -bMF -bMF -bMF -bMF +ajE +ajE +ajE +ajE +ajE +ajE +ajE +ajE +ajE +ajE +ajE +ajE +ajE +ajE +ajE +aDw +aFr +aHt +aIO +aKM +aKM +aOh +aKM +aKM +aSW +aHt +aVO +aXr +aYz +aZQ +aZQ +aZQ +aZQ +aZQ +aZQ +aZQ +aZQ +aZQ +aZQ +aZQ +aZQ +aZQ +bqY +aYz +aZQ +buK +buK +buK +buK +buK +buK +buK +buK +buK +buK +aZQ +bGq +bHB +bIB +bJr +bJr +bJr +bJr +bMD +bMD +bMD +bMD bPb bPD bQc -bMF -bMF +bMD +bMD bRL bSj bSS @@ -92344,37 +93347,37 @@ bWm bXe bXv bXT -bYo +bYs bXe bXv bWm -bZP -cat -caK +bZI +cai +ciw bPH -cby -cbS -ccn -ccK -cdb -bMl -anT -anT -anT -anT -cfF -cfF -cfF -cfF -cfF -cfF -cfF -cfF -cfF -cfF -cfF -cfF -cgv +cbi +cbA +cbV +ccu +ccP +bMj +anR +anR +anR +anR +cjk +cjA +cjF +cjI +cjM +cjS +cjW +cjZ +ckd +ckg +ckl +ckt +ckF aab aab aaa @@ -92510,114 +93513,114 @@ aaa aaa aab aab -agL -ahl -agL +agK +ahk +agK aab -ajF -ajF -ajF -ajF -ajF -ajF -ajF -ajF -ahs -atY -avA -axn -ayP -aAn -aBH -aDz -aFw -aHw -aIR -aIR -aIR -aOk -aIR -aIR -aSZ -aUE -aVQ -aXv -aYC -aZS -bbb -bbb -bbb -bbb -bgy -aZS -bjs -bjs -bjs -bjs -boS -aZS -brb -aYz -btK -buL -buL -buL -buL -buL -buL -buL -buL -buL -buL -bFt -aYz -bHE -aYz -aVJ -bKo -bLh +ajE +ajE +ajE +ajE +ajE +ajE +ajE +ajE +ahr +atW +avy +axl +ayN +aAl +aBF +aDx +aFu +aHu +aIP +aIP +aIP +aOi +aIP +aIP +aSX +aUC +aVP +aXt +aYA +aZQ +baZ +baZ +baZ +baZ +bgw +aZQ +bjq +bjq +bjq +bjq +boQ +aZQ +bqZ +aYx +btI +buK +buK +buK +buK +buK +buK +buK +buK +buK +buK +bFr +aYx +bHC +aYx +aVI +bKm +bLf +bLS +bME +bNk +bNM +bOv bLU -bMG -bNm -bNO -bOx -bLW bPE -bLW +bLU bQE bRh bRN bSk bST bTy -bLh -bLW -bLW +bLf +bLU +bLU bVv -bLW -bLW +bLU +bLU bWs bWJ -bLW +bLU bXw -bXU -bYp -bYL -bLW -bZw -bZQ -bZQ -caL +bXV +bYt +bYN +bLU +bZs +bZJ +bZJ +cix bPH bPO bPL -cco +cbW bRz -cdc -bMl -anT -anT -anT +ccQ +bMj +anR +anR +anR aaa aab aab @@ -92767,9 +93770,9 @@ aaa aaa aaa aab -agM -ahn -agM +agL +ahm +agL aab aab aaa @@ -92780,65 +93783,65 @@ aaa aaa aaa aaV -atZ -avB -axo -ayQ -aAo -aBI -aDA -aFx -aHx -aIS -aKP -aKP -aOl -aKP -aKP -aTa -aUF -aVR -aXv -aYD -aZS -bbb -bbb -bbb -bbb -bbb -aZS -bjs -bjs -bjs -bjs -bjs -aZS -brc -bsw -aZS -buL -buL -buL -buL -buL -buL -buL -buL -buL -buL -bFu -aYz -bHF -bGu -bJv -bKp -bLi -bLV -bLV -bLV -bNP -bOy -bLV +atX +avz +axm +ayO +aAm +aBG +aDy +aFv +aHv +aIQ +aKN +aKN +aOj +aKN +aKN +aSY +aUD +aVQ +aXt +aYB +aZQ +baZ +baZ +baZ +baZ +baZ +aZQ +bjq +bjq +bjq +bjq +bjq +aZQ +bra +bsu +aZQ +buK +buK +buK +buK +buK +buK +buK +buK +buK +buK +bFs +aYx +bHD +bGs +bJt +bKn +bLg +bLT +bLT +bLT +bNN +bOw +bLT bPF bQd bQd @@ -92857,23 +93860,23 @@ bQd bRi bQd bQd -bXV -bYq -bYM -bYM -bZx -bZR -cau -caM -cbg +bXW +bYu +chZ +cib +bZt +cio +cis +caz +caT bPO -cbT -ccp -ccp -ccp -ccp -anT -anT +cbB +cbX +cbX +cbX +cbX +anR +anR aaa aab aab @@ -93024,9 +94027,9 @@ aad aad aad aaa -afq -ahp -afq +afr +aho +afr aab aab aab @@ -93037,100 +94040,100 @@ aaa aaa aaa aaV -aua -avC -axp -ayR -aAp -aBJ -aDB -aFy -aHy -aIT -aIT -aMz -aOm -aPU -aRA -aTb -aUE -aVQ -aXv -aYE -aZS -bbb -bcy -bbb -bfi -bbb -aZS -bjs -bkx -bjs -bnB -bjs -aZS -brd -aYz -btK -buL -buL -buL -buL -buL -buL -buL -buL -buL -buL -btK -aYz -bHG -aYz -aVJ -bKo -bLh -bLW -bLW -bLW -bNQ -bOz +atY +avA +axn +ayP +aAn +aBH +aDz +aFw +aHw +aIR +aIR +aMx +aOk +aPS +aRy +aSZ +aUC +aVP +aXt +aYC +aZQ +baZ +bcw +baZ +bfg +baZ +aZQ +bjq +bkv +bjq +bnz +bjq +aZQ +brb +aYx +btI +buK +buK +buK +buK +buK +buK +buK +buK +buK +buK +btI +aYx +bHE +aYx +aVI +bKm +bLf +bLU +bLU +bLU +bNO +bOx bPc bPG -bLW -bLW -bLW -bLW -bLW +bLU +bLU +bLU +bLU +bLU bSV -bLW -bLh +bLU +bLf bUy bSV -bLW +bLU bRj bWe bRj bRj bRj bXx -bXW -bNQ -bYN -bZb +bXX +bNO +bYO +bZc bPH -bZS -cav -caN +bZK +caj +ciy bPH -cbz -cbT -ccq -ccL -cdd -cdr -anT -anT +cbj +cbB +cbY +ccv +ccR +cdg +anR +anR aaa aab aab @@ -93275,14 +94278,14 @@ aaT aaT aaT aaT -adL +adM aad acC aah aad aad aad -ahr +ahq aad aad aab @@ -93294,65 +94297,65 @@ aaa aaV aaV aaV -aub -avD -axq -aub -avD +atZ +avB +axo +atZ +avB aaV -aDC -aFz -aHv -aIU -aKO -aKO -aKO -aPV -aRB -aTc -aHv -aVS -aXv -aYF -aZS -bbb -bbb -bbb -bbb -bbb -aZS -bjs -bjs -bjs -bjs -bjs -aZS -bre -aYF -aZS -buL -buL -buL -buL -buL -buL -buL -buL -buL -buL -aZS -bGt -bHH -aYE -bJw -bJw -bJw -bJw -bJw -bNn -bJw -bJw -bJw +aDA +aFx +aHt +aIS +aKM +aKM +aKM +aPT +aRz +aTa +aHt +aVR +aXt +aYD +aZQ +baZ +baZ +baZ +baZ +baZ +aZQ +bjq +bjq +bjq +bjq +bjq +aZQ +brc +aYD +aZQ +buK +buK +buK +buK +buK +buK +buK +buK +buK +buK +aZQ +bGr +bHF +aYC +bJu +bJu +bJu +bJu +bJu +bNl +bJu +bJu +bJu bPH bPH bQF @@ -93376,17 +94379,17 @@ bUz bUz bUz bUz -bZT -bZT -bZT +bZL +bZL +bZL bPH -cbA -cbU -ccr -ccM -cde -cbT -anT +cbk +cbC +cbZ +ccw +ccS +cbB +anR aaa aaa aab @@ -93534,7 +94537,7 @@ aaU aaU aaI aad -aeW +aeX aah acV aah @@ -93549,67 +94552,67 @@ aaa aaa aaa aaV -ard -aso -auc -avE -axr -ayS -aAq +arb +asm +aua +avC +axp +ayQ +aAo aaV -aDD -aFA -ahs -aIV -aKQ -aMA -aOn -ahs -aRC -aTd -aHv -aVT -aXv -aYz -aZS -bbb -bbb -bbb -bbb -bbb -aZS -bjs -bjs -bjs -bjs -bjs -aZS -aYz -aYz -btJ -buL -buL -buL -buL -buL -buL -buL -buL -buL -buL -bFu -aYz -bHI -aYz -bJw +aDB +aFy +ahr +aIT +aKO +aMy +aOl +ahr +aRA +aTb +aHt +aVS +aXt +aYx +aZQ +baZ +baZ +baZ +baZ +baZ +aZQ +bjq +bjq +bjq +bjq +bjq +aZQ +aYx +aYx +btH +buK +buK +buK +buK +buK +buK +buK +buK +buK +buK +bFs +aYx +bHG +aYx +bJu +bKo +bLh +bLV +bMF bKq -bLj -bLX -bMH -bKs -bJw -bOA -bOA +bJu +bOy +bOy bPI bPI bQG @@ -93628,21 +94631,21 @@ bWu bVP bVP bUz -bXX -bYr -bYO -bZc +bXY +bYv +bYP +bZe bUz bUz bUz bUz -bMl +bMj bPO -cbT -ccs -ccN -cdf -cbT +cbB +cca +ccx +ccT +cbB aaa aaa aab @@ -93789,16 +94792,16 @@ abu acI acX aaU -adM +adN aad -adj +adk acB aad abi abk aaC aah -aiW +aiV aaa aab aaa @@ -93806,66 +94809,66 @@ aaa aaa aaa aaV -are +arc abD -aud -avF -axs +aub +avD +axq abD -aAr +aAp aaV -aDE -aFz -aHz -aIW -aKR -aMB -aOo -ahs -aRD -aTe -aHv -aVU -aXv -aYB -aZS -aZS -aZS -aZS -aZS -aZS -aZS -aZS -aZS -aZS -aZS -aZS -aZS -bqZ -bsv -aZS -buK -bvQ -aZS -buK -bzD -bvQ -aZS -buK -bzD -bvQ -aZS +aDC +aFx +aHx +aIU +aKP +aMz +aOm +ahr +aRB +aTc +aHt +aVT +aXt aYz -bHJ -bIB -bJx -bKr -bLk -bLY -bMI -bLY -bNR -bOB +aZQ +aZQ +aZQ +aZQ +aZQ +aZQ +aZQ +aZQ +aZQ +aZQ +aZQ +aZQ +aZQ +bqX +bst +aZQ +buJ +bvP +aZQ +buJ +bzB +bvP +aZQ +buJ +bzB +bvP +aZQ +aYx +bHH +bIz +bJv +bKp +bLi +bLW +bMG +bLW +bNP +bOz bPd bPI bQe @@ -93888,18 +94891,18 @@ bXy bVa bVa bVa -bZd +bZf bVa bVa bVa -caO -cbh +caA +caU bPQ -cbT -cct -ccO -cdg -cbT +cbB +ccb +ccy +ccU +cbB aaa aaa aab @@ -94044,7 +95047,7 @@ abO acd abO acJ -abw +acY aaU aaI aad @@ -94055,74 +95058,74 @@ agl aaI aaA aah -aiW -aiW -aiW -aiW -amA -aiW -aiW +aiV +aiV +aiV +aiV +amy +aiV +aiV aaV -arf -asp -aue +ard +asn +auc aaV -axt -arf -asp +axr +ard +asn aaV -aDF -aFB -aHA -aIX -aKS +aDD +aFz +aHy +aIV +aKQ abC -aOp -ahs -aRE -aTf -aHv -aVV -aXv -aYz -aZT -bbc -bcz -bdV -bfj -aYz -bcz -bjt -bcz -bdV -bnC -aYz -bqc -aYz -aYz -btL -aYz -bdV -bxn -aYz -aYz -aYz -aVJ -bdV -aYz -aYz -bFv -aYz -bHI -bIE -bJw -bKs -bLl -bKs -bMJ -bKs -bJw -bOC +aOn +ahr +aRC +aTd +aHt +aVU +aXt +aYx +aZR +bba +bcx +bdT +bfh +aYx +bcx +bjr +bcx +bdT +bnA +aYx +bqa +aYx +aYx +btJ +aYx +bdT +bxm +aYx +aYx +aYx +aVI +bdT +aYx +aYx +bFt +aYx +bHG +bIC +bJu +bKq +bLj +bKq +bMH +bKq +bJu +bOA bPe bPI bQf @@ -94142,23 +95145,23 @@ bUE bUE bUE bXz -bXY -bYs -bYs -bZe +bXZ +bYw +bYw +bZg bVa -bZU -bZU +bZM +bZM bUz -cbi +caV bPK -cbV -ccu -ccP +cbD +ccc +ccz +ccV cdh -cds aaa -cdO +cdC aab aab aab @@ -94296,20 +95299,20 @@ aad aaI aaU aba -abw +acY abP ace abP -acK -abw -adt +cgF +acY +adu acr acz acz aaT aaT agm -agN +agM aad aah aah @@ -94320,67 +95323,67 @@ aah abG aah aaV -arg -asq -auf +are +aso +aud aaV -axu -ayT -aAs +axs +ayR +aAq aaV -aDG -aFC -aHB -aIY -aKT +aDE +aFA +aHz +aIW +aKR abC -aOq -ahs -aRF -aTe -aHv -aVW -aXw -aYG -aZU -bbd -bcA -bcA -bfk -bcA -bcA -bcA -bcA -bcA -bcA -bcA -bcA -bcA -bcA -bbd -bcA -bvR -bxo -bcA -bcA -bcA -bBB -bcA -bDv -bEu -bFw -bGu -bHK -aYz -bJw -bKt -bJw -bLZ -bJw -bNo -bJw -bJw -bJw +aOo +ahr +aRD +aTc +aHt +aVV +aXu +aYE +aZS +bbb +bcy +bcy +bfi +bcy +bcy +bcy +bcy +bcy +bcy +bcy +bcy +bcy +bcy +bbb +bcy +bvQ +bxn +bcy +bcy +bcy +bBz +bcy +bDt +bEs +bFu +bGs +bHI +aYx +bJu +bKr +bJu +bLX +bJu +bNm +bJu +bJu +bJu bPI bQg bQI @@ -94404,16 +95407,16 @@ bWK bXf bVa bVa -bZV -caw +bZN +cak bUz bPO bPL -cbW -ccv -ccx -ccv -cds +cbE +ccd +ccf +ccd +cdh aaa aab aab @@ -94558,7 +95561,7 @@ abP acf abP acL -acY +acZ aaU aaU aaV @@ -94577,67 +95580,67 @@ aae aah abG aaV -arh -asr -aug +arf +asp +aue aaV -axv -ayU -aAt +axt +ayS +aAr aaV -aDB -aFz -aHC -aIZ -aKU -avE -aOr -ahs -aRG -aTg -aHv -aVX -aXv -aYH -aZV -aYz -bcB -bdW -bfl -aYz -bcB -aYz -bcB -blW -bcB -aYz -bcB -aYz -bcB -aYz -buM -bvS -bxp -byu -bzE -bAD -bBC -bCA -aXv -bEv -aYz -bGv -aYz -aYz -bJw -bKu -bJw -bKu -bJw -bNp -bJw -bOD -bOD +aDz +aFx +aHA +aIX +aKS +avC +aOp +ahr +aRE +aTe +aHt +aVW +aXt +aYF +aZT +aYx +bcz +bdU +bfj +aYx +bcz +aYx +bcz +blU +bcz +aYx +bcz +aYx +bcz +aYx +buL +bvR +bxo +byt +bzC +bAB +bBA +bCy +aXt +bEt +aYx +bGt +aYx +aYx +bJu +bKs +bJu +bKs +bJu +bNn +bJu +bOB +bOB bPI bQh bQI @@ -94661,16 +95664,16 @@ bWL bXf bVa bVa -bZW -bZW +bZO +bZO bUz -cbj +caW bPL -cbW -ccw -ccx -cdi -cds +cbE +cce +ccf +ccW +cdh aab aab aab @@ -94815,86 +95818,86 @@ abP acg abP acL -abw -adu +acY +adv aaU -aep -aeX -afs -afK +aeq +aeY +aft +afL agn abC -ahs -ahs -ahs -ahs -ahs +ahr +ahr +ahr +ahr +ahr aah -ahs -ahs -ahs +ahr +ahr +ahr aaV aaV -ass -auh +asq +auf aaV -axw -arf -asp +axu +ard +asn aaV -aDB -aFz -aHD -aJa -aey -aMC -aOs -ahs -aRH -aTh -aPW -aVJ -aXs -aYI -aUD -aUD -aUD -bdX -bfm -bgz -bdX -bju -bky -bdX -bnD -boT -bdX -brf -bsx -bdX -buN -bvT -buN -bxt -bxt -bAE -bxt -aVJ -aXs -bEw -bFx -bFx -bFx -bFx -bFx -bFx -bFx -bFx -bFx -bFx -bFx -bFx -bFx +aDz +aFx +aHB +aIY +aez +aMA +aOq +ahr +aRF +aTf +aPU +aVI +aXq +aYG +aUB +aUB +aUB +bdV +bfk +bgx +bdV +bjs +bkw +bdV +bnB +boR +bdV +brd +bsv +bdV +buM +bvS +buM +bxs +bxs +bAC +bxs +aVI +aXq +bEu +bFv +bFv +bFv +bFv +bFv +bFv +bFv +bFv +bFv +bFv +bFv +bFv +bFv bPI bQi bQI @@ -94918,16 +95921,16 @@ bWK bXf bVa bVa -bZU -bZU +bZM +bZM bUz bPO bPL -cbW -ccx -ccx -ccx -cds +cbE +ccf +ccf +ccf +cdh aab aab aab @@ -95072,86 +96075,86 @@ abP acf abP acM -abw -adv +acY +adw aaU -aeq -aeY -aft -afL +aer +aeZ +afu +afM ago -agO +agN aaV -aif -aiX -ajG -ahs +aie +aiW +ajF +ahr aah -ahs -aif -aoF -ajG +ahr +aie +aoD +ajF aaV -ast -aui -avG -aui -aui -aui -aBK -aDH -aFD -aHE -aJa -aKV -aMD -aOt -ahs -aRI -aTi -aPW -aVY -aXx -aYJ -auA +asr +aug +avE +aug +aug +aug +aBI +aDF +aFB +aHC +aIY +aKT +aMB +aOr +ahr +aRG +aTg +aPU +aVX +aXv +aYH +auy aab aab -bdX -bfn -bgA -bhZ -bjv -bkz -bdX -bnE -bjv -bhZ -bgA -bsy -bdX -buO -bvU -bvX -byv -bzF -bAF -bxt -bCB -bDw -bEv -bFy -bGw -bHL -bIF -bJy -bKv -bLm -bMa -bMK -bGC -bGC -bOE -bFx +bdV +bfl +bgy +bhX +bjt +bkx +bdV +bnC +bjt +bhX +bgy +bsw +bdV +buN +bvT +bvW +byu +bzD +bAD +bxs +bCz +bDu +bEt +bFw +bGu +bHJ +bID +bJw +bKt +bLk +bLY +bMI +bGA +bGA +bOC +bFv bPI bQj bQI @@ -95170,23 +96173,23 @@ bVa bWM bVa bXB -bXZ -bXZ -bXZ -bXZ -bZy -bZV -cax +bYa +bYa +bYa +bYa +bZu +bZN +cal bUz bPO bPL -cbW -cbW -ccQ -cbW -cds -cdE -cdP +cbE +cbE +ccA +cbE +cdh +cdt +cdD aab aab aab @@ -95329,86 +96332,86 @@ abP ace abP acN -abw -adw +acY +adx aaU -aer -aeZ -afu -afM +aes +afa +afv +afN agp abC aaV -aig -aiY -ajH -ahs +aif +aiX +ajG +ahr abG -ahs -aig -aoG -ajH +ahr +aif +aoE +ajG aaV -asu -auj -avH -avH -ayV -aAu -aBL -aDI -aFE -aHF -aJb +ass +auh +avF +avF +ayT +aAs +aBJ +aDG +aFC +aHD +aIZ aaV aaV aaV -ahs -aRJ -aTj -aPW -aHU -aXy -aYK -auA +ahr +aRH +aTh +aPU +aHS +aXw +aYI +auy aab aab -bdX -bfo -bgB -bgB -bgB -bkA -bdX -bnF -bgB -bgB -bgB -bsz -bdX -buP -bvU -bxq -byw -bxt -bAG -bxt -bCC -aXv -bEv -bFz -bGx -bHM -bGC -bGC -bKw -bGC -bMb -bMb -bMb -bHQ -bOF +bdV +bfm +bgz +bgz +bgz +bky +bdV +bnD +bgz +bgz +bgz +bsx +bdV +buO +bvT +bxp +byv +bxs +bAE +bxs +bCA +aXt +bEt bFx +bGv +bHK +bGA +bGA +bKu +bGA +bLZ +bLZ +bLZ +bHO +bOD +bFv bPI bQk bQJ @@ -95432,18 +96435,18 @@ bVa bVa bVa bVa -bZW -bZW +bZO +bZO bUz bPO -cbB -cbX -ccy -cbV -cbW -cdt -cdF -cdQ +cbl +cbF +ccg +cbD +cbE +cdi +cdu +cdE aab aab aab @@ -95586,86 +96589,86 @@ abu ach abu acO -abw +acY aaU aaU -aes +aet aaV aaV -afN +afO aaV aaV aaV aaV -aiZ +aiY aaV -ahs +ahr abE -ahs +ahr aaV -aoH +aoF aaV aaV -asv -auk -avI -avI -ayW -aAv -aAv -aAv -aAv -aAv -aJc -aAv -aME -aOu -aPW -aPW -aTk -aPW -axR -aLe -aYL -aZW -aZW -aZW -bdX -bfp -bgC -bia -bjw -bdX -bdX -bdX -boU -bia -brg -bsA -bdX -buQ -bvV -bvX -byx -bxt -bAH -bxt -bCD -bDx -bEx -bFx -bGy -bHM -bIG -bJz -bKw -bLn -bMc -bML -bNq -bNS -bOG -bFx +ast +aui +avG +avG +ayU +aAt +aAt +aAt +aAt +aAt +aJa +aAt +aMC +aOs +aPU +aPU +aTi +aPU +axP +aLc +aYJ +aZU +aZU +aZU +bdV +bfn +bgA +bhY +bju +bdV +bdV +bdV +boS +bhY +bre +bsy +bdV +buP +bvU +bvW +byw +bxs +bAF +bxs +bCB +bDv +bEv +bFv +bGw +bHK +bIE +bJx +bKu +bLl +bMa +bMJ +bNo +bNQ +bOE +bFv bPI bPI bPI @@ -95688,19 +96691,19 @@ bWw bWw bWw bVB -bZz -bZX +bZv +bZP bUz bUz -cbk -bMN -bMN -bMN -ccR -bMl -cbW -cdG -cdR +caX +bML +bML +bML +ccB +bMj +cbE +cdv +cdF aab aab acs @@ -95843,86 +96846,86 @@ abA aci abA acP -acZ +ada aaU -adN -aet -afa -afv -afO -afa -agP -aht -aih -aet -ajI -afa -alB -afa -afa -aoI -aih -ari -asw -auk -avI -avI -ayX -aAw -aBM -aDJ -aFF -aHG -aJd -aAv -aMF -avM -avM -avM -aTl -aPW -aVZ -aLe -aYM -aZW -bbe -bcC -bdX -bfq -bgD -bib -bjx -bdX -blX -bdX -boV -bqd -brh -bsB -bdX -buR -bvW -bxr -byy -bzG -bAI -bxt -bCE -bDy -bEy -bFA -bGz -bHN -bIH -bJA -bKx -bLo -bMd -bMd -bMd -bNT -bOH -bFx +adO +aeu +afb +afw +afP +afb +agO +ahs +aig +aeu +ajH +afb +alz +afb +afb +aoG +aig +arg +asu +aui +avG +avG +ayV +aAu +aBK +aDH +aFD +aHE +aJb +aAt +aMD +avK +avK +avK +aTj +aPU +chV +aLc +aYK +aZU +bbc +bcA +bdV +bfo +bgB +bhZ +bjv +bdV +blV +bdV +boT +bqb +brf +bsz +bdV +buQ +bvV +bxq +byx +bzE +bAG +bxs +bCC +bDw +bEw +bFy +bGx +bHL +bIF +bJy +bKv +bLm +bMb +bMb +bMb +bNR +bOF +bFv bPJ bQl bQK @@ -95943,19 +96946,19 @@ bXg bXD bXg bXg -bYP +bYQ bVa -bZA -bZY +bZw +bZQ bUz bUz -bMl -bMl -bMl -bMl -cbz -bMl -cbW +bMj +bMj +bMj +bMj +cbj +bMj +cbE aab aab aab @@ -96100,86 +97103,86 @@ abQ acj act acQ -ada +adb aaU -adO -aeu -afb -afw -afP -afw -agQ -afw -aii -aja -afw -akF -alC -afw -afw -aoJ -afw -arj -asx -aul -avJ -avJ -avI -aAx -aBN -aDK -aFG -aHH -aJe +adP +aev +afc +afx +afQ +afx +agP +afx +aih +aiZ +afx +akE +alA +afx +afx +aoH +afx +arh +asv +auj +avH +avH +avG aAv -aMG -aOv -aPX -avM -aTl -aPW -aJu -aXz -aYN -aZX -bbf -bcD -bdX -bfr -bgE -bic -bdX -bdX -blY -bdX -bdX -bqe -bgE -bsC -bdX -buS -bvX +aBL +aDI +aFE +aHF +aJc +aAt +aME +aOt +aPV +avK +aTj +aPU +aJs +aXx +aYL +aZV +bbd +bcB +bdV +bfp +bgC +bia +bdV +bdV +blW +bdV +bdV +bqc +bgC +bsA +bdV +buR +bvW +bxr +byy +bzF +bAH bxs -byz -bzH -bAJ -bxt -bCF -bDz -bEz -bFB +bCD +bDx +bEx +bFz +bGy +bGy +bGy bGA -bGA -bGA -bGC -bKy -bLp -bGA -bGA -bGA -bNU -bOI -bFx +bKw +bLn +bGy +bGy +bGy +bNS +bOG +bFv bPJ bPI bQL @@ -96194,25 +97197,25 @@ bVd bVc bVd bUz -bWy +chR bUB bUB bXE bUB bUB -bYQ +bYR bVa -bZA -bZZ +bZw +bZR bUz -caP -cad -cbC -cad -cad -ccS -bMl -cbW +caB +bZV +cbm +bZV +bZV +ccC +bMj +cbE aab aab aab @@ -96357,86 +97360,86 @@ abR abR abR acR -adb -adx -adP -aev +adc +ady +adQ +aew aaV -afc -afQ +afd +afR agq -agR -ahu -afc -ajb -ajJ -akG -alD -ajb -anx -aoK -apQ -ajb -asy -aum -avK -axx -ayY -aAy -aBO -aDL -aFH -aHI -aJf -aAv -aMH -aOw -aPY -avM -aTm +agQ +aht +afd +aja +ajI +akF +alB +aja +anv +aoI +apO +aja +asw +auk +avI +axv +ayW +aAw +aBM +aDJ +aFF +aHG +aJd +aAt +aMF +aOu aPW -aWa -aLe -aCl -aZW -bbg -bcE -bdX -bfs -bgF -bid -bjy -bkB -blZ -bnG -boW -bqf -bri -bsD -bdX -buT -bvY -bxt -bxt -bxt -bxt -bxt -aUD -bDA -aUD -bFx -bGB -bGA -bGA -bGA -bGA -bLp -bMe -bGA -bMe -bNU -bOJ -bFx +avK +aTk +aPU +aVY +aLc +aCj +aZU +bbe +bcC +bdV +bfq +bgD +bib +bjw +bkz +blX +bnE +boU +bqd +brg +bsB +bdV +buS +bvX +bxs +bxs +bxs +bxs +bxs +aUB +bDy +aUB +bFv +bGz +bGy +bGy +bGy +bGy +bLn +bMc +bGy +bMc +bNS +bOH +bFv bPK bQm bQM @@ -96451,24 +97454,24 @@ bVc bVC bVc bUz -bWz +chS bWO bXh bXE bUB bUB -bYR -bZf -bZA -caa +bYS +bZh +bZw +bZS bUz -caQ -bMl +caC +bMj bPJ -bMl -bMl +bMj +bMj bPO -bMl +bMj aaa aab aab @@ -96616,84 +97619,84 @@ acu abD abD abD -adQ -aew +adR +aex aaV -afx -afR +afy +afS agr -afy -afy -aij -ajb -ajK -akH -alE -amB -any -aoL -apR -ajb -asz -aum -avL -axy -ayZ -aAv -aBP -aDM -aFI -aHJ -aJg -aAv -aMI -aMI -aPZ -avM -aTl -aPW -axR -aLe -aYO -aZW -aZW -aZW -bdX -bdX -bdX -bdX -bdX -bkC -bma -bnH -bdX -bdX -bdX -bdX -bdX -buU -bvZ -bxu -byA -bzI -byA -bBD -bqm -bDB -bmL -bFC -bGC +afz +afz +aii +aja +ajJ +akG +alC +amz +anw +aoJ +apP +aja +asx +auk +avJ +axw +ayX +aAt +aBN +aDK +aFG +aHH +aJe +aAt +aMG +aMG +aPX +avK +aTj +aPU +axP +aLc +aYM +aZU +aZU +aZU +bdV +bdV +bdV +bdV +bdV +bkA +blY +bnF +bdV +bdV +bdV +bdV +bdV +buT +bvY +bxt +byz +bzG +byz +bBB +bqk +bDz +bmJ +bFA bGA -bGA -bGA -bGA -bLp -bGA -bGA -bGA -bNU -bOK -bFx +bGy +bGy +bGy +bGy +bLn +bGy +bGy +bGy +bNS +bOI +bFv bPL bPI bQN @@ -96712,20 +97715,20 @@ bUz bUz bXi bXF -bYa -bYt -bYS -bZg -bZA -cab +bYb +bYx +chU +bZi +bZw +bZT bUz -caQ -bMl +caC +bMj bRz -cbY -bMl +cbG +bMj bPO -bMl +bMj aaa aaa aab @@ -96873,94 +97876,94 @@ aaV aaV aaV aaV -adR -aex +adS +aey aaV -afy -afS -afy -afy -ahv -afy -ajb -ajL -akI -alF -alF -anz -alF -apS -ajb -asA -aun -avM -axz -aza -aAz -aBQ -aDN -aFJ -aHK -aJh -aAv -avM -avM -aQa -avM -aTn -aPW -aWb -aLe -aCl -aZY -bbh +afz +afT +afz +afz +ahu +afz +aja +ajK +akH +alD +alD +anx +alD +apQ +aja +asy +aul +avK +axx +ayY +aAx +aBO +aDL +aFH +aHI +aJf +aAt +avK +avK +aPY +avK +aTl +aPU +aVZ +aLc +aCj +aZW +bbf +bcD bcF -bcH -aZY -bgG -bie -bjz -bkD -bmb -bnI -boX -bqg -brj -bsE -btM -buV -brm -brm -brm -bzJ -bAK -bAK -bCG -bDC -bEA -bFx -bGD -bHO -bII -bJB -bKz -bLp -bGA -bGA -bGA -bNU -bOL -bFx +aZW +bgE +bic +bjx +bkB +blZ +bnG +boV +bqe +brh +bsC +btK +buU +brk +brk +brk +bzH +bAI +bAI +bCE +bDA +bEy +bFv +bGB +bHM +bIG +bJz +bKx +bLn +bGy +bGy +bGy +bNS +bOJ +bFv bPL -bMl -bMl -bMl -bMl -bMl -bMl -bMl -bMl -bMl +bMj +bMj +bMj +bMj +bMj +bMj +bMj +bMj +bMj bVe bQQ bVe @@ -96970,19 +97973,19 @@ bUz bUz bXG bUz -bYu +bYy bUz -bZh -bZA -cac +bZj +bZw +bZU bUz -caQ +caC bRx bPJ bPJ -bMl +bMj bPO -bMl +bMj aaa aaa aaa @@ -97129,117 +98132,117 @@ aah acv abS abS -ady -adS -aey -afc -afz -afT +adz +adT +aez +afd +afA +afU ags agu -ahw -aik -ajb -ajM -akJ -alG -alG -anA -aoM -apT -ajb -asB -alB -avN -axA -azb -aAA -aBR -aDO -aFK -aHL -aJi -avM -aMJ -aOx -aQb -aRK -aTl -aPW -aJt -aLe -aYP -aZY -aZY -aZY -bdY -aZY -bgH -bif -bjA -bkE -bmc -bnJ -boY -bqh -bqh -bqh -btN -buW -bwa -bxv -byB -bzK -bAL -bBE -bqm -bom -bEB -bFx -bGE -bHP +ahv +aij +aja +ajL +akI +alE +alE +any +aoK +apR +aja +asz +alz +avL +axy +ayZ +aAy +aBP +aDM +aFI +aHJ +aJg +avK +aMH +aOv +aPZ +aRI +aTj +aPU +aJr +aLc +aYN +aZW +aZW +aZW +bdW +aZW +bgF +bid +bjy +bkC +bma +bnH +boW +bqf +bqf +bqf +btL +buV +bvZ +bxu +byA +bzI +bAJ +bBC +bqk +bok +bEz +bFv bGC -bJC -bKA -bLp -bMf +bHN bGA -bNr -bNU -bOM -bFx +bJA +bKy +bLn +bMd +bGy +bNp +bNS +bOK +bFv bPM bQn bQO -bMN -bMN +bML +bML bSs -bMN -bMN +bML +bML bUg -bMN -bMN -bMN -bMN -bMN +bML +bML +bML +bML +bML bWB bWP bXj bXH -bYb -bYv +bYc +chT bUz bUz -bZB +bZx bUz bUz -caQ +caC bQp bPJ bWA -bMl +bMj bPO -bMl +bMj aaa aaa aaa @@ -97387,84 +98390,84 @@ acw abT aaD aaV -adT -aez +adU +aeA aaV -afy -afy +afz +afz agt -agS -afy -ail -ajb -ajN -akK -alF -amC -alF -aoN -apU -ajb -asC -auo -avM -avM -avM -avM -aBS -aDP -azd -aHL -aJi -avM -aMK -aMK -aQb -aRL -aTl -aPW -axR -aLe -aCl -aZZ -bbi -bcG -bcH -bft -bgI -big -bdX -bdX -bmd -bdX -bdX -bqi -brk -bsF -btO -buX -brk -bxw -bqm -bqm -bqm -bqm -bqm -biN -bEC -bFx -bGF -bHQ -bIJ -bJD -bKB -bLq -bMf -bGA -bNr -bNU -bOM -bFx +agR +afz +aik +aja +ajM +akJ +alD +amA +alD +aoL +apS +aja +asA +aum +avK +avK +avK +avK +aBQ +aDN +azb +aHJ +aJg +avK +aMI +aMI +aPZ +aRJ +aTj +aPU +axP +aLc +aCj +aZX +bbg +bcE +bcF +bfr +bgG +bie +bdV +bdV +bmb +bdV +bdV +bqg +bri +bsD +btM +buW +bri +bxv +bqk +bqk +bqk +bqk +bqk +biL +bEA +bFv +bGD +bHO +bIH +bJB +bKz +bLo +bMd +bGy +bNp +bNS +bOK +bFv bPN bQo bQP @@ -97472,32 +98475,32 @@ bPJ bQQ bSt bTi -bMk -bMl -bMl -bMl -bMl +bMi +bMj +bMj +bMj +bMj bVR -bMl +bMj bPO bUz bXk bXI -bYc -bYw +bYd +bYA bUz -bZi -bZC -cad -cad -caR -bMl +bZk +bZy +bZV +bZV +caD +bMj bPJ bPJ bQp bPO -bMl -bMl +bMj +bMj aaa aaa aaa @@ -97644,109 +98647,109 @@ aad aah aad aaV -adU -aeA -afc -afy -afU +adV +aeB +afd +afz +afV agu -afy -afy -afy -ajb -ajO -akL -alH -amD +afz +afz +afz +aja +ajN +akK alF -aoN -apV -ajb -asD -aup -avO -axB -azc -aAB -aBT -aDQ -aFL -aHM -aJj -aKW -aML -aOy -aQc -aOy -aTo -aPW -axR -aLe -aYQ -baa -bbi -bcH -bdZ -bfu -bgJ -bih +amB +alD +aoL +apT +aja +asB +aun +avM +axz +aza +aAz +aBR +aDO +aFJ +aHK +aJh +aKU +aMJ +aOw +aQa +aOw +aTm +aPU +axP +aLc +aYO +aZY +bbg +bcF bdX -bkF -bme -bnK -bdX -bqj -brl -bqj -bqm -buY -bwb -bxx -byC -bzL -bAM -bBF -bCH -bxx -bEC -bFx -bFx -bHR -bFx -bFx -bKC -bGA -bMf -bGA -bNr -bNU -bOM -bFx +bfs +bgH +bif +bdV +bkD +bmc +bnI +bdV +bqh +chs +bqh +bqk +buX +bwa +bxw +byB +bzJ +bAK +bBD +bCF +bxw +bEA +bFv +bFv +bHP +bFv +bFv +bKA +bGy +bMd +bGy +bNp +bNS +bOK +bFv bPO -bMl -bMl +bMj +bMj bRx -bMl -bMl -bMl -bMl -bMl +bMj +bMj +bMj +bMj +bMj bUG bVf bSu bPJ -bMl +bMj bPO bUz bXl bXJ -bYd -bYx +bYe +bYB bUz -bZj -bMl +bZl +bMj bPJ -bMl +bMj bPJ bPJ bRz @@ -97754,7 +98757,7 @@ bPJ bRx bPO bQQ -bMl +bMj aaa aaa aab @@ -97901,117 +98904,117 @@ aaD acl aaC aaV -adV -aeB +adW +aeC aaV -afy -afy +afz +afz agt -agS -afy -ail -ajb -ajP -akM -alI -amE -anB -aoO -apW -ark -asE -auq -avP -axC -azd -aAC -azd -aDR -aFM -aHN -aJk -aKX -aMM -aKX -aQd -azd -aTp -aPW -aWc -aLe -aCl -bab -bbj -bcI -bea -bfv -bcH -bii -bdX -bkG -bmf -bnL -bdX -bqk -brm -bsG -btP -buZ -bwc -bxx -byD -bzM -bAN -bxx -bxx -bxx -bEC -bFx -bGG -bHS -bIK -bFx -bKD -bLr -bMg -bGA -bGA -bNV -bLr +agR +afz +aik +aja +ajO +akL +alG +amC +anz +aoM +apU +ari +asC +auo +avN +axA +azb +aAA +azb +aDP +aFK +aHL +aJi +aKV +aMK +aKV +aQb +azb +aTn +aPU +aWa +aLc +aCj +aZZ +bbh +bcG +bdY +bft +bcF +big +bdV +bkE +bmd +bnJ +bdV +bqi +brk +bsE +chv +buY +bwb +bxw +byC +bzK +bAL +bxw +bxw +bxw +bEA +bFv +bGE +bHQ +bII +bFv +bKB +bLp +bMe +bGy +bGy +bNT +bLp bPf bPP bQp bQQ bPJ -bMl +bMj bSu bSu bSu -bMl +bMj bUH bPJ bPJ bSu -bMl +bMj bWC bWQ bVB bXK -bYe +bYf bVa bUz -bZj -bMl +bZl +bMj bQR bPJ bPJ -caS +caE bQp bPJ -bMl +bMj bPO bQQ -bMl +bMj aaa aab aab @@ -98158,89 +99161,89 @@ aaD aah aah aaV -adW -aey -afc -afy -afV +adX +aez +afd +afz +afW agu -afy -afy -afy -ajb -ajQ -akM -alI -amF -anC -aoP -apX -arl -asF -aup -avO -axD -aze -aAB -aBU -aBY -aFN -aHO -aJl -aKY -aMN -aOz -aQe -azd -aTp -aPW -aWd -aLg -aYR -aZY -aZY -aZY -aZY -aZY -bgK -bij -bdX -bkH -bmg -bnM -bdX -bql -brn -bsH -btQ -bva -bwd -bxy -byE -bzN -bAN -bBG -bCH +afz +afz +afz +aja +ajP +akL +alG +amD +anA +aoN +apV +arj +asD +aun +avM +axB +azc +aAz +aBS +aBW +aFL +aHM +aJj +aKW +aML +aOx +aQc +azb +aTn +aPU +aWb +aLe +aYP +aZW +aZW +aZW +aZW +aZW +bgI +bih +bdV +bkF +bme +bnK +bdV +bqj +brl +bsF +btO +buZ +bwc bxx -bED -bFx -bGH -bHT -bIL -bFx -bKE -bIG -bMh -bJy -bIG -bJz -bON -bFx +byD +bzL +bAL +bBE +bCF +bxw +bEB +bFv +bGF +bHR +bIJ +bFv +bKC +bIE +bMf +bJw +bIE +bJx +bOL +bFv bPO -bMl +bMj bQR bPJ -bMl +bMj bSu bSw bSw @@ -98249,26 +99252,26 @@ bPJ bSv bSw bSu -bMl +bMj bPO bUz bXm bXL -bYf -bYy +bYg +bYC bUz -bZj -bZD +bZl +bZz bPJ bPJ -caS +caE bRz bPJ -cbZ -bMl -ccT -bZD -bMl +cbH +bMj +ccD +bZz +bMj aaa aab aab @@ -98415,89 +99418,89 @@ aaA aah aah aaV -adX -aeC +adY +aeD aaV -afA -afy +afB +afz agt -agS -ahx -ail -ajb -ajQ -akN -alJ -amG -anD -aoQ -apY -arm -asG -aur -avM -avM -avM -avM -aBV -aDR -aFO -aHP -aJm -azd -azd -aOA -aQf -azd -aTq -aPW -axR -aLe -aYM -bac -bbk -bcJ -beb -aZY -bgL -bik -bdX -bdX -bmh -bdX -bdX -bqm -bqm -bqm -bqm -bvb -bwe -bxx -bxx -bxx -bxx -bxx -bxx -bxx -bED -bFx -bGI -bHU -bIM -bFx -bFx -bFx -bMi -bMM -bMM -bNW -bFx -bFx +agR +ahw +aik +aja +ajP +akM +alH +amE +anB +aoO +apW +ark +asE +aup +avK +avK +avK +avK +aBT +aDP +aFM +aHN +aJk +azb +azb +aOy +aQd +azb +aTo +aPU +axP +aLc +aYK +baa +bbi +bcH +bdZ +aZW +bgJ +bii +bdV +bdV +bmf +bdV +bdV +bqk +bqk +bqk +bqk +bva +bwd +bxw +bxw +bxw +bxw +bxw +bxw +bxw +bEB +bFv +bGG +bHS +bIK +bFv +bFv +bFv +bMg +bMK +bMK +bNU +bFv +bFv bPO -bMl +bMj bPJ bQp -bMl +bMj bSv bSw bSw @@ -98506,7 +99509,7 @@ bPJ bVg bVg bSu -bMl +bMj bWD bUz bUz @@ -98514,18 +99517,18 @@ bUz bUz bUz bUz -bZj +bZl bPJ -bMl +bMj bQp -bMl -bMl -bMl -bMl +bMj +bMj +bMj +bMj bQp bPO -cdj -bMl +ccX +bMj aaa aab aab @@ -98672,89 +99675,89 @@ acl aah aah aaV -adY -aeD -afd -afd -afd -afd -afd -afd -afd -ajc -ajc +adZ +aeE +afe +afe +afe +afe +afe +afe +afe ajb ajb -ajb -ajb -aoR -apZ -ajb -asH -aup -avO -axB -azc -aAB +aja +aja +aja +aja +aoP +apX +aja +asF +aun +avM +axz +aza +aAz +aBU aBW -aBY -aFP -aFM -aJn -azd -aFM -aOB -aQg -azd -aTr -aPW -awe -aLe -aYS -bad -bad -bad -bec -aZY -bgM -bil -bjB -bkI -bmi -bnN -boZ -bqn -bro -bsI -btR -bvc -bwf -bxz -byF -bzO -bAO -bBH -bBH -bxz -bED -bFx -bFx -bFx -bFx -bFx -bKF -bLs -bMj -bMN -bMN -bMN -bMN -bMN +aFN +aFK +aJl +azb +aFK +aOz +aQe +azb +aTp +aPU +awc +aLc +aYQ +bab +bab +bab +bea +aZW +bgK +bij +bjz +bkG +bmg +bnL +boX +bql +brm +bsG +btP +bvb +bwe +bxy +byE +bzM +bAM +bBF +bBF +bxy +bEB +bFv +bFv +bFv +bFv +bFv +bKD +bLq +bMh +bML +bML +bML +bML +bML bPQ bPJ bPJ bPJ -bMl +bMj bSw bSw bSw @@ -98763,26 +99766,26 @@ bPJ bVg bVg bPJ -bMl +bMj bWE -bMN -bMN -bMN -bYg -bMN -bMN -bZk -bMN -bMN -bMN -bMN -bMN -bMN -bMN -bMN +bML +bML +bML +bYh +bML +bML +bZm +bML +bML +bML +bML +bML +bML +bML +bML bPQ -bMk -bMl +bMi +bMj aab aab aab @@ -98929,89 +99932,89 @@ acx aah abU aaV -adZ -aeE -afd -afB -afB -agv -afB -ahy -aim -ajd -ajR -akO -afd -amH +aea +aeF +afe +afC +afC +cgH +afC +ahx +ail +ajc +ajQ +akN +afe +amF abC abR -aqa -arn -asE -auq -avQ -axC -azd -aAD -aBX -aDS -aFQ -aHQ -aJo -aHQ -aMO -aHQ -aQh -aHQ -aTs -aPW -aWe -aXA -aYT -bae -bbl -bcK -bed -aZY -bgN -bim -bjC -bkJ -bmj -bnO -bpa +apY +arl +asC +auo +avO +axA +azb +aAB +aBV +aDQ +aFO +aHO +aJm +aHO +aMM +aHO +aQf +aHO +aTq +aPU +aWc +aXy +aYR +bac +bbj +bcI +beb +aZW +bgL +bik +bjA +bkH +bmh +bnM +boY +bqm +brn bqo -brp -bqq btS -bvd -bwg -bxz -byG -bzP -bAP -bBI -bCI -bxz -bEE -bFD -bES -bES -bES -bES -bKG -biN -bMk -bMk -bNs -bNX -bMl -bMl -bMl -bMl -bMl +bvc +bwf +bxy +chW +bzN +bAN +bBG +bCG +bxy +bEC +bFB +bEQ +bEQ +bEQ +bEQ +bKE +biL +bMi +bMi +bNq +bNV +bMj +bMj +bMj +bMj +bMj bRy -bMl +bMj bSw bSw bSw @@ -99020,26 +100023,26 @@ bPJ bVg bVg bPJ -bMl +bMj bPJ bWR bQQ bWA -bMl -bMl -bMl -bMl -bMl -bMl -bMl -bMl -bMl -bMl -bMl -bMl -bMl -bMl -bMl +bMj +bMj +bMj +bMj +bMj +bMj +bMj +bMj +bMj +bMj +bMj +bMj +bMj +bMj +bMj aab aab aaa @@ -99187,88 +100190,88 @@ aah aaA aaV abC -aeE +aeF +aff +afD +afX +agv +agS +ahy +aim +ajd +ajQ +akO afe -afC -afW -agw -agT -ahz -ain -aje -ajR -akP -afd -amI -anE +amG +anC abC -aqb -aro -asI -aup -avO -axE -azf -aAB -aBY +apZ +arm +asG +aun +avM +axC azd -aDR -aHR -aJp -azd -aDR -aOC -aQi -azd -aTt -aPW -axR -aLe -aYU -baf -bbm -bcL -bee -aZY -bgO -bin -bjD -bkK -bmk -bjD -bpb -bqp -brq -bsJ -btT -bve -bwh -bxz -bxz -bzQ -bxz -bBJ -bxz -bxz -bEF -bFE -bEF -bEF -bEF -bEF -bKH -biN -bMl -bMl -bMl -bMl -bMl +aAz +aBW +azb +aDP +aHP +aJn +azb +aDP +aOA +aQg +azb +aTr +aPU +axP +aLc +aYS +bad +bbk +bcJ +bec +aZW +bgM +bil +bjB +bkI +bmi +bjB +boZ +bqn +bro +bsH +btR +bvd +bwg +bxy +bxy +bzO +bxy +bBH +bxy +bxy +bED +bFC +bED +bED +bED +bED +bKF +biL +bMj +bMj +bMj +bMj +bMj aab aaa aaa -bMl +bMj bPJ -bMl +bMj bSu bSw bSv @@ -99277,12 +100280,12 @@ bSu bSw bSw bPJ -bMl +bMj bPJ -bMl -bMl -bMl -bMl +bMj +bMj +bMj +bMj aaa aaa aab @@ -99441,102 +100444,102 @@ aah aah aah aah -adc +add aaV -aea -aeE -afd +aeb +aeF +afe +afE afD -afC -afC -agU -ahA -agw -ajf -ajS -akQ -alK -amJ -anF -aoS -aqc -arp -asJ -aus -avM -avM -avM -avM -aBZ -aDT -aBZ -avM -aBZ -aKZ -aBZ -avM -aBZ -aRM -aBZ -aPW -axR -aLe -aCl -bag -bbn -bcM -bef -bfw -bgP -bio -bjE -bkL -bml -bnP -bpc -bqq -brr -bsK -btR -bvf -bwe -bxA -byH -bzR -bAQ -bBK -bCJ -bDD -bEG -bFF -bGJ -bHV -bIN -bEF -bKH -bom -biN -bMO -bNt -biN +afD +agT +ahz +agv +aje +cgI +ajR +alI +amH +anD +aoQ +aqa +arn +asH +auq +avK +avK +avK +avK +aBX +aDR +aBX +avK +aBX +aKX +aBX +avK +aBX +aRK +aBX +aPU +axP +aLc +aCj +bae +bbl +bcK +bed +bfu +bgN +bim +bjC +bkJ +bmj +bnN +bpa +bqo +brp +bsI +btP +bve +bwd +bxz +byF +bzP +bAO +bBI +bCH +bDB +bEE +bFD +bGH +bHT +bIL +bED +bKF +bok +biL +bMM +bNr +biL aab aab aab aaa -bMl +bMj bRz -bMl +bMj bSu bSu bTG -bMl +bMj bPJ bPJ bPJ bSu -bMl +bMj bRy -bMl +bMj aaa aaa aaa @@ -99701,99 +100704,99 @@ acl aaD aaV aaV -aeF -afd -afd -afX -afC -afX -afd -aio -afd -afd -afd -afd -amK -anG -aoT -aqd +aeG +afe +afe +afY +afD +afY +afe +ain +afe +afe +afe +afe +cgK +anE +aoR +aqb aaV -asK -aum -avR -axF -azg -avM -aCa -azd -aFR -avM -aJq -azd -aMP -avM -aCa -azd -aTu -aPW -axR -aLe -aYQ -bah -bbo -bcN -beg -bfx -bgQ -bip -bjF -bkM -bmm -bnQ -bpd -bqq -bqq -bsL +asI +auk +avP +axD +aze +avK +aBY +azb +aFP +avK +aJo +azb +aMN +avK +aBY +azb +aTs +aPU +axP +aLc +aYO +baf +bbm +bcL +bee +bfv +bgO +bin +bjD +bkK +bmk +bnO +bpb +bqo +bqo +bsJ btS -bvg -bwi -bwi -byI -bzS -bAR -bBL -bCK -bDE -bEH -bFG -bGK -bHW -bIO +bvf +bwh +bwh +byG +bzQ +bAP +bBJ +bCI +bDC bEF -bKI -bLt -bMm -bom -bNu -biN +bFE +bGI +bHU +bIM +bED +bKG +bLr +bMk +bok +bNs +biL aab aab aab aaa -bMl +bMj bPJ -bMl -bMl +bMj +bMj bTj -bMl -bMl +bMj +bMj bSu bPJ bPJ bPJ -bMl +bMj bPJ -bMl +bMj aaa aaa aaa @@ -99957,100 +100960,100 @@ abI aad aad aad -aeb -aeG +aec +aeH aah -afd -afB +afe afC -afB -afd -aip -ajg -ajT -akR -alL -amL -anH -aoT -aqe -arq -adO -aum -avR -axG -azh -avM -aCb -aDU -aFS -avM -aCb -aDU -aMQ -avM -aCb -aDU -aTv -aPW -aJu -aLe -aCl -bai -bbp -bcO -beh -baj -bgR -baj -baj -bkN -bmn -bnR -bpe -bqr -brs -bsM -bjD -bvh -bwj -btW -byJ -bvh -bwj -baf -bCL -bDF -bEI -bFH -bGL -bHX -bIP -bEF -bom -bKH -biN -bMP -bNv -biN +afD +afC +afe +aio +ajf +ajS +akP +alJ +amJ +anF +aoR +aqc +aro +adP +auk +avP +axE +azf +avK +aBZ +aDS +aFQ +avK +aBZ +aDS +aMO +avK +aBZ +aDS +aTt +aPU +aJs +aLc +aCj +bag +bbn +bcM +bef +bah +bgP +bah +bah +bkL +bml +bnP +bpc +bqp +brq +bsK +bjB +bvg +bwi +btV +byH +bvg +bwi +bad +bCJ +bDD +bEG +bFF +bGJ +bHV +bIN +bED +bok +bKF +biL +bMN +bNt +biL aab aab aaa aaa -bMl +bMj bPJ -bMl +bMj bSx bPJ bTH -bMl -bMl -bMl -bMl +bMj +bMj +bMj +bMj bTj -bMl +bMj bPJ -bMl +bMj aaa aaa aab @@ -100212,91 +101215,91 @@ abX acm acy acS -add -add +ade +ade acl -aeH -aff -afd -afY +aeI +afg +afe +cgG +afD afC -afB -afd -aiq -ajh -ajU -akS -alM -amM +afe +aip +ajg +ajT +akQ +alK +amK abC -aoU -aqf -arr -adO -aum -avS -axH -azi -avM -aCc -aDV -aCc -avM -aCc -aLa -aCc -avM -aCc -aRN -aCc -aPW -aWf -aLe -aYQ -baj -bbq -bcP -bei -bfy -bgS -biq -bjG -bkO -bmo -bnR -bpf -bqs -bjD -bjC -baf -bvi -bwk -bwn -byK -bzT -bAS -bBM -bCM -bDG -bEJ -bFI -bGM -bGM -bIQ -bEJ -bEJ -bKH -biN -biN -biN -biN -biN -biN +aoS +aqd +arp +adP +auk +avQ +axF +azg +avK +aCa +aDT +aCa +avK +aCa +aKY +aCa +avK +aCa +aRL +aCa +aPU +aWd +aLc +aYO +bah +bbo +bcN +beg +bfw +bgQ +bio +bjE +bkM +bmm +bnP +bpd +bqq +bjB +bjA +bad +bvh +bwj +bwm +byI +bzR +bAQ +bBK +bCK +bDE +bEH +chJ +chK +chK +chN +bEH +bEH +bKF +biL +biL +biL +biL +biL +biL aaa aaa -bMl +bMj bPJ -bMl +bMj bPJ bPJ bTI @@ -100305,9 +101308,9 @@ bUk bUk bVD bSu -bMl +bMj bPJ -bMl +bMj aab aab aab @@ -100469,91 +101472,91 @@ abY acn abI acT -ade -adz -aec -aeI -afg -afd -afB -agx -afB -afd -air -aji -ajV -akT -alN -amN -anI -aoV -aqg -ars -asL -aut -avT -avT -avT -aAE -aCd -aDW -aFT -aHS -aCd -aDW -aMR -aOD -aQj -aRO -aTw -aUG -aWg -aLe -aYM -bag -bbr -bcQ -bej -bcN -bgT -bir -bjH -bkP -bmp -bnS -bnX -bqt -brt -bsN -baf -bvj -bwl -bxB -byL -bzU -bAT -baf -bCN -bDH -bEK -bFJ -bGN -bHY -bIR -bJE -bEJ -bKH -biN -bMQ -bNw -bNY -bOO -biN +adf +adA +aed +aeJ +afh +afe +afC +agw +afC +afe +aiq +ajh +cgJ +akR +alL +amL +anG +cgL +aqe +arq +asJ +aur +avR +avR +avR +aAC +aCb +aDU +aFR +aHQ +aCb +aDU +aMP +aOB +aQh +aRM +aTu +aUE +aWe +aLc +aYK +bae +bbp +bcO +beh +bcL +bgR +bip +bjF +bkN +bmn +bnQ +bnV +bqr +brr +bsL +bad +bvi +bwk +bxA +byJ +bzS +bAR +bad +bCL +bDF +chH +bFH +bGL +bHW +bIP +bJC +bEH +bKF +biL +bMO +bNu +bNW +chP +biL aab aab -bMl +bMj bPJ -bMl +bMj bPJ bSu bSu @@ -100562,9 +101565,9 @@ bPJ bSu bSu bSu -bMl +bMj bPJ -bMl +bMj aab aab aab @@ -100726,91 +101729,91 @@ abZ aco abI acU -adf -adA -aed -aeJ -afh -afd -afd -afd -afd -afd -ais -ais -ais -ais -ais +adg +adB +aee +aeK +afi +afe +afe +afe +afe +afe +air +air +air +air +air aaV aaV aaV aaV aaV -asM -auu -avU +asK +aus +avS abD abD -aAF +aAD abD -aDX -aFU -aHT +aDV +aFS +aHR abC abD -aMS -aOE -aQk +aMQ +aOC +aQi abD -aTx -aUG -aWg -aLe -aYQ -bah -bbs -bcR -bek -bfz -bgU -bbs -bjI -bkQ -bmq -bnT -bpg -bqu -bru -bsO -btU -bvk -bwm -bxC -byM -bzV -bwm -bBN -bCO -bDH -bEL -bFK -bGO -bHZ -bGO -bJF +aTv +aUE +aWe +aLc +aYO +baf +bbq +bcP +bei +bfx +bgS +bbq +bjG +bkO +bmo +bnR +bpe +bqs +brs +bsM +btT +bvj +bwl +bxB +byK +bzT +bwl +bBL +bCM +bDF bEJ -bKH -biN -bJN -bNx -bNZ -bNZ -biN +bFI +bGM +bHX +bGM +bJD +bEH +bKF +biL +bJL +bNv +bNX +bNX +biL aab aaa -bMl +bMj bPJ -bMl +bMj bPJ bPJ bTJ @@ -100819,9 +101822,9 @@ bUI bVh bVE bUk -bMl +bMj bPJ -bMl +bMj aab aaa aaa @@ -100983,16 +101986,16 @@ abI acp abI aah -adg +adh aah -aee -aeK -afi +aef +aeL +afj aad aah -agy -agV -aei +agx +agU +aej aah aah aah @@ -101003,82 +102006,82 @@ aah aah aah aaV -asN -asN -asN -asN -asN -asN -asN -asN -aFV -asN -aJr -aLb -aMT -ahs -ahs -ahs -ahs -ahs -aWh -aXB -aYV -bak -bbt -bcS -bel -bfA -bgV -bis -bjJ -bkR -bmr -bnU -bph -bqv -bqv -bsP -btV -bvl -bwn -bwn -byN -bzW -bAU -baf -bCN -bDI -bEL -bFL -bGP -bIa -bIS -bJG +asL +asL +asL +asL +asL +asL +asL +asL +aFT +asL +aJp +aKZ +aMR +ahr +ahr +ahr +ahr +ahr +aWf +aXz +aYT +bai +bbr +bcQ +bej +bfy +bgT +biq +bjH +bkP +bmp +bnS +bpf +bqt +bqt +bsN +btU +bvk +bwm +bwm +byL +bzU +bAS +bad +bCL +bDG bEJ -bKH -bMn -bMR -bNy -bOa -bOP -biN +bFJ +bGN +bHY +bIQ +bJE +bEH +bKF +bMl +bMP +bNw +bNY +bOO +biL aab aaa -bMl +bMj bPJ -bMl +bMj bSy bTk bTK -bMl -bMl -bMl -bMl -bMl -bMl +bMj +bMj +bMj +bMj +bMj +bMj bPJ -bMl +bMj aab aab aaa @@ -101242,100 +102245,100 @@ aad aad aad aad -aef +aeg aad aad aad afZ -agz -agz -ahB -agz -agz -agz -agz -agz -agz -agz -agz -agz -art -asN -auv -avV -axI -azj -avV -aCe -aDY -aFW -asN -aJs +agy +agy +ahA +agy +agy +agy +agy +agy +agy +agy +agy +agy +arr +asL +aut +cgM +axG +azh +cgM +aCc +aDW +aFU +asL +aJq +aLa +aMS +aOD +aNf +aRN +axP +axP +aWg aLc -aMU -aOF -aNh -aRP -axR -axR -aWi -aLe -aYQ -bal -bbu -bcT -bem -bfB -bgW -bit -bjK -bkS -bms -bnV -bpi -bqw -brv -bsQ -btW -bvm -bwo -bxD -byO -bzX -bAV -bBO -bCN -bDH -bEL -bFM -bGQ -bIb -bGQ -bJH +aYO +baj +bbs +bcR +bek +bfz +bgU +bir +bjI +bkQ +bmq +bnT +bpg +bqu +brt +bsO +btV +bvl +bwn +bxC +byM +bzV +bAT +bBM +bCL +bDF bEJ -bKH -biN -bJN -bNz -bOb -bOb -biN +bFK +bGO +bHZ +bGO +bJF +bEH +bKF +biL +bJL +bNx +bNZ +bNZ +biL aaa aaa -bMl +bMj bRA -bMl -bMl -bMl -bMl -bMl +bMj +bMj +bMj +bMj +bMj bRA bPJ bPJ bPJ bPJ bPJ -bMl +bMj aab aab aaa @@ -101497,89 +102500,89 @@ abG acr acz aaT -adh -adB -aeg -aeL -afj -afj +adi +adC +aeh +aeM +afk +afk aga aad -aeN -aeN -aeN -aeN -aeN -aeN -aeN -aeN -aeN -aeN +aeO +aeO +aeO +aeO +aeO +aeO +aeO +aeO +aeO +aeO aad -aru -asN -auv -avW -axJ -azk -avW -aCf -aDZ -aFW -asN -aJt -aLd -aMV -aOG -aOG -aOG -aOG -aOG -aOG -aXC -aYW -bam -bbv -bcU -ben -bfC -bgX -biu -baj -bkT -bmt -bnW -bpj -bqx -brw -bsR -brA -brA -brA -brA -brA -brA -brA -baf -bCP -bDJ -bEL -bFN -bGO -bIc -bIT -bJI +ars +asL +aut +avU +axH +azi +avU +aCd +aDX +aFU +asL +aJr +aLb +aMT +aOE +aOE +aOE +aOE +aOE +aOE +aXA +aYU +bak +bbt +bcS +bel +bfA +bgV +bis +bah +cgY +bmr +bnU +bph +bqv +bru +bsP +bry +bry +bry +bry +bry +bry +bry +bad +bCN +bDH bEJ -bKH -biN -bMS -bNw -bOc -bOQ -biN +bFL +bGM +bIa +bIR +bJG +bEH +bKF +biL +bMQ +bNu +bOa +chQ +biL aab aab -bMl +bMj bPJ bPJ bPJ @@ -101587,12 +102590,12 @@ bPJ bPJ bRz bPJ -bMl -bMl -bMl -bMl -bMl -bMl +bMj +bMj +bMj +bMj +bMj +bMj aab aab aaa @@ -101756,95 +102759,95 @@ acA acV acA aad -aeh -aeM -afk -afE +aei +aeN +afl +afF agb aad -adH -adH -ahC -ajj -ajW -ajW -adH -ahC -ahC -adH +adI +adI +ahB +aji +ajV +ajV +adI +ahB +ahB +adI aad -aru -asN -auw -avX -axK -azl -avX -aCg -aEa -aFX -asN -axR -aLe -aMW -azq -axR -axR -axR -aUH -axR -aXD -aYX -ban -bbw -bcV -beo -bfD -bgY -biv -bjL -bkU -bmu -bnX -bpk -bqx -brx -bsS -btX -bvn -bwp -bxE -byP -bzY -bAW -bBP -bCQ -bDH -bEM -bFO -bGO -bId -bIU -bJJ -bEJ -bKH -biN -bMn -biN -biN -biN -biN +ars +asL +auu +avV +axI +azj +avV +aCe +aDY +aFV +asL +axP +aLc +aMU +azo +axP +axP +axP +aUF +axP +aXB +aYV +bal +bbu +bcT +bem +bfB +bgW +bit +bjJ +bkS +bms +bnV +bpi +bqv +brv +bsQ +btW +bvm +bwo +bxD +byN +bzW +bAU +bBN +bCO +bDF +bEK +bFM +bGM +bIb +bIS +bJH +bEH +bKF +biL +bMl +biL +biL +biL +biL aab aab -bMl -bMl -bMl -bMl -bMl -bMl -bMl -bMl -bMl +bMj +bMj +bMj +bMj +bMj +bMj +bMj +bMj +bMj aab aab aab @@ -102011,7 +103014,7 @@ aaa aad acB aah -adi +adj aad abG aad @@ -102019,77 +103022,77 @@ aad aad abG aad -agW -ahC -ait -ajk +agV +ahB +ais ajj -akU -adH -adH -aem -aem +aji +akS +adI +adI +aen +aen aad -aru -asN -aux -avY -axL -azm -aAG -aCh -aEb -aFY -asN -axR -aLe -axR -aOH -aQl -aRQ -aRQ -aRQ -aWj -aOH -aYY -baj -bbx -bcW -bep -baj -bgZ -biw -bjM -bkV -bmv -bnY -bpl -bjM -bry -bsT -btY -bvo -bwq -btY -byQ -bzZ -bAX -bBQ -bCR -bDK -bEN -bFP -bGR -bIe -bIV -bJK -bEJ -bKH -biN -bMT -bNA -bli -biN +ars +asL +auv +avW +axJ +azk +aAE +aCf +aDZ +aFW +asL +axP +aLc +axP +aOF +aQj +aRO +aRO +aRO +aWh +aOF +aYW +bah +bbv +bcU +ben +bah +bgX +biu +bjK +bkT +bmt +bnW +bpj +bjK +brw +bsR +btX +bvn +bwp +btX +byO +bzX +bAV +bBO +bCP +bDI +bEL +bFN +bGP +bIc +bIT +chO +bEH +bKF +biL +bMR +bNy +blg +biL aab aab aab @@ -102268,85 +103271,85 @@ aaa aad acC acW -adj +adk aad -aei +aej aad aaa aad -aei +aej aad -agX -adH -aiu -aem -ajX -aiw -alO -ajj -adH -aoW +agW +adI +ait +aen +ajW +aiv +alM +aji +adI +aoU aad -aru -asN -auy -avZ -axM -avY -avY -aCi -aEc -aFZ -asN -aJu -aLe -aMX -aOH -aQm -aRR -aRR -aRR -aWk -aOH -aYZ -baj -bby -bcX -beq -bfE -bha -bix -bjN -bkW -bmw -bnZ -bpm -bjM -brz -bsU -btY -bvp -bwr -bxF -byR -bAa -bAY -bBR -bCS -bDL -bEO -bFQ -bGS -bIf -bIW -bJL -bEJ -bKH -biN -bMU -bNB -bOd -biN +ars +asL +auw +avX +axK +avW +avW +aCg +aEa +aFX +asL +aJs +aLc +aMV +aOF +cgO +cgP +cgP +cgP +cgU +aOF +aYX +bah +bbw +bcV +beo +bfC +bgY +biv +bjL +bkU +bmu +bnX +bpk +bjK +brx +bsS +btX +bvo +bwq +bxE +byP +bzY +bAW +bBP +bCQ +bDJ +chI +bFO +bGQ +chM +bIU +bJJ +bEH +bKF +biL +bMS +bNz +bOb +biL aab aab aab @@ -102532,78 +103535,78 @@ aad aad aad aah -agA -adH -adH -aem -ajl -aem -aem -alP -amO -adH -ajX +agz +adI +adI +aen +ajk +aen +aen +alN +amM +adI +ajW aad -arv -asN -auz -awa -axN -azn -aAH -aCj -aEd -aGa -asN -axR -aLf -aMY -aOH -aQn -aQn -aQn -aUI -aWl -aOH -aZa -baj -bbz -bcY -ber -bfF -bhb -biy -bjM -bkX -bmx -boa -bpn -bjM -brA -bsV -btZ -bvq -bws -brA -bvq -bws -brA -bBS -bCT -bxx -bEJ -bEJ -bEJ -bEJ -bEJ -bEJ -bEJ -bKH -biN -biN -bom -bOe -biN +art +asL +aux +avY +axL +azl +aAF +aCh +aEb +aFY +asL +axP +aLd +aMW +aOF +aQl +aQl +aQl +aUG +aWj +aOF +aYY +bah +bbx +bcW +bep +bfD +bgZ +biw +bjK +bkV +bmv +bnY +bpl +bjK +bry +bsT +btY +bvp +bwr +bry +bvp +bwr +bry +bBQ +bCR +bxw +bEH +bEH +bEH +bEH +bEH +bEH +bEH +bKF +biL +biL +bok +bOc +biL bPg bPR bQq @@ -102790,76 +103793,76 @@ aah aah aah aad -ado -adH -ahC -ahC -ajY -akV -alO -ajW -adH -aoX +adp +adI +ahB +ahB +ajX +akT +alM +ajV +adI +aoV aad -arw -asN -asN -awb -axO -axO -aAI -aCk -asN -aGb -asN -aJv -aLg -aMZ -aOI -aQo -aQo -aTy +aru +asL +asL +avZ +axM +axM +aAG +aCi +asL +aFZ +asL +aJt +aLe +aMX +aOG aUJ -aWm -aOH -aZa -baj -bbA -bcZ -bes -baj -bhc -biz -bjO -bkY -bmy -bob -bpo -bqy -brB -bsW -bua -bvr -bwt -bxG -byS -bAb -bAZ -bBT -bCU -bDM -bEP -bFR -bGT -bIg -bIX -bJM -bJM -bLu -bMo -bJN -bom -bOf +aUJ +cgR +aUH +aWk +aOF +aYY +bah +bby +bcX +beq +bah +bha +bix +bjM +bkW +bmw +bnZ +bpm +bqw +brz +bsU +btZ +bvq +bws +bxF +byQ +bzZ +bAX +bBR +bCS +bDK +bEN +bFP +bGR +bIe +bIV +bJK +bJK +bLs +bMm +bJL +bok +bOd bOR bPh bPS @@ -103047,77 +104050,77 @@ aad aad aad aad -aeN -aeN -aiv -ajm -aiv -akW -alQ -amP -anJ +aeO +aeO +aiu +ajl +aiu +akU +alO +amN +anH aad aad -arv +art aah -auA -awc +auy +awa +axN +azm +aAH +aCj +aEc axP -azo -aAJ -aCl -aEe -axR -aHU -axR -aLe -aNa -aOJ -aQp -aRS -aTz -aUK -aWn +aHS +axP +aLc +aMY aOH -aZa -baj -bbB -bda -bet -bfG -bhd -biA -bjP -bkZ -bmz -boc -bpp -bqz -brC -bsX -bub -bvs -bvs -bvs -bvs -bvs -bBa -bBU -bCV -bDM -bEQ -bFS -bDM -bIh -biN -biN -biN -biN -bMp -biN -biN -biN -biN +aQn +aRQ +aTx +aUI +aWl +aOF +aYY +bah +bbz +bcY +ber +bfE +bhb +biy +bjN +bkX +bmx +boa +bpn +bqx +brA +bsV +bua +bvr +bvr +bvr +bvr +bvr +bAY +bBS +bCT +bDK +bEO +bFQ +bDK +bIf +biL +biL +biL +biL +bMn +biL +biL +biL +biL bPi bPR bQq @@ -103296,82 +104299,82 @@ aaa aad aah aad -adk -adC -adk -aeN -afl -aek +adl +adD +adl +aeO +afm +ael agc -aek -adH -ahD -adk -aem -aem -adk -aem -amQ -adH +ael +adI +ahC +adl +aen +aen +adl +aen +amO +adI aad aav -arx -asO -auB -awd -axQ -azp -aAK -aCm -awd -awd -aHV -awd -aLh -aNb -aOK -aQq -aRT -aTA +arv +asM +auz +awb +axO +azn +aAI +aCk +awb +awb +aHT +awb +aLf +aMZ +aOI aQo -aWo -aOH -aZb -baj -bbC -bdb -bet -bfF -bhe -biB -bjQ -bjQ -bmA -bmA -bmA -bjQ -brD -bsY -buc -buc -buc -buc -buc -buc -buc -bBV -bCW -bDN -bER -bFT -bDM -bED -biN -bJN -bKJ -bJN -bMq -biN +aRR +aTy +aUJ +aWm +aOF +aYZ +bah +bbA +bcZ +ber +bfD +bhc +biz +boj +boj +chc +chc +chc +boj +brB +bsW +bub +bub +bub +bub +bub +bub +bub +chx +bCU +bDL +bEP +bFR +bDK +bEB +biL +bJL +bKH +bJL +bMo +biL aab aab aab @@ -103553,82 +104556,82 @@ aaa aad aah aad +adm adl -adk -adk -aeO -afm -afF +adl +aeP +afn +afG agd -afF -agY -ahE -adk -adk -aem -akX -alR -amR -anK -aoY -aqh -ary -asP -auA -awe -axR -azq -aAL -aCn -aEf -aGc -aHU -axR -aLi -aNc -aOL -aQr -aRU -aTB -aQo -aQo -aXE -aZa -baj -bbD -bdb -beu -bfH -bhf -biC -bjR -bla -bmB -bod -bpq -bqA -brE -bsZ -bud -bvt -bvt -bvt -bvt -bvt +afG +agX +ahD +adl +adl +aen +akV +alP +amP +anI +aoW +aqf +arw +asN +auy +awc +axP +azo +aAJ +aCl +aEd +aGa +aHS +axP +aLg +aNa +aOJ +aQp +aRS +aTz +aUJ +aUJ +aXC +aYY +bah +bbB +bcZ +bes +bfF +bhd +biA +cgX +cgZ +chd +chd +chd +chp +cht +chu buc -bBW -bxx -bDM -bDM -bDM -bDM -bED -biN -bJN -bJN -bom -bMq -biN +bvs +bvs +bvs +bvs +bvs +bub +chy +bxw +bDK +bDK +bDK +bDK +bEB +biL +bJL +bJL +bok +bMo +biL aab aab aab @@ -103810,82 +104813,82 @@ aaa aad aah aad -adm -adk -aej -aeN +adn adl -afF +aek +aeO +adm +afG age -afF -aek -ahF -aem -adk -adH -adH -alS -aek -aek +afG +ael +ahE +aen +adl +adI +adI +alQ +ael +ael aad aae aah abK -auA -auA -auA -auA -auA -auA -auA -auA -auA -aJw -aLi -aNc -aOL -aQs -aRV -aTC -aUL -aWp -aOH -aZc -baj -bbE -bdb -bdb -bfI -bhg -biD -bjS -blb -bmC -boe -bpr -bqB -brF -bta -bue -bvt -bvt -bvt -bvt -bvt -bBb -bBX -bCX -bDO -bES -bES -bES -bIi -biN -bJO -bKK -bLv -bMr -biN +auy +auy +auy +auy +auy +auy +auy +auy +auy +aJu +aLg +aNa +aOJ +aQq +aRT +aTA +aUK +cgV +aOF +aZa +bah +bbC +bcZ +bcZ +bfG +bhe +biB +boj +cha +che +chd +chn +chq +brD +bsY +bud +bvs +bvs +bvs +bvs +bvs +bAZ +chz +bCV +bDM +bEQ +bEQ +bEQ +bIg +biL +bJM +bKI +bLt +bMp +biL aab aab aab @@ -104067,26 +105070,26 @@ aaa aad aah aad -adn -adD -aek -aeP -afn -afG +ado +adE +ael +aeQ +afo +afH agf -afF -adH -ahD -adH -aek -aem -aeN -aeN -aeN -aeN +afG +adI +ahC +adI +ael +aen +aeO +aeO +aeO +aeO aad aad -aei +aej aad aaR aab @@ -104096,53 +105099,53 @@ aab aab aab aab -aGd -awe -aLj -aNd -aOH -aOH -aOH -aOH -aOH -aOH -aOH -aZd -baj -bbF -bdb -bev -bfJ -bhg -biE -bjT -blc -bmD -bof -bps -bqC -brG -btb -buf -bvt -bvt -bvt -bvt -bvt -buc -bBY -bCY -bDP -biN -biN -biN -bom -biN -bJN -bKL -bLw -bLv -biN +aGb +awc +aLh +aNb +aOF +aOF +aOF +aOF +aOF +aOF +aOF +aZb +bah +bbD +bcZ +bet +bfH +bhe +biC +boj +chb +chf +chk +cho +chr +brE +bsZ +bue +bvs +bvs +bvs +bvs +bvs +bub +chA +bCW +bDN +biL +biL +biL +bok +biL +bJL +bKJ +bLu +bLt +biL aab aaa aab @@ -104324,20 +105327,20 @@ aaa aad aah aad -ado +adp +adF +adI +aeR adE -adH -aeQ -adD -afH +afI agg -agB -aem -ahG -aiw -aem -ajZ -aeN +agA +aen +ahF +aiv +aen +ajY +aeO aaa aaa aaa @@ -104353,53 +105356,53 @@ aab aab aab aab -aGd -aJx -aLi -aNe -auA +aGb +aJv +aLg +aNc +auy +aQr +aRU +aTB aQt -aRW -aTD -aQv -aWq -aXF -aZa -baj -baj -bdc -baj -bfK -bhh -biF -bfL -bfL -bmE -bog -bog -bog -brH -btc -bug -bvt -bvt -bvt -bvt -bvt -bBc -bom -bom -bmM -biN -bFU -bli -bom -biN -bJN -bKM +aWo +aXD +aYY +bah +bah +bda +bah +bfI +bhf +biD +bfJ +bfJ +bmC +boe +boe +boe +brF +bta +buf +bvs +bvs +bvs +bvs +bvs +bBa +chB +bok +bmK +biL +bFS +blg +bok +biL +bJL +bKK +bLt bLv -bLx -biN +biL aab aaa aaa @@ -104581,20 +105584,20 @@ aaa aad abG aad -ado -adF -ael -aeR -afo -adD -adH -adH +adp +adG aem -ahH -aix -aem -aka -aeN +aeS +afp +adE +adI +adI +aen +ahG +aiw +aen +ajZ +aeO aaa aad aad @@ -104604,59 +105607,59 @@ aav aad aab aab -axS -arM -axS -arM -axS -arM -aGd -aJy -aLk -aHU -auA -aQu -aRX -aTE -aQv -aWr -aXG -aZe -bao -bbG -bdd -bew -bfL -bhi -biG -bjU -bld -bmF -boh -bpt -bqD -brI -btd -buh -bvt -bvt -bvt -bvt -bvt -bBd -bBZ -bom -bDQ -biN -bFV -bFV -bom -biN -bom -bKN +axQ +arK +axQ +arK +axQ +arK +aGb +aJw +aLi +aHS +auy +aQs +aRV +aTC +aQt +aWp +aXE +aZc +bam +bbE +bdb +beu +bfJ +bhg +biE +bjS +blb +chg +bof +bpr +bqB +brG +btb +bug +bvs +bvs +bvs +bvs +bvs +bBb +chC +bok +bDO +biL +bFT +bFT +bok +biL +bok +bKL +bLt bLv -bLx -biN +biL aaa aaa aaa @@ -104838,82 +105841,82 @@ aaa aad aah aad -ado +adp +adH +aen +aeT +ael +ael adG -aem -aeS -aek -aek -adF -aem -adH -ahI -adH -aem -aka -aeN +aen +adI +ahH +adI +aen +ajZ +aeO aaa aad acC aah aad aae -asQ +asO aab -awf -axT -axT -axT -axT -axT -arM -aHW -aJz -aLi -aNf -auA -aQv -aRY -aQv -aQv -aWs -aXH -aXH -aXH -bbH -aXH -bex -bfM -bhj -biH -bjV -ble -bmG -boi -bpu -bqE -brJ -bte -buf -buc -buc -buc -buc -buc -buc -bCa -bom -bmM -biN -bFW -bDT -bom -biN -bJO -bKN -bLv -bMs -biN +awd +axR +axR +axR +axR +axR +arK +aHU +aJx +aLg +aNd +auy +aQt +aRW +aQt +aQt +aWq +aXF +aXF +aXF +bbF +aXF +bev +bfK +bhh +biF +bjT +blc +bmE +bog +bps +bqC +brH +btc +bue +bub +bub +bub +bub +bub +bub +chD +bok +bmK +biL +bFU +bDR +bok +biL +bJM +bKL +bLt +bMq +biL aaa aaa aaa @@ -105095,82 +106098,82 @@ aaa aad aah aad -ado -adH -adH -aeT -adH -aek +adp adI -aek -adH -ahH -adF -aem -akb -aeN +adI +aeU +adI +ael +adJ +ael +adI +ahG +adG +aen +aka +aeO aaa aad -aeW +aeX aah -aqi +aqg abG -asR +asP aab -arM -axT -axT -axT -axT -axT -aGd -aHX -aJz -aLl -aNg -aOM -aQw -aQw -aQw -aQw -aWt -aXI -aZf -bap -bbI -aXH -bey -bfN -bhk -biI -bjW -bjW -bmH -boj -bpv -bqF -brK -btf -bui -bvu -bwu -bxH -byT -bAc -byW -bom -bom -bza -biN -byX -bom -bom -biN -bJP -bKN +arK +axR +axR +axR +axR +axR +aGb +aHV +aJx +aLj +aNe +aOK +aQu +aQu +aQu +aQu +aWr +aXG +aZd +ban +bbG +aXF +bew +bfL +bhi +biG +bjU +bjU +bmF +boh +bpt +bqD +brI +btd +buh +bvt +bwt +bxG +byR +bAa +byU +chE +bok +byY +biL +byV +bok +bok +biL +bJN +bKL +bLt bLv -bLx -biN +biL aaa aaa aaa @@ -105352,82 +106355,82 @@ aaa aad aah aad -adp +adq +adI adH -adG -aeR -adH -afF +aeS +adI +afG agh -afF -adH -ahJ -adF -adm -akb -aeN +afG +adI +ahI +adG +adn +aka +aeO aaa aad -adj +adk acB aad -arz -asR +arx +asP aab -awf -axT -axT -axT -axT -axT -aGd -aHX -aJz -aLm +awd axR -aGd -aGd -aGd -aGd -aGd -aGd -aXJ -aZg -baq -bbJ +axR +axR +axR +axR +aGb +aHV +aJx +aLk +axP +aGb +aGb +aGb +aGb +aGb +aGb aXH -bez -bfO -bfL -biJ -bjX -blf -bmI -bok -bpw -bfL -brJ -btg -buj -bvv -bwv -bvv +aZe +bao +bbH +aXF +bex +bfM +bfJ +biH +bjV +bld +bmG +boi +bpu +bfJ +brH +bte +bui +bvu +bwu +bvu +byS +bAb byU -bAd -byW -biN -biN -bDR -biN -biN -biN -bom -biN -bom -bKN -bLx -bLx -biN +biL +biL +bDP +biL +biL +biL +bok +biL +bok +bKL +bLv +bLv +biL aaa aaa aaa @@ -105609,82 +106612,82 @@ aaa aad aah aad -adq +adr +adJ adI -adH -aeN -aem -afF +aeO +aen +afG agi -afF -agZ -ahK -aem -ajn -aem -aeN +afG +agY +ahJ +aen +ajm +aen +aeO aaa aad aad aad aad aae -asR +asP aab -arM -axT -axT -axT -axT -axT -aGd -aHX -aJz -aLn -aNh -aNh -aQx -aRZ -aTF -aUM -aWu -aOO -aOO -aOO -aOO -aOO -aOO -bfO -bfL -biK -bjY -blg -bmJ -bjY -bpx -bfL -brL -bth -buk -bvw -bww -bxI -bxI +arK +axR +axR +axR +axR +axR +aGb +aHV +aJx +aLl +aNf +aNf +aQv +aRX +aTD +aUL +aWs +aOM +aOM +aOM +aOM +aOM +aOM +bfM +bfJ +biI +bjW +ble +bmH +bjW +bpv +bfJ +brJ +btf +buj +bvv +bwv +bxH +bxH +bAc +bBc +byW bAe -bBe -byY -bAg -bDS -bom -bom -bGU -bom -biN -bom -bKN -bLx -bLx -biN +bDQ +bok +bok +bGS +bok +biL +bok +bKL +bLv +bLv +biL aaa aaa aaa @@ -105868,80 +106871,80 @@ aah aad aad aad -aen +aeo aad -aem -aem -adG -agC -aek -ahL -aem -aem +aen +aen adH -aeN +agB +ael +ahK +aen +aen +adI +aeO aaa aaa aaa aaa aad aae -asS +asQ aab -awf -axT -axT -axT -axT -axT -arM -aHY -aJz -aLo +awd axR axR -aMZ -aSa -aTG -aUN -aWv -aOO -aXM -bar -bbK -bde -aOO -bfO -bfL +axR +axR +axR +arK +aHW +aJx +aLm +axP +axP +aMX +aRY +aTE +aUM +aWt +aOM +aXK +bap +bbI +bdc +aOM +bfM +bfJ +biJ +bjX +blf +bmI +bjX +bpw +bfJ +brK +btg +buk +bvw +bww +bxI +byT +bAd +byU +byY +biL +bDR +biL +biL +biL +bwA +biL +bJM +bKL +bLv +bMq biL -bjZ -blh -bmK -bjZ -bpy -bfL -brM -bti -bul -bvx -bwx -bxJ -byV -bAf -byW -bza -biN -bDT -biN -biN -biN -bwB -biN -bJO -bKN -bLx -bMs -biN aaa aaa aaa @@ -106127,78 +107130,78 @@ aah aah aah aad +aen +afJ +aen aem -afI -aem -ael -agY -aeN -aiy -ahM -aiy -aeN -aeN -aeN -aeN -aeN +agX +aeO +aix +ahL +aix +aeO +aeO +aeO +aeO +aeO aad aae aad aab aab -axU -arM -axU -arM -axU -arM -aGd -aJA -aLp -aNi -aON -aQy -aSb -aTH -aQy -aWw -aXK -aZh -bas -bbL -bdf -aOO -bex -bfL -bfL -bfL -bfL -bfL -bfL -bfL -bfL -brN +axS +arK +axS +arK +axS +arK +aGb +aJy +aLn +aNg +aOL +aQw +aRZ +aTF +aQw +aWu +aXI +aZf +baq +bbJ +bdd +aOM +bev +bfJ +bfJ +bfJ +bfJ +bfJ +bfJ +bfJ +bfJ +brL +bth +bth +bvx btj btj -bvy -btl -btl -byW -byW -byW -bCb -bom -bli -biN +byU +byU +byU +bBZ +bok +blg +biL aab -biN -bom -biN -bom -bKN -bLx -bLx -biN +biL +bok +biL +bok +bKL +bLv +bLv +biL aaa aaa aab @@ -106384,20 +107387,20 @@ aad aad aah aad -afp -aem -adF -aem -afm -aeN -aiz -adl -aek +afq +aen +adG +aen +afn +aeO +aiy adm -adm -amS -adH -aoZ +ael +adn +adn +amQ +adI +aoX aad aae aad @@ -106409,53 +107412,53 @@ aab aab aab aab -aGd -aJB -anM -aNj -aOO -aQz -aSc -aTI -aTI -aWx -aOO -aZi -bat -bbM -bdg -aOO -bfP -bhl -biM -biM -biM -bmL -bol -bpz -bqG -brO -btk -bum -bvz -bwy -btl -byX -bom -bom -bza -bom -bom -biN +aGb +aJz +anK +aNh +aOM +aQx +aSa +aTG +aTG +aWv +aOM +aZg +bar +bbK +bde +aOM +bfN +bhj +biK +biK +biK +bmJ +boj +bpx +bqE +brM +bti +bul +bvy +bwx +btj +byV +bok +bok +byY +bok +bok +biL aab -biN -bom -biN -bom -bKN -bLx -bLx -biN +biL +bok +biL +bok +bKL +bLv +bLv +biL aaa aab aab @@ -106640,79 +107643,79 @@ aab aaa aad aah -aeN -aeN -aeN -aeN -aeN -aeN -aeN -aiz -aek -akc -akY -adk -adH -adD -apa +aeO +aeO +aeO +aeO +aeO +aeO +aeO +aiy +ael +akb +akW +adl +adI +adE +aoY aad -arA +ary aad aad aad aad aad -aAM -aAM -aAM -aAM -aAM -aJC -aLq -aNk -aOO -aQA -aSd -aTJ -aUO -aWy -aXL -aXM -bau -bbN -bdh -aOO -bfQ -aQv -biN -biN -bli -bmM -bol -bpA -bqH -brP -btl -bum -bvz -bwz -btl -byY -bAg -bAg -bCc -bll -bll -biN +aAK +aAK +aAK +aAK +aAK +aJA +aLo +aNi +aOM +aQy +aSb +aTH +aUN +aWw +aXJ +aXK +bas +bbL +bdf +aOM +bfO +aQt +biL +biL +blg +bmK +boj +bpy +bqF +brN +btj +bul +bvy +bwy +btj +byW +bAe +bAe +bCa +blj +blj +biL aab -biN -bom -biN -bom -bKN -bLv -bLv -biN +biL +bok +biL +bok +bKL +bLt +bLt +biL aab aab aab @@ -106903,73 +107906,73 @@ aah aah aah aah -ahM -adk -aek -adk -adk -alT -aem -anL -aem +ahL +adl +ael +adl +adl +alR +aen +anJ +aen aad -arB +arz aah aah aah aah abG -aAN -aCo -aEg -aGe -aAM -aJB -anM -aNj -aOO -aQB -aSe -aSe -aUP -aSe -aSe -aZj -bav -bav -bdi -aOO -bfR -bdu -aWq -biN -blj -bmM -bol -bpB -bqI -brQ -btm -bun -bvA -bwA -btl -byZ -biN -biN -biN -biN -biN -biN +aAL +aCm +aEe +aGc +aAK +aJz +anK +aNh +aOM +aQz +aSc +aSc +aUO +aSc +aSc +aZh +bat +bat +bdg +aOM +bfP +bds +aWo +biL +blh +bmK +boj +bpz +bqG +brO +btk +bum +bvz +bwz +btj +byX +biL +biL +biL +biL +biL +biL aab -biN -bom -biN -bJO -bKN -bLv -bMt -biN +biL +bok +biL +bJM +bKL +bLt +bMr +biL aab aab aaa @@ -107160,15 +108163,15 @@ aad aad aad aad -aeN -aiA -adD -aek -akZ -agY +aeO aiz -adH -aem +adE +ael +akX +agX +aiy +adI +aen aad aad aad @@ -107176,57 +108179,57 @@ aad aad aad aad -aAM -aCp -aEh -aGf -aAM -aJD -aLr -aNl -aOO -aQC -aSf -aTK -aUQ -aWz -aXM -aXM -aXM -aXM -aXM -beA -bfS -aRX -biO -aQv -blk -bmM -bol -bol -bol -brR -btl -btl -btl -btl -btl -bza -byX -biN +aAK +aCn +aEf +aGd +aAK +aJB +aLp +aNj +aOM +aQA +aSd +aTI +aUP +aWx +aXK +aXK +aXK +aXK +aXK +bey +bfQ +aRV +biM +aQt +bli +bmK +boj +boj +boj +brP +btj +btj +btj +btj +btj +byY +byV +biL aab aab aab aab aab -biN -bom -biN -bom -bKN -bLv -bLv -biN +biL +bok +biL +bok +bKL +bLt +bLt +biL aab aab aaa @@ -107417,73 +108420,73 @@ aaa aaa aaa aaa -aeN -aeN -aeN -aeN -aeN -aeN -aeN -aeN -aeN -aeN +aeO +aeO +aeO +aeO +aeO +aeO +aeO +aeO +aeO +aeO aab aab aab aab aab aab -aAM -aCq -aEh -aGg -aAM -aJE -aLs -aNm -aOP -aQD -aSg -aTL -aUR -aWA -aXN -aZk -baw -bbO -bdj -aOO -bfT -bhm -biP -aQv -bll -bmM -bom -bom -bom -bom -bom -bom -bom -bwB -bom -bmM -bAh +aAK +aCo +aEf +aGe +aAK +aJC +aLq +aNk +aON +aQB +aSe +aTJ +aUQ +aWy +aXL +aZi +bau +bbM +bdh +aOM +bfR +bhk biN +aQt +blj +bmK +bok +bok +bok +bok +bok +bok +bok +bwA +bok +bmK +bAf +biL aab aab aaa aab aab -biN -bom -biN -bom -bKN -bLv -bLv -biN +biL +bok +biL +bok +bKL +bLt +bLt +biL aab aab aaa @@ -107690,57 +108693,57 @@ aab aab aab aab -aAM -aCr -aEi -aGh -aAM -aJF -aEq -aNn -aOO -aOO -aOO -aOO -aOO -aOO -aOO -aOO -aOO -aOO -aOO -aOO -aOS -aOS -biQ -aZw -bll -bmN -biM -biM -biM -biM -biM -biM -bvB -bwC -biM -bzb -bli -biN +aAK +aCp +aEg +aGf +aAK +aJD +aEo +aNl +aOM +aOM +aOM +aOM +aOM +aOM +aOM +aOM +aOM +aOM +aOM +aOM +aOQ +aOQ +biO +aZu +blj +bmL +biK +biK +biK +biK +biK +biK +bvA +bwB +biK +byZ +blg +biL aab aab aab aab aab -biN -bom -biN -bJO -bKN -bLv -bMt -biN +biL +bok +biL +bJM +bKL +bLt +bMr +biL aab aab aab @@ -107947,57 +108950,57 @@ aab aab aab aab -aAM -aCs -aEj -aEj -aAM -aJG -aLt -aNo +aAK +aCq +aEh +aEh +aAK +aJE +aLr +aNm +aOO +aQC +aSf +aTK +aUR +aWz +aXM +aZj +bav +bbN +bdi +bez +bfS aOQ -aQE -aSh -aTM -aUS -aWB -aXO -aZl -bax -bbP -bdk -beB -bfU -aOS -bfQ -aZw -biN -bmO -bon -bon -bqJ -biN -biN -biN -biN -biN -biN -biN -biN -biN +bfO +aZu +biL +bmM +bol +bol +bqH +biL +biL +biL +biL +biL +biL +biL +biL +biL aab aab aaa aab aab -biN -bom -biN -bom -bKN -bLv -bLv -biN +biL +bok +biL +bok +bKL +bLt +bLt +biL aab aab aab @@ -108200,34 +109203,34 @@ aab aab aab aab -auC +auA aab aab aab -aAM -aCt -aEk -aGi -aAM -aJH -aLu -aNp -aOR -aQF -aSi -aTN -aUT -aWC -aXP -aZm -bay -bbQ -bdl -bax -bfV -aOS -bfQ -aZw +aAK +aCr +aEi +aGg +aAK +aJF +aLs +aNn +aOP +aQD +aSg +aTL +aUS +aWA +aXN +aZk +baw +bbO +bdj +bav +bfT +aOQ +bfO +aZu aaa aab aab @@ -108247,14 +109250,14 @@ aab aaa aab aab -biN -bom -biN -bom -bKN -bLv -bLv -biN +biL +bok +biL +bok +bKL +bLt +bLt +biL aaa aab aab @@ -108453,38 +109456,38 @@ aab aab aab aab -anM -aqj -arC -asT -anM -aqj -axV -asT -aAM -aCu -aEl -aGj -aHZ -aJI -aLv -aNq -aOS -aQG -aSj -aTO -aSj -aWD -aXQ -aZn -bax -bax -bax -bax -bax -aOS -biR -aZw +anK +aqh +arA +asR +anK +aqh +axT +asR +aAK +aCs +aEj +aGh +aHX +aJG +aLt +aNo +aOQ +aQE +aSh +aTM +aSh +aWB +aXO +aZl +bav +bav +bav +bav +bav +aOQ +biP +aZu aab aab aab @@ -108504,14 +109507,14 @@ aaa aaa aaa aab -biN -bIj -biN -bom -bKK -bLy -bom -biN +biL +bIh +biL +bok +bKI +bLw +bok +biL aaa aaa aaa @@ -108709,39 +109712,39 @@ aab aab aab aab -anM -anM -aqk -arD -asU -auD -awg -axW -azr -aAM -aAM -aAM -aAM -aAM -aJJ -aLw -aNr -aOQ -aQH -aSk -aQH -aUU -aWE -aXR -aZo -aOQ -bbR -bdm -beC -bfW -bhn -bfQ -aZw +anK +anK +aqi +arB +asS +auB +awe +axU +azp +aAK +aAK +aAK +aAK +aAK +aJH +aLu +aNp +aOO +aQF +aSi +aQF +aUT +aWC +aXP +aZm +aOO +bbP +bdk +beA +bfU +bhl +bfO +aZu aab aab aab @@ -108761,14 +109764,14 @@ aaa aaa aaa aab -biN -biN -biN -biN -biN -biN -biN -biN +biL +biL +biL +biL +biL +biL +biL +biL aaa aaa aaa @@ -108966,39 +109969,39 @@ aab aab aab aab -anM -apb -aql -arE -asV -auE -awh -axX -azs -aAO -aCv -aEm -aGk -aIa -aJK -aLx -aNr -aOT -aQI -aSj -aTP -aUV -aWF -aXS -aZp -aOT -bbS -bdn -beD -bfX -anM -bfQ -aZw +anK +aoZ +aqj +arC +asT +auC +awf +axV +azq +aAM +aCt +aEk +aGi +aHY +aJI +aLv +aNp +aOR +aQG +aSh +aTN +aUU +aWD +aXQ +aZn +aOR +bbQ +bdl +beB +bfV +anK +bfO +aZu aab aab aab @@ -109006,11 +110009,11 @@ aab aab aab aab -anM -anM -anM -anM -anM +anK +anK +anK +anK +anK aaa aaa aaa @@ -109223,58 +110226,58 @@ aab aab aab aab -anN -apc -aqm -aqm -asW -aqm -aqm -aqm -azt -aAP -aCw -aEn -aGl -aIb -aJK -aLy -aNr -aOR -aQH -aSk -aQH -aUW -aWE -aXT -aZq -aOR -bbT -bdo -beE -bfY -anM -bfQ -aZw +anL +apa +aqk +aqk +asU +aqk +aqk +aqk +azr +aAN +aCu +aEl +aGj +aHZ +aJI +aLw +aNp +aOP +aQF +aSi +aQF +aUV +aWC +aXR +aZo +aOP +bbR +bdm +beC +bfW +anK +bfO +aZu aab aab aab aab aab -anM -anM -anM -bvC -bwD -bxK -anM -anM -anM -anM -anM -anM -anM -anM +anK +anK +anK +bvB +bwC +bxJ +anK +anK +anK +anK +anK +anK +anK +anK aaa aaa aaa @@ -109480,68 +110483,68 @@ aab aab aab aab -anO -apd -aqn -arF -asX -asX -awi -axY -azu anM -aCx -aEo -aGm -auD -aJL -aLw -aNs -aOS -aQJ -aSl -aTQ -aOS -aWG -aXU -aWG -aOS -bbU -bdp -anM -anM -anM -biS -anM -blm -bmP -boo -bpC -bqK -anM -anM -buo -bvD -bwE -bxL -bzc -anM -bBf -bBf -bBf -bBf -bET -anM -aZw -aZw -aZw -aZw -aZw -aZw -aZw -aZw -aZw -aZw +apb +aql +arD +asV +asV +awg +axW +azs +anK +aCv +aEm +aGk +auB +aJJ +aLu +aNq +aOQ +aQH +aSj +aTO +aOQ +aWE +aXS +aWE +aOQ +bbS +bdn +anK +anK +anK +biQ +anK +blk +bmN +bom +bpA +bqI +anK +anK +bun +bvC +bwD +bxK +bza +anK +bBd +bBd +bBd +bBd +bER +anK +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu aaa aaa aaa @@ -109737,68 +110740,68 @@ aab aab aab aab -anP -ape -aqn -arG -asY -auF -awj -aqn -azv -anM -aCy -aEp -aGn -aIc +anN +apc +aql +arE +asW +auD +awh +aql +azt +anK +aCw +aEn +aGl +aIa +aJK +aLx +aNr +aOS +aQI +aSk +aSk +aSk +aWF +aXT +aSk +bax +aSk +bdo +beD +bfX +bhm +biR +bjY +bll +aql +bon +aql aJM -aLz -aNt -aOU -aQK -aSm -aSm -aSm -aWH -aXV -aSm -baz -aSm -bdq -beF -bfZ -bho -biT -bka -bln -aqn -bop -aqn -aJO -brS -aqn -aJM -bvE -aEq -aEq -bzd -anM -bBf -bBf -bCZ -bDU -bBf -aZw -bGV -bIk -bIY -bIk -bKO -aRX -aZw -bMV -aRX -aZw +brQ +aql +aJK +bvD +aEo +aEo +bzb +anK +bBd +bBd +bCX +bDS +bBd +aZu +bGT +bIi +bIW +bIi +bKM +aRV +aZu +bMT +aRV +aZu aaa aaa aaa @@ -109993,69 +110996,69 @@ acs aab aab aab -amT -anM -apf -aqo -arH -asZ -auG -awk -axZ -azw -aAQ -aCz -aCz -aCz -aId -aJN -aLA -aNu -aOV -aQL -aSn -aTR -aSn -aWI -aXW -aSn -baA -aQL -bdr -anM -bga -anM -biU -bkb -blo -bmQ -boq -bmQ -bmQ -brT -bmQ -aJI -bvF -bwF -bxM -bze -anM -bBf -bBf -bBf -bDV -bBf -aZw -bGW -bIl -bIZ -bIl -bKP -bBg -bMu -bBg -bNC -aZw +amR +anK +apd +aqm +arF +asX +auE +awi +axX +azu +aAO +aCx +aCx +aCx +aIb +aJL +aLy +aNs +aOT +aQJ +aSl +aTP +aSl +aWG +aXU +aSl +bay +aQJ +bdp +anK +bfY +anK +biS +bjZ +blm +bmO +boo +bmO +bmO +brR +bmO +aJG +bvE +bwE +bxL +bzc +anK +bBd +bBd +bBd +bDT +bBd +aZu +bGU +bIj +bIX +bIj +bKN +bBe +bMs +bBe +bNA +aZu aaa aaa aaa @@ -110251,68 +111254,68 @@ aab aab aab aab -anQ -apg -aqn -arI -ata -auH -awl -aqn -azx -anM -aCA -aEq -aGo -aIe -aJO -aJO -aJO -aOW -aQM -aSo -aTS -aEq -aWJ -aXX -aJO -baB -aQM -aCA -beG -bgb -bhp -aqn -bkc -blp -aqn -bor -aqn -bqL -brU -btn -aCA -aEq -aEq -bxN -bzf -anM -bBf -bBf -bDa -bDU -bBf -aZw -bGX -aZw -aZw -aZw -aZw -aZw -aZw -bMW -bND -aZw +anO +ape +aql +arG +asY +auF +awj +aql +azv +anK +aCy +aEo +aGm +aIc +aJM +aJM +aJM +aOU +aQK +aSm +aTQ +aEo +aWH +aXV +aJM +baz +aQK +aCy +beE +bfZ +bhn +aql +bka +bln +aql +bop +aql +bqJ +brS +btl +aCy +aEo +aEo +bxM +bzd +anK +bBd +bBd +bCY +bDS +bBd +aZu +bGV +aZu +aZu +aZu +aZu +aZu +aZu +bMU +bNB +aZu aaa aaa aaa @@ -110508,68 +111511,68 @@ aab aab aab aab -anR -apd -aqn -aqn -atb -atb -awm -aya -azy -aAR -aAR -aAR -aAR -aAR -aJP -aLB -aNv -aOX -aQN -anM -aTT -aUX -aWK -aWK -aWK -baC -aWK -aWK -aWK -aWK -auD -biV -auD -blq -bmR -bos -bpD -bqK -anM -anM -bup -bvG -bwG -bxO -bzg -anM -bBf -bBf -bBf -bBf -bBf -anM -bGX -aZw +anP +apb +aql +aql +asZ +asZ +awk +axY +azw +aAP +aAP +aAP +aAP +aAP +aJN +aLz +aNt +aOV +aQL +anK +aTR +aUW +aWI +aWI +aWI +baA +aWI +aWI +aWI +aWI +auB +biT +auB +blo +bmP +boq +bpB +bqI +anK +anK +buo +bvF +bwF +bxN +bze +anK +bBd +bBd +bBd +bBd +bBd +anK +bGV +aZu aaa aaa aaa aaa -aZw -aZw -aZw -aZw +aZu +aZu +aZu +aZu aaa aaa aaa @@ -110765,60 +111768,60 @@ aab aab aab aab -anS -aph -aqm -aqm -atc -aqm -aqm -aqm -azz -aAR -aCB -aEr -aGp -aAR -aJQ -aLC -aNw -aOY -aQO -aAR -aTU -aya -aWK -aXY -aZr -baD -bbV -baG -baG -aWK -bhq -bht -bkd -blr -bmS -bot -bmV -bqM -anM -anM -anM -bvH -bwH -bxP -bzh -anM -anM -anM -anM -anM -anM -anM -bGX -aZw +anQ +apf +aqk +aqk +ata +aqk +aqk +aqk +azx +aAP +aCz +aEp +aGn +aAP +aJO +aLA +aNu +aOW +aQM +aAP +aTS +axY +aWI +aXW +aZp +baB +bbT +baE +baE +aWI +bho +bhr +bkb +blp +bmQ +bor +bmT +bqK +anK +anK +anK +bvG +bwG +bxO +bzf +anK +anK +anK +anK +anK +anK +anK +bGV +aZu aaa aaa aaa @@ -111022,60 +112025,60 @@ aab aab aab aaa -anM -api -aqp -arJ -atd -auI -awn -ayb -azA -aAR -aCC -aEs -aGq -aAR -aJR -aLD -aNx -aOZ -aQP -aSp -aTV -aUY -aWK -aXZ -aZs -baE -bbW -bds -beH -bgc -bhr -bhr -bkd -bls -bmT -bou -bpE -bqN -bke +anK +apg +aqn +arH +atb +auG +awl +axZ +azy +aAP +aCA +aEq +aGo +aAP +aJP +aLB +aNv +aOX +aQN +aSn +aTT +aUX +aWI +aXX +aZq +baC +bbU +bdq +beF +bga +bhp +bhp +bkb +blq +bmR +bos +bpC +bqL +bkc aab -anM -anM -anM -anM -bzi -bAi -bBg -bBg -bBg -bBg -bBg -bBg -bGY -aZw +anK +anK +anK +anK +bzg +bAg +bBe +bBe +bBe +bBe +bBe +bBe +bGW +aZu aaa aaa aaa @@ -111279,60 +112282,60 @@ aab aab aab aaa -anM -anM -aqq -arK -ate -auD -awo -ayc -azB -aAR -aCD -aEt -aCD -aAR -aJS -aLE -aNy -aPa -aQQ -aSq -aTW -aUZ -aWK -aYa -aZt -baF -bbX -bdt -beI -aWK -bhs -bht -bkd -blt -bmU -bov -bpF -bqO -bke +anK +anK +aqo +arI +atc +auB +awm +aya +azz +aAP +aCB +aEr +aCB +aAP +aJQ +aLC +aNw +aOY +aQO +aSo +aTU +aUY +aWI +aXY +aZr +baD +bbV +bdr +beG +aWI +bhq +bhr +bkb +blr +bmS +bot +bpD +bqM +bkc aab aab aaa aaa -aZw -aZw -aZw -aZw -aZw -aZw -aZw -aZw -aZw -aZw -aZw +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu +aZu aaa aaa aaa @@ -111537,44 +112540,44 @@ aab aaa aaa aaa -anM -aqr -arL -atf -anM -aqj -arC -atf -aAR -aCE -aEu -aGr -aAR -aJT -aLF -aNz -aPb -aQR -aAR -aTX -aVa -aWK -aYb -aZu -baG -aWK -aWK -aWK -aWK -aQv -bht -bkd -blu -bmV -bow -bmV -bmV -brV +anK +aqp +arJ +atd +anK +aqh +arA +atd +aAP +aCC +aEs +aGp +aAP +aJR +aLD +aNx +aOZ +aQP +aAP +aTV +aUZ +aWI +aXZ +aZs +baE +aWI +aWI +aWI +aWI +aQt +bhr +bkb +bls +bmT +bou +bmT +bmT +brT aab aab aab @@ -111798,40 +112801,40 @@ aab aab aab aab -auJ +auH aab aab aab -aAR -aCF -aEu -aGs -aAR -aJU -aLG -aNA -aPc -aQS -aAR -aTY -aVb -aSr -aSr -aSr -aSr -aSr -aSr -aSr -aSr -aQv -biW -bkd -blv -bmW -box -bpG -bqP -brW +aAP +aCD +aEs +aGq +aAP +aJS +aLE +aNy +aPa +aQQ +aAP +aTW +aVa +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aQt +biU +bkb +blt +bmU +bov +bpE +bqN +brU aab aab aab @@ -112059,36 +113062,36 @@ aab aab aab aab -aAR -aCG -aEu -aGt -aAR -aJV -aLG -aLG -aPd -aQT -aAR -aTZ -aVc -aWL -aSr -aZv -aZv -aZv -aZv -aZv -aSr -aQv -bht -bke -blw -bmX -boy -bpH -bqQ -bke +aAP +aCE +aEs +aGr +aAP +aJT +aLE +aLE +aPb +aQR +aAP +aTX +aVb +aWJ +aSp +aZt +aZt +aZt +aZt +aZt +aSp +aQt +bhr +bkc +blu +bmV +bow +bpF +bqO +bkc aab aab aab @@ -112316,30 +113319,30 @@ aab aab aab aab -aAR -aCH -aEv -aGu -aAR -aJW -aLG -aJW -aPe -aQU -aAR -aUa -aUd -aUd -aSr -aZv -aZv -aZv -aZv -aZv -aSr -aQv -bht -aZw +aAP +aCF +aEt +aGs +aAP +aJU +aLE +aJU +aPc +aQS +aAP +aTY +aUb +aUb +aSp +aZt +aZt +aZt +aZt +aZt +aSp +aQt +bhr +aZu aab aab aab @@ -112573,30 +113576,30 @@ aaa aab aab aab -aAR -aCI -aEw -aGv -aAR -aJX -aLH -aNB -aPf -aQV -aAR +aAP +aCG +aEu +aGt +aAP +aJV +aLF +aNz +aPd +aQT +aAP +aTZ +aVc aUb -aVd -aUd -aSr -aZv -aZv -aZv -aZv -aZv -aSr -aQv -bht -aZw +aSp +aZt +aZt +aZt +aZt +aZt +aSp +aQt +bhr +aZu aab aab aab @@ -112830,30 +113833,30 @@ aaa aab aab aab -aAR -aAR -aAR -aGw -aAR -aJY -aLI -aNC -aPg -aQW -aAR -aUc -aUd -aUd -aSr -aZv -aZv -aZv -aZv -aZv -aSr -aQv -biX -aZw +aAP +aAP +aAP +aGu +aAP +aJW +aLG +aNA +aPe +aQU +aAP +aUa +aUb +aUb +aSp +aZt +aZt +aZt +aZt +aZt +aSp +aQt +biV +aZu aab aab aab @@ -113087,30 +114090,30 @@ aaa aaa aab aab -aAS -aCJ -aEx -aGx -aIf -aIf -aIf -aIf -aPh -aQX -aAR -aUd -aVe -aWM -aSr -aZv -aZv -aZv -aZv -aZv -aSr -aQv -biY -aZw +aAQ +aCH +aEv +aGv +aId +aId +aId +aId +aPf +aQV +aAP +aUb +aVd +aWK +aSp +aZt +aZt +aZt +aZt +aZt +aSp +aQt +biW +aZu aab aab aab @@ -113344,30 +114347,30 @@ aaa aaa aaa aab -aAT -aCK -aEy -aGy -aGy -aGy -aGy -aGy -aPi -aQY aAR -aUe -aSr -aSr -aSr -aSr -aSr -aSr -aSr -aSr -aSr -aQv -aRX -aZw +aCI +aEw +aGw +aGw +aGw +aGw +aGw +aPg +aQW +aAP +aUc +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aQt +aRV +aZu aaa aab aab @@ -113601,30 +114604,30 @@ aaa aaa aaa aab -aAU -aCL -aEz -aGz -aIg -aJZ -aLJ -aND -aPj -aQZ -aAR -aUd -aUd -aUd -aYc -aQv -aQv -aQv -aQv -aQv -aQv -aQv -bht -aZw +aAS +aCJ +aEx +aGx +aIe +aJX +aLH +aNB +aPh +aQX +aAP +aUb +aUb +aUb +aYa +aQt +aQt +aQt +aQt +aQt +aQt +aQt +bhr +aZu aaa aaa aab @@ -113858,30 +114861,30 @@ aaa aaa aaa aaa -aAR -aCM -aEA -aGA -aAR -aAR -aAR -aCM -aEA -aRa -aAR -aUf +aAP +aCK +aEy +aGy +aAP +aAP +aAP +aCK +aEy +aQY +aAP aUd -aWN -aYd -aRX -baH -aRX -bdu -aRX -bgd -bht -aRX -aZw +aUb +aWL +aYb +aRV +baF +aRV +bds +aRV +bgb +bhr +aRV +aZu aaa aaa aaa @@ -114117,28 +115120,28 @@ aaa aaa aab aab -aEB +aEz aab aaa aaa aaa aab -aEB +aEz aab -aSr -aUg -aVf -aWO -aSr -aZw -aZw -aZw -aZw -aZw -aZw -bhu -aZw -aZw +aSp +aUe +aVe +aWM +aSp +aZu +aZu +aZu +aZu +aZu +aZu +bhs +aZu +aZu aaa aaa aaa @@ -114382,19 +115385,19 @@ aab aab aab aab -aSr -aSr -aSr -aSr -aSr +aSp +aSp +aSp +aSp +aSp aaa aaa aaa aaa -aZw -bge -aRX -aZw +aZu +bgc +aRV +aZu aaa aaa aab @@ -114648,10 +115651,10 @@ aaa aaa aaa aaa -aZw -bgf -bhv -aZw +aZu +bgd +bht +aZu aaa aab aab @@ -114905,10 +115908,10 @@ aaa aaa aaa aaa -aZw -bgg -bhw -aZw +aZu +bge +bhu +aZu aaa aab aab @@ -115162,10 +116165,10 @@ aaa aaa aaa aaa -aZw -aZw -aZw -aZw +aZu +aZu +aZu +aZu aaa aab aab @@ -115423,9 +116426,9 @@ aaa aaa aaa aab -biZ -biZ -biZ +biX +biX +biX aab aab aab @@ -115679,11 +116682,11 @@ aaa aab aab aab -biZ -biZ -biZ -biZ -biZ +biX +biX +biX +biX +biX aaa aaa aab @@ -115936,11 +116939,11 @@ aab aab aab aab -biZ -biZ -blx -biZ -biZ +biX +biX +blv +biX +biX aaa aab aab @@ -116193,11 +117196,11 @@ aab aaa aaa aab -biZ -biZ -bly -biZ -biZ +biX +biX +blw +biX +biX aaa aaa aab @@ -116450,11 +117453,11 @@ aaa aaa aaa aab -biZ -biZ -blz -biZ -biZ +biX +biX +blx +biX +biX aaa aab aab @@ -116707,11 +117710,11 @@ aaa aaa aaa aaa -biZ -biZ -biZ -biZ -biZ +biX +biX +biX +biX +biX aaa aab aab @@ -116965,9 +117968,9 @@ aab aaa aaa aab -biZ -biZ -biZ +biX +biX +biX aab aaa aab diff --git a/maps/aurora/aurora-5_interstitial.dmm b/maps/aurora/aurora-5_interstitial.dmm index bdb7b27e94c..2aa30e8592f 100644 --- a/maps/aurora/aurora-5_interstitial.dmm +++ b/maps/aurora/aurora-5_interstitial.dmm @@ -6,12 +6,1709 @@ /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) "ac" = ( +/obj/random/junk, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ad" = ( +/turf/simulated/wall/r_wall, +/area/mine/unexplored) +"ae" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/research_port) +"af" = ( +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/down/supply, +/obj/structure/cable{ + d2 = 2; + icon_state = "11-2" + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/research_port) +"ag" = ( +/obj/structure/ladder{ + icon_state = "ladder01"; + pixel_y = 16 + }, +/turf/simulated/open, +/area/maintenance/research_port) +"ah" = ( +/obj/structure/cable{ + icon_state = "12-0" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 9 + }, +/turf/simulated/floor/plating{ + roof_type = null + }, +/area/maintenance/research_port) +"ai" = ( +/obj/structure/ladder/up{ + pixel_y = 16 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating{ + roof_type = null + }, +/area/maintenance/research_port) +"aj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"ak" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"al" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/random/junk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"am" = ( +/obj/machinery/light/small/emergency{ + icon_state = "bulb1"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"an" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"ao" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"ap" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 9 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating{ + roof_type = null + }, +/area/maintenance/research_port) +"aq" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"ar" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/arrivals) +"as" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"at" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"au" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"av" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + icon_state = "corner_white_full"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"aw" = ( +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"ax" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + icon_state = "corner_white_full"; + dir = 1 + }, +/obj/structure/sign/drop{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"ay" = ( +/turf/simulated/open, +/area/turbolift/main_mid) +"az" = ( +/obj/effect/floor_decal/corner/paleblue{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"aA" = ( +/obj/effect/floor_decal/corner/paleblue{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"aB" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/mine/unexplored) +"aC" = ( +/obj/effect/floor_decal/corner/paleblue{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"aD" = ( +/obj/item/tape/engineering{ + icon_state = "engineering_door"; + layer = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + icon_state = "door_locked"; + locked = 1; + name = "IT Department" + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"aE" = ( +/obj/effect/floor_decal/corner/pink{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"aF" = ( +/obj/effect/floor_decal/corner/paleblue{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/structure/sign/drop{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"aG" = ( +/turf/simulated/open, +/area/turbolift/main_mid_aux) +"aH" = ( +/obj/effect/floor_decal/corner/paleblue{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"aI" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"aJ" = ( +/obj/effect/floor_decal/corner/paleblue/full, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"aK" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + icon_state = "corner_white_full"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"aL" = ( +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"aM" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"aN" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"aO" = ( +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"aP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"aQ" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "fuckyou2"; + name = "exterior access button"; + pixel_x = -32; + pixel_y = -26 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"aR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"aS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"aT" = ( +/obj/machinery/door/airlock/external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "fuckyou2_outer"; + locked = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"aU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"aV" = ( +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"aW" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"aX" = ( +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"aY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"aZ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"ba" = ( +/obj/effect/decal/warning_stripes, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "fuckyou2"; + pixel_x = -32; + tag_airpump = "fuckyou2_pump"; + tag_chamber_sensor = "fuckyou2_sensor"; + tag_exterior_door = "fuckyou2_outer"; + tag_interior_door = "fuckyou2_inner" + }, +/obj/machinery/airlock_sensor{ + id_tag = "fuckyou2_sensor"; + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 2; + frequency = 1379; + id_tag = "fuckyou2_pump" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bb" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"bc" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/maintcentral) +"bd" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"be" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "fuckyou2_inner"; + locked = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bg" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bi" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright, +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"bj" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"bk" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"bl" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright, +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"bm" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"bn" = ( +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"bo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "fuckyou2"; + name = "interior access button"; + pixel_x = 32; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"bp" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"bq" = ( +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"br" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"bs" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"bt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"bu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"bv" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"bw" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"bx" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"by" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"bz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"bA" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"bB" = ( +/obj/machinery/door/airlock/maintenance{ + req_access = list(12) + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bD" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/sign/securearea{ + name = "\improper NO ENTRY"; + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bE" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"bF" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"bG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "fuckyou1"; + name = "interior access button"; + pixel_x = 32; + pixel_y = -26 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"bH" = ( +/obj/effect/floor_decal/corner/yellow, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"bI" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright, +/obj/effect/floor_decal/corner/yellow/full, +/obj/structure/sign/drop{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"bJ" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"bK" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"bL" = ( +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; + dir = 4 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"bM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"bO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"bP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"bQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "fuckyou1_inner"; + locked = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"bR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"bS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"bT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"bU" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/library) +"bV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"bW" = ( +/obj/effect/decal/warning_stripes, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "fuckyou1"; + pixel_x = -32; + tag_airpump = "fuckyou1_pump"; + tag_chamber_sensor = "fuckyou1_sensor"; + tag_exterior_door = "fuckyou1_outer"; + tag_interior_door = "fuckyou1_inner" + }, +/obj/machinery/airlock_sensor{ + id_tag = "fuckyou1_sensor"; + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id_tag = "fuckyou1_pump" + }, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"bX" = ( +/turf/simulated/open, +/area/turbolift/command_mid) +"bY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"bZ" = ( +/obj/machinery/door/airlock/external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "fuckyou1_outer"; + locked = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"ca" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "fuckyou1"; + name = "exterior access button"; + pixel_x = -32; + pixel_y = 26 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cb" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"cc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"cd" = ( +/obj/effect/decal/warning_stripes, +/obj/structure/ladder{ + icon_state = "ladder01"; + pixel_y = 16 + }, +/turf/simulated/open, +/area/maintenance/maintcentral) +"ce" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"cf" = ( +/obj/effect/decal/warning_stripes, +/obj/structure/ladder/up{ + pixel_y = 16 + }, +/obj/structure/sign/emerg_exitZ{ + dir = 1; + icon_state = "emerg_exitZ"; + pixel_x = 32; + tag = "icon-emerg_exitZ (NORTH)" + }, +/turf/simulated/floor/plating{ + roof_type = null + }, +/area/maintenance/maintcentral) +"cg" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + icon_state = "up-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + icon_state = "up-supply"; + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "12-0" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating{ + roof_type = null + }, +/area/maintenance/maintcentral) +"ch" = ( +/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/plating, +/area/maintenance/maintcentral) +"ci" = ( +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + icon_state = "down-supply"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + icon_state = "down-scrubbers"; + dir = 8 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "11-8" + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/maintcentral) +"cj" = ( +/obj/machinery/door/airlock/maintenance{ + req_access = list(12) + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"ck" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"cl" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/door/window/southleft, +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"cm" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/door/window/southleft, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"cn" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/door/window/southleft, +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"co" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"cp" = ( +/turf/simulated/open, +/area/turbolift/cargo_mid) +"cq" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"cr" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"cs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"ct" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/library) +"cu" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/library) +"cv" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/library) +"cw" = ( +/turf/simulated/floor/tiled, +/area/maintenance/library) +"cx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"cy" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "fuckyou3"; + name = "interior access button"; + pixel_x = 32; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"cz" = ( +/obj/machinery/door/airlock/external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "fuckyou3_inner"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4; + icon_state = "intact" + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"cA" = ( +/obj/effect/decal/warning_stripes, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "fuckyou3"; + pixel_x = 0; + pixel_y = -32; + tag_airpump = "fuckyou3_pump"; + tag_chamber_sensor = "fuckyou3_sensor"; + tag_exterior_door = "fuckyou3_outer"; + tag_interior_door = "fuckyou3_inner" + }, +/obj/machinery/airlock_sensor{ + id_tag = "fuckyou3_sensor"; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "fuckyou3_pump" + }, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/maintenance/library) +"cB" = ( +/obj/machinery/door/airlock/external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "fuckyou3_outer"; + locked = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"cC" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "fuckyou3"; + name = "exterior access button"; + pixel_x = -32; + pixel_y = 26 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cD" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"cE" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"cF" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"cG" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"cH" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"cI" = ( +/obj/effect/floor_decal/corner/yellow, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"cJ" = ( +/obj/effect/floor_decal/corner/yellow/full, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/sign/drop{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"cK" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"cL" = ( +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"cM" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"cN" = ( +/obj/machinery/door/airlock/maintenance{ + req_access = list(12) + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"cO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"cP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"cQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"cR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"cS" = ( +/obj/effect/decal/warning_stripes, +/obj/structure/ladder/up{ + pixel_y = 16 + }, +/turf/simulated/floor/plating{ + roof_type = null + }, +/area/maintenance/library) +"cT" = ( +/obj/effect/decal/warning_stripes, +/obj/structure/ladder{ + icon_state = "ladder01"; + pixel_y = 16 + }, +/turf/simulated/open, +/area/maintenance/library) +"cU" = ( +/obj/structure/disposalpipe/down{ + icon_state = "pipe-d"; + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/simulated/open, +/area/maintenance/library) +"cV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"cW" = ( +/obj/structure/disposalpipe/up{ + icon_state = "pipe-u"; + dir = 8 + }, +/turf/simulated/floor/plating{ + roof_type = null + }, +/area/maintenance/library) +"cX" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + icon_state = "up-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + icon_state = "up-supply"; + dir = 4 + }, +/obj/structure/disposalpipe/up{ + icon_state = "pipe-u"; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "12-0" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/simulated/floor/plating{ + roof_type = null + }, +/area/maintenance/library) +"cY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small/emergency, +/obj/structure/cable{ + 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/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"cZ" = ( +/obj/structure/disposalpipe/down{ + icon_state = "pipe-d"; + dir = 8 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "11-8" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + icon_state = "down-supply"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + icon_state = "down-scrubbers"; + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/simulated/open, +/area/maintenance/library) +"da" = ( +/obj/machinery/door/airlock/maintenance{ + req_access = list(50) + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"db" = ( /turf/simulated/wall, /area/security/range) -"ad" = ( +"dc" = ( +/turf/simulated/wall, +/area/security/range) +"dd" = ( +/turf/simulated/wall, +/area/security/range) +"de" = ( +/turf/simulated/wall, +/area/security/range) +"df" = ( +/turf/simulated/wall, +/area/security/range) +"dg" = ( +/turf/simulated/wall, +/area/security/range) +"dh" = ( +/turf/simulated/wall, +/area/security/range) +"di" = ( +/turf/simulated/wall, +/area/security/range) +"dj" = ( +/turf/simulated/wall, +/area/security/range) +"dk" = ( /turf/simulated/wall, /area/security/training) -"ae" = ( +"dl" = ( +/turf/simulated/wall, +/area/security/training) +"dm" = ( +/turf/simulated/wall, +/area/security/training) +"dn" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -26,17 +1723,7 @@ }, /turf/simulated/floor/plating, /area/security/range) -"af" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/range) -"ag" = ( +"dp" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -52,7 +1739,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"ah" = ( +"dq" = ( /obj/structure/table/standard, /obj/item/clothing/glasses/sunglasses{ pixel_x = 4; @@ -72,7 +1759,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"ai" = ( +"dr" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/practiceshells{ pixel_x = 4; @@ -104,30 +1791,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"aj" = ( -/obj/structure/table/standard, -/obj/item/clothing/ears/earmuffs{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/range) -"ak" = ( +"dt" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -135,7 +1799,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/security/range) -"al" = ( +"du" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -145,7 +1809,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"am" = ( +"dv" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -161,7 +1825,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/range) -"an" = ( +"dw" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -169,7 +1833,7 @@ /obj/machinery/vending/cola, /turf/simulated/floor/tiled, /area/security/training) -"ao" = ( +"dx" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -184,7 +1848,10 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"ap" = ( +"dy" = ( +/turf/simulated/wall, +/area/security/training) +"dz" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -196,14 +1863,14 @@ }, /turf/simulated/floor/plating, /area/security/range) -"aq" = ( +"dA" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/security/range) -"ar" = ( +"dB" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -214,7 +1881,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"as" = ( +"dC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -225,7 +1892,29 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"at" = ( +"dD" = ( +/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/security/range) +"dE" = ( +/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/security/range) +"dF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 @@ -240,7 +1929,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"au" = ( +"dG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -254,7 +1943,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"av" = ( +"dH" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Firing Range"; @@ -273,7 +1962,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"aw" = ( +"dI" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -291,7 +1980,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"ax" = ( +"dJ" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -315,7 +2004,28 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"ay" = ( +"dK" = ( +/turf/simulated/wall, +/area/security/training) +"dL" = ( +/turf/simulated/wall, +/area/security/training) +"dM" = ( +/turf/simulated/wall, +/area/security/training) +"dN" = ( +/turf/simulated/wall, +/area/security/training) +"dO" = ( +/turf/simulated/wall, +/area/security/training) +"dP" = ( +/turf/simulated/wall, +/area/security/training) +"dQ" = ( +/turf/simulated/wall, +/area/security/training) +"dR" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -328,7 +2038,14 @@ }, /turf/simulated/floor/plating, /area/security/range) -"az" = ( +"dS" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/security/range) +"dT" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/sign/nosmoking_2{ pixel_x = 0; @@ -336,11 +2053,27 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"aA" = ( +"dU" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/security/range) -"aB" = ( +"dV" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/security/range) +"dW" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/security/range) +"dX" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/security/range) +"dY" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/security/range) +"dZ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -356,7 +2089,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/range) -"aC" = ( +"ea" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -368,7 +2101,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"aD" = ( +"eb" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -382,7 +2115,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"aE" = ( +"ec" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -397,13 +2130,13 @@ }, /turf/simulated/floor/plating, /area/security/training) -"aF" = ( +"ed" = ( /obj/item/device/radio/intercom{ pixel_y = 27 }, /turf/simulated/floor/tiled, /area/security/training) -"aG" = ( +"ee" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 @@ -412,13 +2145,13 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/security/training) -"aH" = ( +"ef" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/security/training) -"aI" = ( +"eg" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/sign/nosmoking_2{ pixel_x = 0; @@ -426,10 +2159,16 @@ }, /turf/simulated/floor/tiled/white, /area/security/training) -"aJ" = ( +"eh" = ( /turf/simulated/floor/tiled/white, /area/security/training) -"aK" = ( +"ei" = ( +/turf/simulated/wall, +/area/security/training) +"ej" = ( +/turf/simulated/wall, +/area/security/range) +"ek" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -442,7 +2181,10 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"aL" = ( +"el" = ( +/turf/simulated/wall, +/area/security/range) +"em" = ( /obj/structure/table/reinforced/steel, /obj/machinery/recharger, /obj/item/weapon/gun/energy/laser/practice, @@ -450,7 +2192,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/range) -"aM" = ( +"en" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -465,7 +2207,41 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/range) -"aN" = ( +"eo" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/recharger, +/obj/item/weapon/gun/energy/laser/practice, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/security/range) +"ep" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/security/range) +"eq" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/recharger, +/obj/item/weapon/gun/energy/laser/practice, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/security/range) +"er" = ( +/turf/simulated/wall, +/area/security/range) +"es" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -479,7 +2255,21 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"aO" = ( +"et" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 6 + }, +/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/security/training) +"eu" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -492,10 +2282,10 @@ }, /turf/simulated/floor/plating, /area/security/training) -"aP" = ( +"ev" = ( /turf/simulated/floor/tiled, /area/security/training) -"aQ" = ( +"ew" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 @@ -503,49 +2293,75 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/training) -"aR" = ( +"ex" = ( /obj/effect/decal/cleanable/blood/drip, /turf/simulated/floor/tiled/white, /area/security/training) -"aS" = ( +"ey" = ( /obj/structure/closet/body_bag, /turf/simulated/floor/tiled/white, /area/security/training) -"aT" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 9 +"ez" = ( +/turf/simulated/floor/tiled/white, +/area/security/training) +"eA" = ( +/turf/simulated/wall, +/area/security/training) +"eB" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/security/range) -"aU" = ( -/obj/effect/floor_decal/industrial/loading, -/turf/simulated/floor/tiled, -/area/security/range) -"aV" = ( -/turf/simulated/floor/tiled, -/area/security/range) -"aW" = ( -/obj/effect/floor_decal/industrial/loading, -/obj/machinery/light{ - icon_state = "tube1"; +/obj/structure/window/reinforced{ dir = 4 }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/security/range) +"eD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/security/range) +"eE" = ( +/obj/effect/floor_decal/industrial/loading, /turf/simulated/floor/tiled, /area/security/range) -"aX" = ( +"eF" = ( +/turf/simulated/floor/tiled, +/area/security/range) +"eG" = ( +/obj/effect/floor_decal/industrial/loading, +/turf/simulated/floor/tiled, +/area/security/range) +"eH" = ( +/turf/simulated/floor/tiled, +/area/security/range) +"eJ" = ( +/turf/simulated/wall, +/area/security/range) +"eK" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/security/training) -"aY" = ( +"eL" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -564,7 +2380,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"aZ" = ( +"eM" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Crime Scene Training"; @@ -578,7 +2394,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"ba" = ( +"eN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -587,7 +2403,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"bb" = ( +"eO" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 @@ -598,16 +2414,16 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"bc" = ( +"eP" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/decal/cleanable/blood, /turf/simulated/floor/tiled/white, /area/security/training) -"bd" = ( +"eQ" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/white, /area/security/training) -"be" = ( +"eR" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/camera/network/security{ c_tag = "Security - Forensics Training"; @@ -615,7 +2431,29 @@ }, /turf/simulated/floor/tiled/white, /area/security/training) -"bf" = ( +"eS" = ( +/turf/simulated/wall, +/area/security/training) +"eT" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/security/range) +"eU" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/security/range) +"eV" = ( /obj/machinery/door/window/westleft{ name = "Firing Range Access"; req_access = list(1) @@ -623,7 +2461,19 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/range) -"bg" = ( +"eW" = ( +/turf/simulated/floor/tiled, +/area/security/range) +"eX" = ( +/turf/simulated/floor/tiled, +/area/security/range) +"eY" = ( +/turf/simulated/floor/tiled, +/area/security/range) +"eZ" = ( +/turf/simulated/floor/tiled, +/area/security/range) +"fa" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -631,7 +2481,10 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"bh" = ( +"fb" = ( +/turf/simulated/wall, +/area/security/range) +"fc" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -641,7 +2494,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"bi" = ( +"fd" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -657,7 +2510,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"bj" = ( +"fe" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -672,25 +2525,31 @@ }, /turf/simulated/floor/plating, /area/security/training) -"bk" = ( +"ff" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled, /area/security/training) -"bl" = ( +"fg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/training) -"bm" = ( +"fh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/training) +"fi" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/security/training) -"bn" = ( +"fj" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -698,7 +2557,23 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"bo" = ( +"fk" = ( +/turf/simulated/wall, +/area/security/training) +"fl" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/security/range) +"fm" = ( /obj/structure/closet/crate, /obj/item/target, /obj/item/target, @@ -718,25 +2593,53 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"bp" = ( +"fn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/security/range) +"fo" = ( /obj/structure/target_stake, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/range) -"bq" = ( +"fp" = ( /obj/machinery/camera/network/security{ c_tag = "Security - Firing Range Aft"; dir = 1 }, /turf/simulated/floor/tiled, /area/security/range) -"br" = ( +"fq" = ( +/obj/structure/target_stake, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/security/range) +"fr" = ( /obj/structure/sign/nosmoking_2{ pixel_y = -32 }, /turf/simulated/floor/tiled, /area/security/range) -"bs" = ( +"fs" = ( +/obj/structure/target_stake, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/security/range) +"ft" = ( +/turf/simulated/wall, +/area/security/range) +"fu" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -746,23 +2649,44 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"bt" = ( +"fv" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 6 + }, +/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/security/training) +"fw" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/security/training) +"fx" = ( /obj/structure/table/wood, /obj/item/weapon/gun/projectile/revolver/capgun, /turf/simulated/floor/tiled, /area/security/training) -"bu" = ( +"fy" = ( /obj/structure/table/wood, /obj/item/clothing/gloves/black, /turf/simulated/floor/tiled, /area/security/training) -"bv" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/spray/luminol, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/security/training) -"bw" = ( +"fA" = ( /obj/structure/table/wood, /obj/item/weapon/storage/box/evidence{ pixel_x = 0; @@ -771,12 +2695,49 @@ /obj/item/taperoll/police, /turf/simulated/floor/tiled, /area/security/training) -"bx" = ( +"fB" = ( /obj/structure/table/wood, /obj/item/weapon/reagent_containers/spray/cleaner, /turf/simulated/floor/tiled, /area/security/training) -"by" = ( +"fC" = ( +/turf/simulated/wall, +/area/security/training) +"fD" = ( +/turf/simulated/wall, +/area/security/range) +"fE" = ( +/turf/simulated/wall, +/area/security/range) +"fF" = ( +/turf/simulated/wall, +/area/security/range) +"fG" = ( +/turf/simulated/wall, +/area/security/range) +"fH" = ( +/turf/simulated/wall, +/area/security/range) +"fI" = ( +/turf/simulated/wall, +/area/security/range) +"fJ" = ( +/turf/simulated/wall, +/area/security/range) +"fK" = ( +/turf/simulated/wall, +/area/security/range) +"fL" = ( +/turf/simulated/wall, +/area/security/range) +"fM" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/security/training) +"fN" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -795,10 +2756,10 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"bz" = ( +"fO" = ( /turf/simulated/wall, /area/security/detectives_office) -"bA" = ( +"fP" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -814,7 +2775,7 @@ }, /turf/simulated/floor/plating, /area/security/detectives_office) -"bB" = ( +"fQ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -830,7 +2791,48 @@ }, /turf/simulated/floor/plating, /area/security/detectives_office) -"bC" = ( +"fR" = ( +/turf/simulated/wall, +/area/security/detectives_office) +"fS" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Detective" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "Detective" + }, +/obj/structure/window/reinforced/polarized{ + id = "Detective" + }, +/turf/simulated/floor/plating, +/area/security/detectives_office) +"fT" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "Detective" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "Detective" + }, +/obj/structure/window/reinforced/polarized{ + id = "Detective" + }, +/turf/simulated/floor/plating, +/area/security/detectives_office) +"fU" = ( +/turf/simulated/wall, +/area/security/detectives_office) +"fV" = ( +/turf/simulated/wall, +/area/security/training) +"fW" = ( /obj/effect/floor_decal/corner/red/full{ icon_state = "corner_white_full"; dir = 8 @@ -838,7 +2840,7 @@ /obj/structure/punching_bag, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"bD" = ( +"fY" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 5 @@ -846,7 +2848,7 @@ /obj/structure/weightlifter, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"bE" = ( +"fZ" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 5 @@ -856,7 +2858,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"bF" = ( +"ga" = ( /obj/structure/table/standard, /obj/item/clothing/gloves/boxing, /obj/item/device/radio/intercom{ @@ -864,7 +2866,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"bG" = ( +"gb" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -880,7 +2882,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/training) -"bH" = ( +"gc" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -891,7 +2893,21 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"bI" = ( +"gd" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 6 + }, +/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/security/training) +"ge" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -908,31 +2924,51 @@ }, /turf/simulated/floor/plating, /area/security/detectives_office) -"bJ" = ( +"gf" = ( /obj/machinery/computer/med_data, /turf/simulated/floor/lino, /area/security/detectives_office) -"bK" = ( +"gg" = ( /obj/machinery/computer/secure_data, /turf/simulated/floor/lino, /area/security/detectives_office) -"bL" = ( +"gh" = ( /obj/structure/bed/chair/comfy/beige, /obj/structure/window/reinforced{ dir = 8 }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"bM" = ( +"gi" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green, /turf/simulated/floor/carpet, /area/security/detectives_office) -"bN" = ( +"gj" = ( /obj/machinery/computer/security/wooden_tv, /turf/simulated/floor/carpet, /area/security/detectives_office) -"bO" = ( +"gk" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Detective" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "Detective" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "Detective" + }, +/turf/simulated/floor/plating, +/area/security/detectives_office) +"gl" = ( +/turf/simulated/wall, +/area/security/training) +"gm" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 9 @@ -949,14 +2985,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"bP" = ( -/obj/effect/floor_decal/corner/blue/full{ - icon_state = "corner_white_full"; - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/security/training) -"bQ" = ( +"go" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -967,7 +2996,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"bR" = ( +"gp" = ( /obj/effect/floor_decal/corner/blue/full{ icon_state = "corner_white_full"; dir = 1 @@ -981,7 +3010,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"bS" = ( +"gq" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 6 @@ -994,17 +3023,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"bT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"bU" = ( +"gs" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -1017,7 +3036,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"bV" = ( +"gt" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -1040,7 +3059,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"bW" = ( +"gu" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -1053,24 +3072,24 @@ }, /turf/simulated/floor/plating, /area/security/detectives_office) -"bX" = ( +"gv" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/lino, /area/security/detectives_office) -"bY" = ( +"gw" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/lino, /area/security/detectives_office) -"bZ" = ( +"gx" = ( /turf/simulated/floor/carpet, /area/security/detectives_office) -"ca" = ( +"gy" = ( /obj/structure/table/wood, /obj/item/weapon/folder/sec, /obj/item/weapon/pen, /turf/simulated/floor/carpet, /area/security/detectives_office) -"cb" = ( +"gz" = ( /obj/structure/bed/chair/comfy/brown{ dir = 8 }, @@ -1085,7 +3104,23 @@ }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"cc" = ( +"gA" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Detective" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "Detective" + }, +/turf/simulated/floor/plating, +/area/security/detectives_office) +"gB" = ( +/turf/simulated/wall, +/area/security/training) +"gC" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 9 @@ -1098,11 +3133,11 @@ }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"cd" = ( +"gD" = ( /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"ce" = ( +"gE" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 10 @@ -1110,25 +3145,42 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"cf" = ( +"gF" = ( /obj/effect/floor_decal/corner/blue/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"cg" = ( +"gG" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"ch" = ( -/obj/machinery/door/firedoor, +"gI" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 9 + }, /turf/simulated/floor/tiled, /area/security/training) -"ci" = ( +"gJ" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 6 + }, +/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/security/training) +"gK" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -1144,14 +3196,14 @@ }, /turf/simulated/floor/plating, /area/security/detectives_office) -"cj" = ( +"gL" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/simulated/floor/lino, /area/security/detectives_office) -"ck" = ( +"gM" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -1159,27 +3211,43 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/lino, /area/security/detectives_office) -"cl" = ( +"gN" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/carpet, /area/security/detectives_office) -"cm" = ( +"gO" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin, /obj/item/device/taperecorder, /turf/simulated/floor/carpet, /area/security/detectives_office) -"cn" = ( +"gP" = ( /obj/machinery/camera/network/security{ c_tag = "Security - Detective's Office"; dir = 8 }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"co" = ( +"gQ" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Detective" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "Detective" + }, +/turf/simulated/floor/plating, +/area/security/detectives_office) +"gR" = ( +/turf/simulated/wall, +/area/security/training) +"gS" = ( /turf/simulated/floor/holofloor/tiled, /area/security/training) -"cp" = ( +"gT" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 10 @@ -1195,7 +3263,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"cq" = ( +"gU" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 10 @@ -1206,21 +3274,61 @@ }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"cr" = ( +"gV" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"cs" = ( +"gW" = ( /obj/effect/floor_decal/corner/green/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"ct" = ( +"gX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/security/training) +"gY" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/security/training) +"gZ" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 6 + }, +/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/security/training) +"ha" = ( +/turf/simulated/wall, +/area/security/detectives_office) +"hb" = ( /obj/structure/flora/pottedplant/random, /obj/machinery/alarm{ dir = 4; @@ -1230,7 +3338,7 @@ }, /turf/simulated/floor/lino, /area/security/detectives_office) -"cu" = ( +"hc" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1238,22 +3346,59 @@ }, /turf/simulated/floor/lino, /area/security/detectives_office) -"cv" = ( +"hd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/lino, /area/security/detectives_office) -"cw" = ( +"he" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/lino, /area/security/detectives_office) -"cx" = ( +"hf" = ( /turf/simulated/floor/lino, /area/security/detectives_office) -"cy" = ( +"hg" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Detective" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "Detective" + }, +/obj/structure/window/reinforced/polarized{ + id = "Detective" + }, +/turf/simulated/floor/plating, +/area/security/detectives_office) +"hh" = ( +/turf/simulated/wall, +/area/security/training) +"hi" = ( +/turf/simulated/wall, +/area/security/training) +"hj" = ( +/turf/simulated/wall, +/area/security/training) +"hk" = ( +/turf/simulated/wall, +/area/security/training) +"hl" = ( +/turf/simulated/wall, +/area/security/training) +"hm" = ( +/turf/simulated/wall, +/area/security/training) +"hn" = ( +/turf/simulated/wall, +/area/security/training) +"ho" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -1261,7 +3406,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/training) -"cz" = ( +"hp" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -1276,7 +3421,24 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"cA" = ( +"hq" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Detective" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "Detective" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "Detective" + }, +/turf/simulated/floor/plating, +/area/security/detectives_office) +"hr" = ( /obj/machinery/photocopier, /obj/machinery/light{ dir = 8; @@ -1285,13 +3447,19 @@ }, /turf/simulated/floor/lino, /area/security/detectives_office) -"cB" = ( +"hs" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/lino, /area/security/detectives_office) -"cC" = ( +"ht" = ( +/turf/simulated/floor/lino, +/area/security/detectives_office) +"hu" = ( +/turf/simulated/floor/lino, +/area/security/detectives_office) +"hv" = ( /obj/machinery/requests_console{ department = "Detective's Desk"; departmentType = 5; @@ -1300,7 +3468,10 @@ }, /turf/simulated/floor/lino, /area/security/detectives_office) -"cD" = ( +"hw" = ( +/turf/simulated/wall, +/area/security/detectives_office) +"hx" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -1314,7 +3485,7 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"cE" = ( +"hy" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -1327,10 +3498,10 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"cF" = ( +"hz" = ( /turf/simulated/wall, /area/security/forensics_office) -"cG" = ( +"hA" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -1346,7 +3517,7 @@ }, /turf/simulated/floor/plating, /area/security/forensics_office) -"cH" = ( +"hB" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -1362,11 +3533,51 @@ }, /turf/simulated/floor/plating, /area/security/forensics_office) -"cI" = ( -/obj/random/junk, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"cJ" = ( +"hC" = ( +/turf/simulated/wall, +/area/security/forensics_office) +"hD" = ( +/turf/simulated/wall, +/area/security/forensics_office) +"hE" = ( +/turf/simulated/wall, +/area/security/forensics_office) +"hF" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + id = "FT Op" + }, +/turf/simulated/floor/plating, +/area/security/forensics_office) +"hG" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + id = "FT Op" + }, +/turf/simulated/floor/plating, +/area/security/forensics_office) +"hH" = ( +/turf/simulated/wall, +/area/security/forensics_office) +"hI" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -1381,27 +3592,31 @@ }, /turf/simulated/floor/plating, /area/security/training) -"cK" = ( +"hJ" = ( /obj/structure/banner, /turf/simulated/floor/wood, /area/security/training) -"cL" = ( +"hK" = ( /obj/structure/bed/chair/comfy/brown, /turf/simulated/floor/wood, /area/security/training) -"cM" = ( +"hL" = ( /obj/structure/sign/double/map/left{ pixel_y = 32 }, /turf/simulated/floor/wood, /area/security/training) -"cN" = ( +"hM" = ( /obj/structure/sign/double/map/right{ pixel_y = 32 }, /turf/simulated/floor/wood, /area/security/training) -"cO" = ( +"hN" = ( +/obj/structure/banner, +/turf/simulated/floor/wood, +/area/security/training) +"hO" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -1416,14 +3631,48 @@ }, /turf/simulated/floor/plating, /area/security/training) -"cP" = ( +"hP" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/security/training) +"hQ" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 6 + }, +/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/security/training) +"hR" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Detective" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "Detective" + }, +/turf/simulated/floor/plating, +/area/security/detectives_office) +"hS" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/flora/pottedplant/random, /turf/simulated/floor/wood, /area/security/detectives_office) -"cQ" = ( +"hT" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -1438,14 +3687,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/security/detectives_office) -"cR" = ( +"hU" = ( /turf/simulated/floor/tiled/ramp/bottom{ tag = "icon-rampbot (NORTH)"; icon_state = "rampbot"; dir = 1 }, /area/security/detectives_office) -"cS" = ( +"hV" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -1462,14 +3711,14 @@ }, /turf/simulated/floor/lino, /area/security/detectives_office) -"cT" = ( +"hW" = ( /obj/structure/window/reinforced, /obj/structure/closet/secure_closet/detective, /obj/item/weapon/reagent_containers/food/drinks/flask/detflask, /obj/item/weapon/book/manual/security_space_law, /turf/simulated/floor/lino, /area/security/detectives_office) -"cU" = ( +"hX" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ dir = 1; @@ -1489,7 +3738,7 @@ }, /turf/simulated/floor/plating, /area/security/detectives_office) -"cV" = ( +"hY" = ( /obj/machinery/papershredder, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -1497,7 +3746,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"cW" = ( +"hZ" = ( /obj/structure/table/standard, /obj/item/weapon/folder/sec, /obj/item/weapon/folder/sec, @@ -1508,7 +3757,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"cX" = ( +"ia" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -1525,7 +3774,7 @@ }, /turf/simulated/floor/plating, /area/security/forensics_office) -"cY" = ( +"ib" = ( /obj/structure/table/standard, /obj/item/weapon/packageWrap, /obj/item/weapon/hand_labeler, @@ -1535,7 +3784,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"cZ" = ( +"ic" = ( /obj/structure/table/standard, /obj/item/weapon/storage/briefcase/crimekit, /obj/effect/floor_decal/corner/blue{ @@ -1547,7 +3796,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"da" = ( +"id" = ( /obj/structure/table/standard, /obj/item/device/camera_film, /obj/item/device/camera, @@ -1560,7 +3809,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"db" = ( +"ie" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/evidence{ pixel_x = 5; @@ -1579,7 +3828,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"dc" = ( +"if" = ( /obj/machinery/computer/secure_data, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -1587,7 +3836,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"dd" = ( +"ig" = ( /obj/machinery/computer/med_data, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -1595,7 +3844,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"de" = ( +"ih" = ( /obj/structure/table/standard, /obj/item/weapon/folder/sec, /obj/effect/floor_decal/corner/blue{ @@ -1604,7 +3853,24 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"df" = ( +"ii" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "FT Op" + }, +/turf/simulated/floor/plating, +/area/security/forensics_office) +"ij" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -1617,7 +3883,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/training) -"dg" = ( +"ik" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green, /obj/machinery/light{ @@ -1627,21 +3893,24 @@ }, /turf/simulated/floor/wood, /area/security/training) -"dh" = ( +"il" = ( /obj/structure/table/wood, /obj/item/weapon/folder/sec, /turf/simulated/floor/wood, /area/security/training) -"di" = ( +"im" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, /turf/simulated/floor/wood, /area/security/training) -"dj" = ( +"in" = ( /turf/simulated/floor/wood, /area/security/training) -"dk" = ( +"io" = ( +/turf/simulated/floor/wood, +/area/security/training) +"ip" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -1653,11 +3922,48 @@ }, /turf/simulated/floor/plating, /area/security/training) -"dl" = ( +"iq" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/security/training) +"ir" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 6 + }, +/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/security/training) +"is" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Detective" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "Detective" + }, +/obj/structure/window/reinforced/polarized{ + id = "Detective" + }, +/turf/simulated/floor/plating, +/area/security/detectives_office) +"it" = ( /obj/structure/coatrack, /turf/simulated/floor/wood, /area/security/detectives_office) -"dm" = ( +"iu" = ( /obj/machinery/firealarm/south, /obj/structure/disposalpipe/segment{ dir = 1; @@ -1672,7 +3978,7 @@ }, /turf/simulated/floor/wood, /area/security/detectives_office) -"dn" = ( +"iv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -1684,7 +3990,7 @@ }, /turf/simulated/floor/wood, /area/security/detectives_office) -"do" = ( +"iw" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -1705,7 +4011,7 @@ }, /turf/simulated/floor/wood, /area/security/detectives_office) -"dp" = ( +"ix" = ( /obj/machinery/light_switch{ pixel_x = 0; pixel_y = -24 @@ -1726,7 +4032,7 @@ }, /turf/simulated/floor/wood, /area/security/detectives_office) -"dq" = ( +"iy" = ( /obj/machinery/door/airlock/security{ id_tag = "detdoor"; name = "Detective"; @@ -1748,7 +4054,7 @@ }, /turf/simulated/floor/wood, /area/security/detectives_office) -"dr" = ( +"iz" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -1770,14 +4076,14 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"ds" = ( +"iA" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled, /area/security/investigations) -"dt" = ( +"iB" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -1793,14 +4099,23 @@ }, /turf/simulated/floor/plating, /area/security/forensics_office) -"du" = ( +"iC" = ( /turf/simulated/floor/tiled, /area/security/forensics_office) -"dv" = ( +"iD" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/security/forensics_office) -"dw" = ( +"iE" = ( +/turf/simulated/floor/tiled, +/area/security/forensics_office) +"iF" = ( +/turf/simulated/floor/tiled, +/area/security/forensics_office) +"iG" = ( +/turf/simulated/floor/tiled, +/area/security/forensics_office) +"iH" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, @@ -1811,7 +4126,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"dx" = ( +"iI" = ( /obj/structure/table/standard, /obj/item/weapon/pen/red, /obj/item/weapon/pen{ @@ -1820,7 +4135,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"dy" = ( +"iJ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -1833,7 +4148,10 @@ }, /turf/simulated/floor/plating, /area/security/forensics_office) -"dz" = ( +"iK" = ( +/turf/simulated/wall, +/area/security/training) +"iL" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/sign/nosmoking_2{ pixel_x = -32 @@ -1844,11 +4162,15 @@ }, /turf/simulated/floor/wood, /area/security/training) -"dA" = ( +"iM" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, /area/security/training) -"dB" = ( +"iN" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/security/training) +"iO" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; @@ -1856,10 +4178,29 @@ }, /turf/simulated/floor/wood, /area/security/training) -"dC" = ( +"iP" = ( /turf/simulated/floor/tiled/ramp/bottom, /area/security/training) -"dD" = ( +"iQ" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/security/training) +"iR" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/security/training) +"iS" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -1878,10 +4219,28 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"dE" = ( +"iT" = ( +/turf/simulated/wall, +/area/security/training) +"iU" = ( +/turf/simulated/wall, +/area/security/training) +"iV" = ( +/turf/simulated/wall, +/area/security/training) +"iW" = ( +/turf/simulated/wall, +/area/security/training) +"iX" = ( /turf/simulated/wall, /area/security/investigations) -"dF" = ( +"iY" = ( +/turf/simulated/wall, +/area/security/investigations) +"iZ" = ( +/turf/simulated/wall, +/area/security/investigations) +"ja" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -1912,7 +4271,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"dG" = ( +"jb" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -1933,7 +4292,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"dH" = ( +"jc" = ( /obj/machinery/door/airlock/security{ name = "Forensic Technician"; req_access = list(4) @@ -1954,7 +4313,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"dI" = ( +"jd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -1971,7 +4330,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"dJ" = ( +"je" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -1986,7 +4345,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/security/forensics_office) -"dK" = ( +"jf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -2004,7 +4363,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"dL" = ( +"jg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -2018,7 +4377,21 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"dM" = ( +"jh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/security/forensics_office) +"ji" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -2033,7 +4406,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"dN" = ( +"jj" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -2044,10 +4417,20 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"dO" = ( -/turf/simulated/wall/r_wall, -/area/mine/unexplored) -"dP" = ( +"jk" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "FT Op" + }, +/turf/simulated/floor/plating, +/area/security/forensics_office) +"jl" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -2063,7 +4446,7 @@ }, /turf/simulated/floor/plating, /area/security/training) -"dQ" = ( +"jm" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -2074,14 +4457,14 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"dR" = ( +"jn" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/dark, /area/security/training) -"dS" = ( +"jo" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -2089,7 +4472,14 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, /area/security/training) -"dT" = ( +"jp" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/training) +"jq" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -2100,7 +4490,20 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"dU" = ( +"jr" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/security/training) +"js" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -2115,7 +4518,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"dV" = ( +"jt" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 4 @@ -2132,7 +4535,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"dW" = ( +"ju" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -2147,10 +4550,16 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"dX" = ( +"jv" = ( +/turf/simulated/wall, +/area/security/training) +"jw" = ( /turf/simulated/floor/plating, /area/security/training) -"dY" = ( +"jx" = ( +/turf/simulated/wall, +/area/security/training) +"jy" = ( /obj/structure/disposalpipe/segment{ icon_state = "conpipe-c"; dir = 4 @@ -2172,7 +4581,7 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"dZ" = ( +"jz" = ( /obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ icon_state = "down-scrubbers"; dir = 8 @@ -2195,7 +4604,10 @@ }, /turf/simulated/open, /area/security/investigations) -"ea" = ( +"jA" = ( +/turf/simulated/wall, +/area/security/investigations) +"jB" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -2216,7 +4628,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/investigations) -"eb" = ( +"jC" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -2227,7 +4639,10 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"ec" = ( +"jD" = ( +/turf/simulated/wall, +/area/security/forensics_office) +"jE" = ( /obj/structure/coatrack, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -2239,7 +4654,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"ed" = ( +"jF" = ( /obj/structure/closet/secure_closet/csi, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -2250,7 +4665,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"ee" = ( +"jG" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 10 @@ -2259,7 +4674,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/forensics_office) -"ef" = ( +"jH" = ( /obj/machinery/photocopier, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -2271,7 +4686,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"eg" = ( +"jI" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -2280,7 +4695,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/security/forensics_office) -"eh" = ( +"jJ" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 10 @@ -2298,7 +4713,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/security/forensics_office) -"ei" = ( +"jK" = ( /obj/machinery/disposal, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -2309,7 +4724,26 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"ej" = ( +"jL" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + id = "FT Op" + }, +/turf/simulated/floor/plating, +/area/security/forensics_office) +"jM" = ( +/turf/simulated/wall, +/area/security/training) +"jN" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -2325,17 +4759,23 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"ek" = ( +"jO" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/security/training) -"el" = ( +"jP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/security/training) -"em" = ( +"jQ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/training) +"jR" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -2350,7 +4790,10 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"en" = ( +"jS" = ( +/turf/simulated/wall, +/area/security/training) +"jT" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -2370,7 +4813,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"eo" = ( +"jU" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -2387,7 +4830,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"ep" = ( +"jV" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -2405,7 +4848,10 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"eq" = ( +"jW" = ( +/turf/simulated/wall, +/area/security/training) +"jX" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -2420,7 +4866,7 @@ }, /turf/simulated/floor/plating, /area/security/training) -"er" = ( +"jY" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12); req_one_access = null @@ -2438,7 +4884,7 @@ }, /turf/simulated/floor/plating, /area/security/training) -"es" = ( +"jZ" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -2457,7 +4903,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plating, /area/security/investigations) -"et" = ( +"ka" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -2474,7 +4920,7 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"eu" = ( +"kb" = ( /obj/machinery/door/airlock/maintenance{ req_one_access = list(4,68) }, @@ -2494,7 +4940,7 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"ev" = ( +"kc" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -2518,7 +4964,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"ew" = ( +"kd" = ( /obj/machinery/ringer{ department = "Security"; id = "brig_ringer"; @@ -2536,7 +4982,10 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"ex" = ( +"ke" = ( +/turf/simulated/wall, +/area/security/forensics_office) +"kf" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -2550,7 +4999,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/forensics_office) -"ey" = ( +"kg" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -2563,7 +5012,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/forensics_office) -"ez" = ( +"kh" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Forensic Laboratory"; @@ -2573,7 +5022,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"eA" = ( +"ki" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -2590,7 +5039,34 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/forensics_office) -"eB" = ( +"kj" = ( +/turf/simulated/wall, +/area/security/forensics_office) +"kk" = ( +/turf/simulated/wall, +/area/security/forensics_office) +"kl" = ( +/turf/simulated/wall, +/area/security/forensics_office) +"km" = ( +/turf/simulated/wall, +/area/security/forensics_office) +"kn" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/security/training) +"ko" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -2605,13 +5081,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"eC" = ( +"kp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/security/training) -"eD" = ( +"kq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 @@ -2621,7 +5097,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"eE" = ( +"kr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -2630,7 +5106,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"eF" = ( +"ks" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -2643,7 +5119,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"eG" = ( +"kt" = ( /obj/machinery/door/airlock/glass_security{ name = "Theorethical Training"; req_access = list(1) @@ -2656,7 +5132,20 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"eH" = ( +"ku" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/training) +"kv" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; dir = 4 @@ -2671,7 +5160,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"eI" = ( +"kw" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -2683,7 +5172,10 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"eJ" = ( +"kx" = ( +/turf/simulated/wall, +/area/security/training) +"ky" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -2696,7 +5188,19 @@ }, /turf/simulated/floor/plating, /area/security/training) -"eK" = ( +"kz" = ( +/turf/simulated/wall, +/area/security/training) +"kA" = ( +/turf/simulated/wall, +/area/security/investigations) +"kB" = ( +/turf/simulated/wall, +/area/security/investigations) +"kC" = ( +/turf/simulated/wall, +/area/security/investigations) +"kD" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -2706,7 +5210,17 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"eL" = ( +"kE" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/security/investigations) +"kF" = ( +/turf/simulated/wall, +/area/security/forensics_office) +"kG" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/swabs{ pixel_x = 5; @@ -2725,10 +5239,10 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"eM" = ( +"kH" = ( /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"eN" = ( +"kI" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -2737,7 +5251,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"eO" = ( +"kJ" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 8 @@ -2746,7 +5260,7 @@ /obj/structure/morgue, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"eP" = ( +"kK" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/machinery/button/windowtint{ id = "FT Op"; @@ -2755,7 +5269,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"eQ" = ( +"kL" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/structure/table/glass, /obj/item/weapon/autopsy_scanner, @@ -2765,7 +5279,37 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"eR" = ( +"kM" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "FT Op" + }, +/turf/simulated/floor/plating, +/area/security/forensics_office) +"kN" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/security/training) +"kO" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -2775,19 +5319,19 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"eS" = ( +"kP" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/dark, /area/security/training) -"eT" = ( +"kQ" = ( /obj/structure/table/standard, /obj/item/weapon/folder/sec, /turf/simulated/floor/tiled/dark, /area/security/training) -"eU" = ( +"kR" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -2799,7 +5343,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"eV" = ( +"kS" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -2809,7 +5353,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"eW" = ( +"kT" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -2825,7 +5369,7 @@ }, /turf/simulated/floor/plating, /area/security/training) -"eX" = ( +"kU" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -2833,7 +5377,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/security/training) -"eY" = ( +"kV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -2843,7 +5387,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"eZ" = ( +"kW" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -2853,7 +5397,10 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"fa" = ( +"kX" = ( +/turf/simulated/wall, +/area/security/training) +"kY" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -2863,17 +5410,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/security/training) -"fb" = ( +"kZ" = ( +/turf/simulated/wall, +/area/security/training) +"la" = ( /turf/simulated/open, /area/security/investigations) -"fc" = ( -/obj/machinery/light, +"lb" = ( +/turf/simulated/open, +/area/security/investigations) +"ld" = ( /turf/simulated/floor/tiled, /area/security/investigations) -"fd" = ( -/turf/simulated/floor/tiled, -/area/security/investigations) -"fe" = ( +"le" = ( /obj/machinery/firealarm/east, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -2881,7 +5430,10 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"ff" = ( +"lf" = ( +/turf/simulated/wall, +/area/security/forensics_office) +"lg" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/slides{ pixel_x = 5; @@ -2899,13 +5451,13 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"fg" = ( +"lh" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"fh" = ( +"li" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -2917,11 +5469,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"fi" = ( +"lj" = ( /obj/effect/floor_decal/corner/beige/diagonal, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"fj" = ( +"lk" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/turf/simulated/floor/tiled/white, +/area/security/forensics_office) +"ll" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/machinery/optable, /obj/machinery/light{ @@ -2930,7 +5486,44 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"fk" = ( +"lm" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "FT Op" + }, +/turf/simulated/floor/plating, +/area/security/forensics_office) +"ln" = ( +/turf/simulated/wall, +/area/security/training) +"lo" = ( +/turf/simulated/wall, +/area/security/training) +"lp" = ( +/turf/simulated/wall, +/area/security/training) +"lq" = ( +/turf/simulated/wall, +/area/security/training) +"lr" = ( +/turf/simulated/wall, +/area/security/training) +"ls" = ( +/turf/simulated/wall, +/area/security/training) +"lt" = ( +/turf/simulated/wall, +/area/security/training) +"lu" = ( +/turf/simulated/wall, +/area/security/training) +"lv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 @@ -2945,7 +5538,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"fl" = ( +"lw" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -2963,7 +5556,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"fm" = ( +"lx" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(1); req_one_access = null @@ -2981,7 +5574,7 @@ }, /turf/simulated/floor/plating, /area/security/training) -"fn" = ( +"ly" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -2997,7 +5590,10 @@ }, /turf/simulated/floor/plating, /area/security/training) -"fo" = ( +"lz" = ( +/turf/simulated/wall, +/area/security/training) +"lA" = ( /obj/machinery/door/firedoor, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -3011,7 +5607,7 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"fp" = ( +"lB" = ( /obj/machinery/door/firedoor, /obj/structure/window/reinforced, /obj/structure/grille, @@ -3024,7 +5620,40 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"fq" = ( +"lC" = ( +/turf/simulated/wall, +/area/security/investigations) +"lD" = ( +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/security/investigations) +"lE" = ( +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/investigations) +"lF" = ( +/turf/simulated/wall, +/area/security/forensics_office) +"lG" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -3032,7 +5661,10 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"fr" = ( +"lH" = ( +/turf/simulated/floor/tiled/white, +/area/security/forensics_office) +"lI" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -3040,7 +5672,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"fs" = ( +"lJ" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 8 @@ -3058,24 +5690,48 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"ft" = ( +"lK" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/turf/simulated/floor/tiled/white, +/area/security/forensics_office) +"lL" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/structure/table/glass, /obj/item/device/mass_spectrometer, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"fu" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 +"lM" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "FT Op" }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + id = "FT Op" + }, +/turf/simulated/floor/plating, +/area/security/forensics_office) +"lN" = ( +/turf/simulated/wall, +/area/security/training) +"lP" = ( /turf/simulated/open, /area/security/training) -"fv" = ( -/turf/simulated/open, +"lQ" = ( +/turf/simulated/wall, /area/security/training) -"fw" = ( +"lR" = ( +/turf/simulated/wall, +/area/security/training) +"lS" = ( +/turf/simulated/wall, +/area/security/training) +"lT" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -3095,7 +5751,7 @@ }, /turf/simulated/floor/plating, /area/security/forensics_office) -"fx" = ( +"lU" = ( /obj/structure/table/glass, /obj/machinery/microscope, /obj/effect/floor_decal/corner/blue{ @@ -3104,11 +5760,11 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"fy" = ( +"lV" = ( /obj/machinery/dnaforensics, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"fz" = ( +"lW" = ( /obj/structure/closet{ name = "Evidence Closet" }, @@ -3121,7 +5777,76 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"fA" = ( +"lX" = ( +/turf/simulated/wall, +/area/security/forensics_office) +"lY" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + id = "FT Op" + }, +/turf/simulated/floor/plating, +/area/security/forensics_office) +"lZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + id = "FT Op" + }, +/turf/simulated/floor/plating, +/area/security/forensics_office) +"ma" = ( +/turf/simulated/wall, +/area/security/forensics_office) +"mb" = ( +/turf/simulated/wall, +/area/security/training) +"mc" = ( +/turf/simulated/open, +/area/security/training) +"md" = ( +/turf/simulated/open, +/area/security/training) +"me" = ( +/turf/simulated/wall, +/area/security/training) +"mf" = ( +/turf/simulated/wall, +/area/security/forensics_office) +"mg" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + id = "FT Op" + }, +/turf/simulated/floor/plating, +/area/security/forensics_office) +"mh" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -3133,17 +5858,93 @@ }, /turf/simulated/floor/plating, /area/security/forensics_office) -"fB" = ( +"mi" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "FT Op" + }, +/obj/structure/window/reinforced/polarized{ + id = "FT Op" + }, +/turf/simulated/floor/plating, +/area/security/forensics_office) +"mj" = ( +/turf/simulated/wall, +/area/security/forensics_office) +"mk" = ( +/turf/simulated/wall, +/area/security/training) +"ml" = ( +/turf/simulated/wall, +/area/security/training) +"mm" = ( +/turf/simulated/wall, +/area/security/training) +"mn" = ( +/turf/simulated/wall, +/area/security/training) +"mo" = ( /turf/simulated/wall/r_wall, /area/bridge/selfdestruct) -"fC" = ( +"mp" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mq" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mr" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"ms" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mt" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mu" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mv" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mw" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mx" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"my" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mz" = ( /obj/structure/ladder{ icon_state = "ladder01"; pixel_y = 16 }, /turf/simulated/open, /area/bridge/selfdestruct) -"fD" = ( +"mA" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mB" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mC" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mD" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mE" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mF" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -3155,20 +5956,27 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"fE" = ( +"mG" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"fF" = ( +"mH" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"fG" = ( +"mI" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mJ" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mK" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mL" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mM" = ( /obj/machinery/button/remote/airlock{ id = "sat1"; name = "SAT Access Bolts"; @@ -3195,7 +6003,11 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"fH" = ( +"mN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/bridge/selfdestruct) +"mO" = ( /obj/machinery/turretid/lethal{ ailock = 1; check_synth = 1; @@ -3216,7 +6028,22 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"fI" = ( +"mP" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mQ" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mR" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mS" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mT" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mU" = ( /obj/machinery/door/airlock/highsecurity{ icon_state = "door_locked"; id_tag = "sat1"; @@ -3227,64 +6054,41 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"fJ" = ( +"mV" = ( /turf/simulated/wall/r_wall, -/area/maintenance/research_port) -"fK" = ( +/area/bridge/selfdestruct) +"mW" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mX" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mY" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"mZ" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"na" = ( /obj/machinery/light/small/emergency{ dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"fL" = ( -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/down/supply, -/obj/structure/cable{ - d2 = 2; - icon_state = "11-2" - }, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/research_port) -"fM" = ( -/obj/structure/ladder{ - icon_state = "ladder01"; - pixel_y = 16 - }, -/turf/simulated/open, -/area/maintenance/research_port) -"fN" = ( -/obj/structure/cable{ - icon_state = "12-0" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 9 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/research_port) -"fO" = ( -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/research_port) -"fP" = ( +"nb" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nc" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nd" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"ne" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nf" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/blast/regular{ dir = 1; @@ -3293,119 +6097,77 @@ }, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"fQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"fR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"fS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"fT" = ( -/obj/machinery/light/small/emergency{ - icon_state = "bulb1"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"fU" = ( +"ng" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nh" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"ni" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nj" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nk" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nl" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"fV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, +"nm" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nn" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"no" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"np" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nq" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nr" = ( +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"fW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/meter, +/area/bridge/selfdestruct) +"ns" = ( +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"fX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 9 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/research_port) -"fY" = ( -/obj/random/junk, +/area/bridge/selfdestruct) +"nt" = ( +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"fZ" = ( +/area/bridge/selfdestruct) +"nu" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nv" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nw" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nx" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"ny" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/bridge/selfdestruct) +"nz" = ( /obj/machinery/porta_turret/stationary, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"ga" = ( +"nA" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -3421,14 +6183,114 @@ }, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"gb" = ( +"nB" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nC" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nD" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nE" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/securearea{ pixel_y = -32 }, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"gc" = ( +"nG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/bridge/selfdestruct) +"nH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/bridge/selfdestruct) +"nI" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nJ" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nK" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nL" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nM" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/bridge/selfdestruct) +"nO" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nP" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nQ" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nR" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nS" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/blast/regular{ + dir = 1; + id = "sat_blast"; + name = "Blast Door" + }, +/turf/simulated/floor/plating, +/area/bridge/selfdestruct) +"nU" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nV" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nW" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nX" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"nY" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/bridge/selfdestruct) +"nZ" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oa" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"ob" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oc" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"od" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oe" = ( /obj/machinery/button/remote/airlock{ id = "sat2"; name = "SAT Chamber Bolts"; @@ -3440,45 +6302,28 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"gd" = ( +"of" = ( /turf/simulated/wall/r_wall, -/area/maintenance/arrivals) -"ge" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"gf" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"gg" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"gh" = ( +/area/bridge/selfdestruct) +"og" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oh" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oi" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oj" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"ok" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"ol" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"om" = ( /obj/machinery/door/airlock/highsecurity{ icon_state = "door_locked"; id_tag = "sat2"; @@ -3489,30 +6334,46 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"gi" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - icon_state = "corner_white_full"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"gj" = ( -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"gk" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - icon_state = "corner_white_full"; - dir = 1 - }, -/obj/structure/sign/drop{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"gl" = ( +"on" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oo" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"op" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oq" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"or" = ( /turf/simulated/wall, /area/maintenance/arrivals) -"gm" = ( +"os" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"ot" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"ou" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"ov" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"ow" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"ox" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oy" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oz" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oA" = ( /obj/machinery/firealarm/north, /obj/item/device/radio/intercom{ dir = 4; @@ -3522,7 +6383,11 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"gn" = ( +"oB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/bridge/selfdestruct) +"oC" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb2, /obj/effect/decal/cleanable/cobweb2{ @@ -3531,29 +6396,58 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"go" = ( -/turf/simulated/open, -/area/turbolift/main_mid) -"gp" = ( +"oD" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oE" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oF" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oG" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oH" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"oI" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"oJ" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oK" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oL" = ( /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"gq" = ( +"oM" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"gr" = ( +"oN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/bridge/selfdestruct) +"oO" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"gs" = ( +"oP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/bridge/selfdestruct) +"oQ" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 @@ -3561,33 +6455,32 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"gt" = ( +"oR" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 8 }, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"gu" = ( -/obj/effect/floor_decal/corner/paleblue{ - icon_state = "corner_white"; - dir = 9 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled, +"oS" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oT" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oU" = ( +/turf/simulated/wall, /area/maintenance/arrivals) -"gv" = ( -/obj/effect/floor_decal/corner/paleblue{ - icon_state = "corner_white"; - dir = 6 - }, -/turf/simulated/floor/tiled, +"oV" = ( +/turf/simulated/wall, /area/maintenance/arrivals) -"gw" = ( +"oW" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oX" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"oY" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -3599,7 +6492,34 @@ }, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"gx" = ( +"oZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/bridge/selfdestruct) +"pa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/bridge/selfdestruct) +"pb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/bridge/selfdestruct) +"pc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/bridge/selfdestruct) +"pd" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/bridge/selfdestruct) +"pe" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 8 @@ -3612,12 +6532,19 @@ }, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"gy" = ( -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"gz" = ( +"pf" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"pg" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"ph" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"pi" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"pj" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -3625,7 +6552,7 @@ }, /turf/simulated/wall/r_wall, /area/bridge/selfdestruct) -"gA" = ( +"pk" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -3636,7 +6563,7 @@ }, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"gB" = ( +"pl" = ( /obj/machinery/power/apc/high{ name = "south bump"; pixel_y = -24 @@ -3651,13 +6578,21 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"gC" = ( +"pm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/bridge/selfdestruct) +"pn" = ( /obj/machinery/nuclearbomb/station, /obj/effect/decal/warning_stripes, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/reinforced, /area/bridge/selfdestruct) -"gD" = ( +"po" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/bridge/selfdestruct) +"pp" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 @@ -3669,14 +6604,29 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"gE" = ( -/obj/effect/floor_decal/corner/paleblue{ - icon_state = "corner_white"; - dir = 9 +"pq" = ( +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/plating, +/area/bridge/selfdestruct) +"pr" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"ps" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"pt" = ( +/turf/simulated/wall, /area/maintenance/arrivals) -"gF" = ( +"pu" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"pv" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"pw" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -3684,12 +6634,18 @@ }, /turf/simulated/wall/r_wall, /area/bridge/selfdestruct) -"gG" = ( +"px" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"py" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"pz" = ( /obj/structure/banner, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"gH" = ( +"pA" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/motion{ c_tag = "SAT Chamber - Motion"; @@ -3700,36 +6656,74 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"gI" = ( -/obj/item/tape/engineering{ - icon_state = "engineering_door"; - layer = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - icon_state = "door_locked"; - locked = 1; - name = "IT Department" - }, -/turf/simulated/floor/tiled, +"pB" = ( +/obj/structure/banner, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/bridge/selfdestruct) +"pC" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"pD" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"pE" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"pF" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"pG" = ( +/turf/simulated/wall, /area/maintenance/arrivals) -"gJ" = ( -/obj/effect/floor_decal/corner/pink{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, +"pH" = ( +/turf/simulated/wall, /area/maintenance/arrivals) -"gK" = ( -/obj/effect/floor_decal/corner/paleblue{ - icon_state = "corner_white"; - dir = 6 +"pI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/structure/sign/drop{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"pJ" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"pK" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"pL" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"pM" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"pN" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"pO" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"pP" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"pQ" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"pR" = ( +/turf/simulated/wall, /area/maintenance/arrivals) -"gL" = ( +"pS" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"pT" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"pU" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"pV" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -3747,41 +6741,98 @@ icon_state = "asteroidfloor" }, /area/mine/unexplored) -"gM" = ( +"pW" = ( /turf/simulated/wall/r_wall, -/area/maintenance/maintcentral) -"gN" = ( -/turf/simulated/open, -/area/turbolift/main_mid_aux) -"gO" = ( -/obj/effect/floor_decal/corner/paleblue{ - icon_state = "corner_white"; - dir = 9 - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, +/area/bridge/selfdestruct) +"pX" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"pY" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"pZ" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"qa" = ( +/turf/simulated/wall/r_wall, +/area/bridge/selfdestruct) +"qb" = ( +/turf/simulated/wall, /area/maintenance/arrivals) -"gP" = ( +"qc" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"qd" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 4 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/mine/unexplored) +"qe" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"qf" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"qg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 4 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/mine/unexplored) +"qh" = ( /obj/structure/ladder{ icon_state = "ladder01"; pixel_y = 16 }, /turf/simulated/open, /area/maintenance/maintcentral) -"gQ" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled, +"qi" = ( +/turf/simulated/wall, /area/maintenance/arrivals) -"gR" = ( +"qj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 4 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/mine/unexplored) +"qk" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 @@ -3791,27 +6842,116 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"gS" = ( -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"gT" = ( -/obj/effect/floor_decal/corner/paleblue/full, -/turf/simulated/floor/tiled, +"ql" = ( +/turf/simulated/wall, /area/maintenance/arrivals) -"gU" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - icon_state = "corner_white_full"; +"qm" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"qn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; dir = 4 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/mine/unexplored) +"qo" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"qp" = ( +/turf/simulated/wall, /area/maintenance/arrivals) -"gV" = ( +"qq" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"qr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 4 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/mine/unexplored) +"qs" = ( +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"qt" = ( +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"qu" = ( +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"qv" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"qw" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"qx" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"qy" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"qz" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"qA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 4 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/mine/unexplored) +"qB" = ( /obj/structure/table/rack, /obj/item/clothing/gloves/yellow, /obj/item/weapon/wirecutters, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"gW" = ( +"qC" = ( +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"qD" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, @@ -3821,71 +6961,47 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"gX" = ( +"qE" = ( +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"qF" = ( /obj/structure/table/rack, /obj/item/weapon/storage/toolbox/emergency, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"gY" = ( -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; +"qG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; dir = 8 }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"gZ" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"ha" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"hb" = ( -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"hc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; dir = 4 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"hd" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "fuckyou2"; - name = "exterior access button"; - pixel_x = -32; - pixel_y = -26 +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" }, -/turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"he" = ( +"qH" = ( /obj/structure/table/steel, /obj/item/device/radio, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"hf" = ( +"qI" = ( +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"qJ" = ( +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"qK" = ( +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"qL" = ( /obj/machinery/camera/motion{ c_tag = "Bunker - Emergency Exit Motion"; dir = 8; @@ -3895,64 +7011,30 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"hg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; +"qM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; dir = 8 }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; dir = 4 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"hh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"hi" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "fuckyou2_outer"; - locked = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"hj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"hk" = ( +/area/mine/unexplored) +"qN" = ( /obj/structure/table/steel, /obj/item/device/flashlight/heavy, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"hl" = ( +"qO" = ( /obj/machinery/button/remote/airlock{ id = "bunker5"; name = "Emergency Exit Outer Bolts"; @@ -3971,7 +7053,17 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"hm" = ( +"qP" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"qQ" = ( /obj/structure/sign/securearea{ name = "\improper EMERGENCY EXIT"; pixel_y = -32 @@ -3979,7 +7071,7 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"hn" = ( +"qR" = ( /obj/machinery/button/remote/blast_door{ id = "escape_blast"; name = "Hatch Blast Doors"; @@ -3989,74 +7081,25 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"ho" = ( -/obj/effect/floor_decal/corner/yellow/full, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"hp" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 10 +"qS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"hq" = ( -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"hr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; dir = 8 }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; dir = 4 }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"hs" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"ht" = ( -/obj/effect/decal/warning_stripes, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "fuckyou2"; - pixel_x = -32; - tag_airpump = "fuckyou2_pump"; - tag_chamber_sensor = "fuckyou2_sensor"; - tag_exterior_door = "fuckyou2_outer"; - tag_interior_door = "fuckyou2_inner" - }, -/obj/machinery/airlock_sensor{ - id_tag = "fuckyou2_sensor"; - pixel_x = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1379; - id_tag = "fuckyou2_pump" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"hu" = ( +/area/mine/unexplored) +"qT" = ( /obj/machinery/door/blast/regular{ id = "escape_blast"; name = "Bunker Blast Door" @@ -4072,174 +7115,53 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"hv" = ( -/obj/machinery/door/airlock/external, -/turf/simulated/floor/tiled, +"qU" = ( +/turf/simulated/wall, /area/maintenance/arrivals) -"hw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"hx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"hy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "fuckyou2_inner"; - locked = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"hz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"hA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"hB" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 8 - }, -/turf/simulated/floor/tiled, +"qV" = ( +/turf/simulated/wall, /area/maintenance/arrivals) -"hC" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, +"qW" = ( +/turf/simulated/wall, /area/maintenance/arrivals) -"hD" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, +"qX" = ( +/turf/simulated/wall, /area/maintenance/arrivals) -"hE" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 +"qY" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"qZ" = ( +/turf/simulated/wall, +/area/maintenance/arrivals) +"ra" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/structure/window/reinforced{ +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; dir = 8 }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"hF" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"hG" = ( -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"hH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "fuckyou2"; - name = "interior access button"; - pixel_x = 32; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"hI" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; dir = 4 }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"hJ" = ( -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 1 +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 +/area/mine/unexplored) +"rb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/turf/simulated/floor/tiled, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 + }, +/turf/simulated/floor/plating, /area/maintenance/maintcentral) -"hK" = ( +"rc" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -4247,7 +7169,7 @@ }, /turf/simulated/wall/r_wall, /area/maintenance/maintcentral) -"hL" = ( +"rd" = ( /obj/machinery/door/blast/regular{ id = "escape_blast"; name = "Bunker Blast Door" @@ -4263,227 +7185,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"hM" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"hN" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"hO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"hP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"hQ" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"hR" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"hS" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"hT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"hU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"hV" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"hW" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, +"re" = ( /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"hX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"hY" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/sign/securearea{ - name = "\improper NO ENTRY"; - pixel_x = 32; - pixel_y = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"hZ" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/corner/yellow/full, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"ia" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"ib" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "fuckyou1"; - name = "interior access button"; - pixel_x = 32; - pixel_y = -26 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"ic" = ( -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"id" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/corner/yellow/full, -/obj/structure/sign/drop{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"ie" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 8 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"if" = ( -/obj/effect/floor_decal/corner/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"ig" = ( -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 4 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"ih" = ( +"rf" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -4499,7 +7204,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"ii" = ( +"rg" = ( /obj/machinery/door/airlock/maintenance{ id_tag = "bunker6"; req_access = list(20) @@ -4511,7 +7216,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"ij" = ( +"rh" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -4528,7 +7233,7 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"ik" = ( +"ri" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -4541,7 +7246,7 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"il" = ( +"rj" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -4554,7 +7259,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"im" = ( +"rk" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -4562,7 +7267,7 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"in" = ( +"rl" = ( /obj/machinery/light/small/emergency, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -4570,100 +7275,25 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"io" = ( +"rm" = ( +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"rn" = ( +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"ro" = ( +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"rp" = ( +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"rq" = ( /obj/structure/sign/electricshock{ pixel_y = -32 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"ip" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"iq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"ir" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"is" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "fuckyou1_inner"; - locked = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"it" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"iu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"iv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"iw" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/library) -"ix" = ( +"rr" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -4676,673 +7306,2876 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"iy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ +"rs" = ( +/turf/simulated/wall, +/area/maintenance/library) +"rt" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/security/range) +"ru" = ( +/obj/structure/table/standard, +/obj/item/clothing/ears/earmuffs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/range) +"rv" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/security/range) +"rw" = ( +/obj/effect/floor_decal/industrial/loading, +/obj/machinery/light{ + icon_state = "tube1"; dir = 4 }, -/obj/structure/window/reinforced{ +/turf/simulated/floor/tiled, +/area/security/range) +"rx" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/spray/luminol, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/security/training) +"ry" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/structure/weightlifter, +/turf/simulated/floor/holofloor/tiled, +/area/mine/unexplored) +"rz" = ( +/obj/effect/floor_decal/corner/blue/full{ + icon_state = "corner_white_full"; dir = 8 }, +/turf/simulated/floor/holofloor/tiled, +/area/mine/unexplored) +"rA" = ( /obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"iz" = ( -/obj/effect/decal/warning_stripes, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "fuckyou1"; - pixel_x = -32; - tag_airpump = "fuckyou1_pump"; - tag_chamber_sensor = "fuckyou1_sensor"; - tag_exterior_door = "fuckyou1_outer"; - tag_interior_door = "fuckyou1_inner" - }, -/obj/machinery/airlock_sensor{ - id_tag = "fuckyou1_sensor"; - pixel_x = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "fuckyou1_pump" - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"iA" = ( -/turf/simulated/open, -/area/turbolift/command_mid) -"iB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"iC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/training) +"rB" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/security/training) +"rC" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/security/investigations) +"rD" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/open, +/area/security/training) +"rE" = ( +/turf/simulated/wall, +/area/medical/psych) +"rF" = ( +/turf/simulated/wall, +/area/medical/psych) +"rG" = ( +/turf/simulated/wall, +/area/medical/psych) +"rH" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/medical/psych) +"rI" = ( +/obj/structure/grille, /obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"iD" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "fuckyou1_outer"; - locked = 1 +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 }, /turf/simulated/floor/plating, -/area/maintenance/arrivals) -"iE" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "fuckyou1"; - name = "exterior access button"; - pixel_x = -32; - pixel_y = 26 +/area/medical/psych) +"rJ" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/medical/psych) +"rK" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/medical/psych) +"rL" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/psych) +"rM" = ( +/turf/simulated/wall, +/area/medical/psych) +"rN" = ( +/turf/simulated/wall, +/area/medical/psych) +"rO" = ( +/turf/simulated/wall, +/area/medical/psych) +"rP" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/medical/psych) +"rQ" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/medical/psych) +"rR" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/medical/psych) +"rS" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/medical/psych) +"rT" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/medical/psych) +"rU" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/psych) +"rV" = ( +/turf/simulated/wall, +/area/medical/psych) +"rW" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"rX" = ( +/turf/simulated/wall, +/area/medical/psych) +"rY" = ( +/obj/effect/floor_decal/corner/green/full{ + icon_state = "corner_white_full"; + dir = 8 + }, +/obj/structure/flora/pottedplant, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"rZ" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sa" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sb" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sc" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sd" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"se" = ( +/obj/effect/floor_decal/corner/green/full{ + icon_state = "corner_white_full"; + dir = 1 + }, +/obj/structure/flora/pottedplant, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sf" = ( +/turf/simulated/wall, +/area/medical/psych) +"sg" = ( +/obj/effect/floor_decal/corner/green/full{ + icon_state = "corner_white_full"; + dir = 8 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sh" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"si" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sj" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sk" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sl" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sm" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sn" = ( +/obj/effect/floor_decal/corner/green/full{ + icon_state = "corner_white_full"; + dir = 1 + }, +/obj/structure/flora/pottedplant, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"so" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"sp" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"sq" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"sr" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"ss" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"st" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"su" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"sv" = ( +/turf/simulated/wall, +/area/medical/psych) +"sw" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sD" = ( +/obj/machinery/door/airlock/medical{ + name = "Therapy Ward"; + req_access = list(64) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sE" = ( +/obj/effect/floor_decal/corner/green/full, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sF" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sG" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sH" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sI" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sJ" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sK" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"iF" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; icon_state = "2-4" }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sL" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 6 + }, +/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/white, +/area/medical/psych) +"sM" = ( +/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/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Maintenance Access"; + req_access = list(5) + }, /turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"iG" = ( +/area/medical/psych) +"sN" = ( +/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/plating, +/area/maintenance/medbay) +"sO" = ( +/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/plating, +/area/maintenance/medbay) +"sP" = ( +/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/plating, +/area/maintenance/medbay) +"sQ" = ( +/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/plating, +/area/maintenance/medbay) +"sR" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"sS" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"sT" = ( +/turf/simulated/wall, +/area/medical/psych) +"sU" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/structure/bed/chair/office/light{ + icon_state = "officechair_white"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = -25 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sV" = ( +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sW" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sX" = ( +/obj/structure/curtain, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sY" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/structure/bed/chair/office/light{ + icon_state = "officechair_white"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"sZ" = ( +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"ta" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"tb" = ( +/turf/simulated/wall, +/area/medical/psych) +"tc" = ( +/turf/simulated/wall, +/area/medical/psych) +"td" = ( +/turf/simulated/wall, +/area/medical/psych) +"te" = ( +/turf/simulated/wall, +/area/medical/psych) +"tf" = ( +/turf/simulated/wall, +/area/medical/psych) +"tg" = ( +/turf/simulated/wall, +/area/medical/psych) +"th" = ( +/turf/simulated/wall, +/area/medical/psych) +"ti" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"tj" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"tk" = ( +/turf/simulated/wall/r_wall, +/area/medical/psych) +"tl" = ( +/turf/simulated/wall/r_wall, +/area/medical/psych) +"tm" = ( +/turf/simulated/wall/r_wall, +/area/medical/psych) +"tn" = ( +/turf/simulated/wall/r_wall, +/area/medical/psych) +"to" = ( +/turf/simulated/wall/r_wall, +/area/medical/psych) +"tp" = ( +/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/plating, +/area/maintenance/medbay) +"tq" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"tr" = ( +/turf/simulated/wall, +/area/medical/psych) +"ts" = ( +/obj/structure/table/standard, +/obj/item/weapon/clipboard, +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"tt" = ( +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"tu" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"tv" = ( +/obj/structure/curtain, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"tw" = ( +/obj/structure/table/standard, +/obj/item/weapon/clipboard, +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"tx" = ( +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"ty" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"tz" = ( +/turf/simulated/wall, +/area/medical/psych) +"tA" = ( +/obj/structure/sink{ + dir = 8; + icon_state = "sink"; + pixel_x = -12; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/psych) +"tB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/psych) +"tC" = ( +/obj/machinery/light{ + dir = 1; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/psych) +"tD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/psych) +"tE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/psych) +"tF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Psychiatry Closet"; + req_access = list(64) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/psych) +"tG" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-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/white, +/area/medical/psych) +"tH" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"tI" = ( +/turf/simulated/wall/r_wall, +/area/medical/psych) +"tJ" = ( +/turf/simulated/floor/reinforced, +/area/medical/psych) +"tK" = ( +/obj/structure/table/steel, +/obj/structure/metronome, +/obj/machinery/light/small/red{ + tag = "icon-bulb1 (NORTH)"; + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/medical/psych) +"tL" = ( +/turf/simulated/floor/reinforced, +/area/medical/psych) +"tM" = ( +/turf/simulated/wall/r_wall, +/area/medical/psych) +"tN" = ( +/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/plating, +/area/maintenance/medbay) +"tO" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"tP" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"tQ" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"tR" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"tS" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"tT" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"tU" = ( +/turf/simulated/wall, +/area/medical/reception) +"tV" = ( +/turf/simulated/wall, +/area/medical/reception) +"tW" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/medical/reception) +"tX" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/reception) +"tY" = ( +/turf/simulated/wall, +/area/medical/reception) +"tZ" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/medical/reception) +"ua" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/reception) +"ub" = ( +/turf/simulated/wall, +/area/medical/reception) +"uc" = ( +/turf/simulated/wall, +/area/medical/reception) +"ud" = ( +/obj/structure/closet/secure_closet{ + name = "Psychiatrist's Locker"; + req_access = list(64) + }, +/obj/item/clothing/suit/straight_jacket{ + layer = 3 + }, +/obj/item/weapon/reagent_containers/pill/methylphenidate, +/obj/item/weapon/reagent_containers/pill/citalopram, +/obj/item/weapon/reagent_containers/pill/citalopram, +/obj/item/weapon/reagent_containers/syringe, +/obj/item/weapon/soap, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/psych) +"ue" = ( +/obj/structure/table/rack, +/obj/random/plushie, +/obj/random/plushie, +/obj/random/plushie, +/turf/simulated/floor/tiled/dark, +/area/medical/psych) +"uf" = ( +/obj/structure/table/wood, +/obj/item/weapon/mesmetron, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/medical/psych) +"ug" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled/dark, +/area/medical/psych) +"uh" = ( +/obj/structure/bed/chair/wheelchair, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/psych) +"ui" = ( +/turf/simulated/wall, +/area/medical/psych) +"uj" = ( +/obj/effect/floor_decal/corner/green/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"uk" = ( +/obj/effect/floor_decal/corner/green/full{ + icon_state = "corner_white_full"; + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"ul" = ( +/turf/simulated/wall/r_wall, +/area/medical/psych) +"um" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Isolation Room"; + dir = 4; + icon_state = "camera"; + network = list("Medical","Isolation Room") + }, +/turf/simulated/floor/reinforced, +/area/medical/psych) +"un" = ( +/turf/simulated/floor/reinforced, +/area/medical/psych) +"uo" = ( +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1481; + listening = 0; + name = "station intercom (Isolation Room)"; + pixel_x = 27; + pixel_y = 0 + }, +/turf/simulated/floor/reinforced, +/area/medical/psych) +"up" = ( +/turf/simulated/wall/r_wall, +/area/medical/psych) +"uq" = ( +/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{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"ur" = ( +/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/plating, +/area/maintenance/medbay) +"us" = ( +/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/plating, +/area/maintenance/medbay) +"ut" = ( +/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/plating, +/area/maintenance/medbay) +"uu" = ( +/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/plating, +/area/maintenance/medbay) +"uv" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"uw" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"ux" = ( +/turf/simulated/wall, +/area/medical/reception) +"uy" = ( +/obj/structure/lattice/catwalk, +/turf/simulated/open, +/area/medical/reception) +"uz" = ( +/turf/simulated/open, +/area/medical/reception) +"uA" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/medical/reception) +"uB" = ( +/turf/simulated/open, +/area/medical/reception) +"uC" = ( +/turf/simulated/open, +/area/medical/reception) +"uD" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/medical/reception) +"uE" = ( +/turf/simulated/open, +/area/medical/reception) +"uF" = ( +/turf/simulated/wall, +/area/medical/reception) +"uG" = ( +/turf/simulated/wall, +/area/medical/psych) +"uH" = ( +/turf/simulated/wall, +/area/medical/psych) +"uI" = ( +/turf/simulated/wall, +/area/medical/psych) +"uJ" = ( +/turf/simulated/wall, +/area/medical/psych) +"uK" = ( +/turf/simulated/wall, +/area/medical/psych) +"uL" = ( +/turf/simulated/wall, +/area/medical/psych) +"uM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 1 + }, +/obj/machinery/door/airlock/medical{ + name = "Therapy Ward"; + req_access = list(64) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"uN" = ( +/turf/simulated/wall, +/area/medical/psych) +"uO" = ( +/turf/simulated/wall/r_wall, +/area/medical/psych) +"uP" = ( +/turf/simulated/floor/reinforced, +/area/medical/psych) +"uQ" = ( +/turf/simulated/floor/reinforced, +/area/medical/psych) +"uR" = ( +/turf/simulated/floor/reinforced, +/area/medical/psych) +"uS" = ( +/turf/simulated/wall/r_wall, +/area/medical/psych) +"uT" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"uU" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"uV" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"uW" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"uX" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"uY" = ( +/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/plating, +/area/maintenance/medbay) +"uZ" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"va" = ( +/turf/simulated/wall, +/area/medical/reception) +"vb" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/open, +/area/medical/reception) +"vc" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/medical/reception) +"vd" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/medical/reception) +"ve" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/medical/reception) +"vf" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/medical/reception) +"vg" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/medical/reception) +"vh" = ( +/obj/structure/lattice, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/open, +/area/medical/reception) +"vi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "Psy" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/medical/reception) +"vj" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/machinery/requests_console{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/weapon/book/manual/psych, +/turf/simulated/floor/carpet, +/area/medical/psych) +"vk" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet, +/area/medical/psych) +"vl" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 32 + }, +/obj/structure/table/wood, +/obj/machinery/computer/med_data/laptop, +/turf/simulated/floor/carpet, +/area/medical/psych) +"vm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "Psy" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/medical/psych) +"vn" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/full{ + icon_state = "corner_white_full"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"vo" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"vp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"vq" = ( +/obj/effect/floor_decal/corner/green/full{ + icon_state = "corner_white_full"; + dir = 1 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"vr" = ( +/turf/simulated/wall/r_wall, +/area/medical/psych) +"vs" = ( +/turf/simulated/wall/r_wall, +/area/medical/psych) +"vt" = ( +/obj/machinery/door/airlock/medical{ + id_tag = "psiso"; + name = "Isolation Room"; + req_access = list(64) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/reinforced, +/area/medical/psych) +"vu" = ( +/turf/simulated/wall/r_wall, +/area/medical/psych) +"vv" = ( +/turf/simulated/wall/r_wall, +/area/medical/psych) +"vw" = ( +/turf/simulated/wall, +/area/medical/psych) +"vx" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"vy" = ( +/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/plating, +/area/maintenance/medbay) +"vz" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"vA" = ( +/turf/simulated/wall, +/area/medical/reception) +"vB" = ( +/obj/structure/lattice/catwalk, +/turf/simulated/open, +/area/medical/reception) +"vC" = ( +/turf/simulated/open, +/area/medical/reception) +"vD" = ( +/turf/simulated/open, +/area/medical/reception) +"vE" = ( +/turf/simulated/open, +/area/medical/reception) +"vF" = ( +/turf/simulated/open, +/area/medical/reception) +"vG" = ( +/turf/simulated/open, +/area/medical/reception) +"vH" = ( +/turf/simulated/open, +/area/medical/reception) +"vI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "Psy" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/medical/reception) +"vJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/medical/psych) +"vK" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/machinery/button/remote/airlock{ + id = "waiting_door"; + name = "Waiting Room Door Control"; + pixel_x = -16; + pixel_y = 36; + req_access = list(5) + }, +/obj/machinery/button/windowtint{ + id = "Psy"; + pixel_x = -16; + pixel_y = 26; + req_access = list(5) + }, +/turf/simulated/floor/carpet, +/area/medical/psych) +"vL" = ( +/turf/simulated/floor/carpet, +/area/medical/psych) +"vM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "Psy" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/medical/psych) +"vN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"vO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"vP" = ( +/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 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"vQ" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"vR" = ( +/turf/simulated/wall, +/area/medical/psych) +"vS" = ( +/obj/effect/floor_decal/corner/green/full{ + icon_state = "corner_white_full"; + dir = 8 + }, +/obj/machinery/button/remote/airlock{ + id = "psiso"; + pixel_x = 8; + pixel_y = 32; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"vT" = ( +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"vU" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"vV" = ( +/obj/effect/floor_decal/corner/green/full{ + icon_state = "corner_white_full"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"vW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/medical/psych) +"vX" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"vY" = ( +/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/plating, +/area/maintenance/medbay) +"vZ" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"wa" = ( +/turf/simulated/wall, +/area/medical/reception) +"wb" = ( +/obj/structure/lattice/catwalk, +/turf/simulated/open, +/area/medical/reception) +"wc" = ( +/turf/simulated/open, +/area/medical/reception) +"wd" = ( +/turf/simulated/open, +/area/medical/reception) +"we" = ( +/turf/simulated/open, +/area/medical/reception) +"wf" = ( +/turf/simulated/open, +/area/medical/reception) +"wg" = ( +/turf/simulated/open, +/area/medical/reception) +"wh" = ( +/turf/simulated/open, +/area/medical/reception) +"wi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "Psy" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/medical/reception) +"wj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/turf/simulated/floor/wood, +/area/medical/psych) +"wk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/medical/psych) +"wl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/medical/psych) +"wm" = ( +/obj/machinery/door/airlock/medical{ + name = "Psychiatrist Office"; + req_access = list(64) + }, +/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, +/area/medical/psych) +"wn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"wo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"wp" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"wq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"wr" = ( +/obj/machinery/door/airlock/medical{ + name = "Therapy Ward"; + req_access = list(64) + }, +/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/tiled/white, +/area/medical/psych) +"ws" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"wt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"wu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/chakraconsole{ + tag = "icon-body_scannerconsole (EAST)"; + icon_state = "body_scannerconsole"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"wv" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/chakrapod, +/turf/simulated/floor/plating, +/area/medical/psych) +"ww" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/medical/psych) +"wx" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"wy" = ( +/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/plating, +/area/maintenance/medbay) +"wz" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"wA" = ( +/turf/simulated/wall, +/area/medical/reception) +"wB" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/open, +/area/medical/reception) +"wC" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/medical/reception) +"wD" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/medical/reception) +"wE" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/medical/reception) +"wF" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/medical/reception) +"wG" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/medical/reception) +"wH" = ( +/obj/structure/lattice, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/open, +/area/medical/reception) +"wI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "Psy" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/medical/reception) +"wJ" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/medical/psych) +"wK" = ( +/turf/simulated/floor/wood, +/area/medical/psych) +"wL" = ( +/obj/structure/bed/psych, +/obj/item/weapon/bedsheet/brown, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/medical/psych) +"wM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "Psy" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/medical/psych) +"wN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"wO" = ( +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"wP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"wQ" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"wR" = ( +/turf/simulated/wall, +/area/medical/psych) +"wS" = ( +/obj/effect/floor_decal/corner/green/full, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"wT" = ( +/obj/structure/bed/chair/office/light, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"wU" = ( +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"wV" = ( +/obj/effect/floor_decal/corner/green/full{ + icon_state = "corner_white_full"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"wW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/medical/psych) +"wX" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"wY" = ( +/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/plating, +/area/maintenance/medbay) +"wZ" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"xa" = ( +/turf/simulated/wall, +/area/medical/reception) +"xb" = ( +/obj/structure/lattice/catwalk, +/turf/simulated/open, +/area/medical/reception) +"xc" = ( +/turf/simulated/open, +/area/medical/reception) +"xd" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/medical/reception) +"xe" = ( +/turf/simulated/open, +/area/medical/reception) +"xf" = ( +/turf/simulated/open, +/area/medical/reception) +"xg" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/medical/reception) +"xh" = ( +/turf/simulated/open, +/area/medical/reception) +"xi" = ( +/turf/simulated/wall, +/area/medical/reception) +"xj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Psy" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/medical/psych) +"xk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "Psy" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/medical/psych) +"xl" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + id = "Psy" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "Psy" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/medical/psych) +"xm" = ( +/turf/simulated/wall, +/area/medical/psych) +"xn" = ( +/turf/simulated/wall, +/area/medical/psych) +"xo" = ( +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/corner/green/full, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"xp" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"xq" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"xr" = ( +/turf/simulated/wall, +/area/medical/psych) +"xs" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 2 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/standard, +/obj/machinery/computer/med_data/laptop, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"xt" = ( +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/item/device/radio/intercom{ + frequency = 1481; + name = "station intercom (Isolation Room)"; + pixel_x = 0; + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"xu" = ( +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/machinery/computer/security/telescreen{ + layer = 4; + name = "Observation Screen"; + network = list("Isolation Room"); + pixel_x = 0; + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/requests_console{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/table/standard, +/obj/item/weapon/book/manual/psych, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"xv" = ( +/turf/simulated/wall, +/area/medical/psych) +"xw" = ( +/turf/simulated/wall, +/area/medical/psych) +"xx" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"xy" = ( +/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/plating, +/area/maintenance/medbay) +"xz" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"xA" = ( +/turf/simulated/wall, +/area/medical/reception) +"xB" = ( +/turf/simulated/wall, +/area/medical/reception) +"xC" = ( +/turf/simulated/wall, +/area/medical/reception) +"xD" = ( +/turf/simulated/wall, +/area/medical/reception) +"xE" = ( +/turf/simulated/wall, +/area/medical/reception) +"xF" = ( +/turf/simulated/wall, +/area/medical/reception) +"xG" = ( +/turf/simulated/wall, +/area/medical/reception) +"xH" = ( +/turf/simulated/wall, +/area/medical/reception) +"xI" = ( +/turf/simulated/wall, +/area/medical/reception) +"xJ" = ( +/turf/simulated/wall, +/area/medical/psych) +"xK" = ( +/turf/simulated/wall, +/area/medical/psych) +"xL" = ( +/obj/effect/floor_decal/corner/green/full, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"xM" = ( +/obj/effect/floor_decal/corner/green/full{ + icon_state = "corner_white_full"; + dir = 4 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/psych) +"xN" = ( +/turf/simulated/wall, +/area/medical/psych) +"xO" = ( +/turf/simulated/wall, +/area/medical/psych) +"xP" = ( +/turf/simulated/wall, +/area/medical/psych) +"xQ" = ( +/turf/simulated/wall, +/area/medical/psych) +"xR" = ( +/turf/simulated/wall, +/area/medical/psych) +"xS" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"xT" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"xU" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"xV" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"xW" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"xX" = ( +/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/plating, +/area/maintenance/medbay) +"xY" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"xZ" = ( +/turf/simulated/wall, +/area/medical/psych) +"ya" = ( +/turf/simulated/open, +/area/medical/psych) +"yb" = ( +/turf/simulated/open, +/area/medical/psych) +"yc" = ( +/turf/simulated/wall, +/area/medical/psych) +"yd" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"ye" = ( +/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/plating, +/area/maintenance/medbay) +"yf" = ( +/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/plating, +/area/maintenance/medbay) +"yg" = ( +/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/plating, +/area/maintenance/medbay) +"yh" = ( +/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/plating, +/area/maintenance/medbay) +"yi" = ( +/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/plating, +/area/maintenance/medbay) +"yj" = ( +/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/plating, +/area/maintenance/medbay) +"yk" = ( +/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/plating, +/area/maintenance/medbay) +"yl" = ( +/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/plating, +/area/maintenance/medbay) +"ym" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; icon_state = "1-8" }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"iH" = ( -/obj/effect/decal/warning_stripes, -/obj/structure/ladder{ - icon_state = "ladder01"; - pixel_y = 16 - }, -/turf/simulated/open, -/area/maintenance/maintcentral) -"iI" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"iJ" = ( -/obj/effect/decal/warning_stripes, -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/obj/structure/sign/emerg_exitZ{ - dir = 1; - icon_state = "emerg_exitZ"; - pixel_x = 32; - tag = "icon-emerg_exitZ (NORTH)" - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/maintcentral) -"iK" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - icon_state = "up-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - icon_state = "up-supply"; - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "12-0" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/maintcentral) -"iL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 9; + pixel_y = 0 }, -/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/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 9 }, /turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"iM" = ( -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - icon_state = "down-supply"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - icon_state = "down-scrubbers"; - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "11-8" - }, -/obj/structure/lattice, +/area/maintenance/medbay) +"yn" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yo" = ( +/turf/simulated/wall, +/area/medical/psych) +"yp" = ( /turf/simulated/open, -/area/maintenance/maintcentral) -"iN" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/obj/machinery/door/firedoor, +/area/medical/psych) +"yq" = ( +/turf/simulated/open, +/area/medical/psych) +"yr" = ( +/turf/simulated/wall, +/area/medical/psych) +"ys" = ( /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/plating, -/area/maintenance/maintcentral) -"iO" = ( +/area/maintenance/medbay) +"yt" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yu" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yv" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yw" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yx" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yy" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yz" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yA" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yB" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yC" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yD" = ( +/turf/simulated/wall, +/area/medical/psych) +"yE" = ( +/turf/simulated/wall, +/area/medical/psych) +"yF" = ( +/turf/simulated/wall, +/area/medical/psych) +"yG" = ( +/turf/simulated/wall, +/area/medical/psych) +"yH" = ( +/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/plating, +/area/maintenance/medbay) +"yI" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yJ" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yK" = ( +/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/plating, +/area/maintenance/medbay) +"yL" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yM" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yN" = ( +/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/plating, +/area/maintenance/medbay) +"yO" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yP" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yQ" = ( +/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/plating, +/area/maintenance/medbay) +"yR" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yS" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yT" = ( +/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/plating, +/area/maintenance/medbay) +"yU" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yV" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yW" = ( +/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/plating, +/area/maintenance/medbay) +"yX" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yY" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"yZ" = ( +/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/plating, +/area/maintenance/medbay) +"za" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"zb" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"zc" = ( +/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/plating, +/area/maintenance/medbay) +"zd" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"ze" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"zf" = ( +/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/plating, +/area/maintenance/medbay) +"zg" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"zh" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"zi" = ( +/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/plating, +/area/maintenance/medbay) +"zj" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"zk" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"zl" = ( +/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/plating, +/area/maintenance/medbay) +"zm" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"zn" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"zo" = ( +/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/plating, +/area/maintenance/medbay) +"zp" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"zq" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"zr" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"zs" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"zt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /obj/structure/cable/green{ d1 = 1; d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"iP" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/door/window/southleft, -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"iQ" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/door/window/southleft, -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"iR" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/door/window/southleft, -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"iS" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"iT" = ( -/turf/simulated/open, -/area/turbolift/cargo_mid) -"iU" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"iV" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"iW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"iX" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/library) -"iY" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/library) -"iZ" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/library) -"ja" = ( -/turf/simulated/floor/tiled, -/area/maintenance/library) -"jb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"jc" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "fuckyou3"; - name = "interior access button"; - pixel_x = 32; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"jd" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "fuckyou3_inner"; - locked = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"je" = ( -/obj/effect/decal/warning_stripes, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "fuckyou3"; - pixel_x = 0; - pixel_y = -32; - tag_airpump = "fuckyou3_pump"; - tag_chamber_sensor = "fuckyou3_sensor"; - tag_exterior_door = "fuckyou3_outer"; - tag_interior_door = "fuckyou3_inner" - }, -/obj/machinery/airlock_sensor{ - id_tag = "fuckyou3_sensor"; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "fuckyou3_pump" - }, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/library) -"jf" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "fuckyou3_outer"; - locked = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"jg" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "fuckyou3"; - name = "exterior access button"; - pixel_x = -32; - pixel_y = 26 - }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"jh" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"ji" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"jj" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"jk" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"jl" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"jm" = ( -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"jn" = ( -/obj/effect/floor_decal/corner/yellow/full, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/sign/drop{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"jo" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"jp" = ( -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"jq" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"jr" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(50) - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"js" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"jt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"ju" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"jv" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"jw" = ( -/turf/simulated/wall, -/area/maintenance/library) -"jx" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"jy" = ( -/obj/effect/decal/warning_stripes, -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/library) -"jz" = ( -/obj/effect/decal/warning_stripes, -/obj/structure/ladder{ - icon_state = "ladder01"; - pixel_y = 16 - }, -/turf/simulated/open, -/area/maintenance/library) -"jA" = ( -/obj/structure/disposalpipe/down{ - icon_state = "pipe-d"; - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/simulated/open, -/area/maintenance/library) -"jB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"jC" = ( -/obj/structure/disposalpipe/up{ - icon_state = "pipe-u"; - dir = 8 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/library) -"jD" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - icon_state = "up-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - icon_state = "up-supply"; - dir = 4 - }, -/obj/structure/disposalpipe/up{ - icon_state = "pipe-u"; - dir = 4 - }, -/obj/structure/cable{ - icon_state = "12-0" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/library) -"jE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small/emergency, -/obj/structure/cable{ +/area/maintenance/medbay) +"zu" = ( +/obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" @@ -5353,34 +10186,60 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, +/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/maintenance/library) -"jF" = ( -/obj/structure/disposalpipe/down{ - icon_state = "pipe-d"; +/area/maintenance/medbay) +"zv" = ( +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + icon_state = "down-scrubbers"; dir = 8 }, -/obj/structure/cable{ - d2 = 8; - icon_state = "11-8" - }, /obj/machinery/atmospherics/pipe/zpipe/down/supply{ icon_state = "down-supply"; dir = 8 }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - icon_state = "down-scrubbers"; +/obj/structure/cable/green{ + d2 = 8; + icon_state = "11-8" + }, +/obj/structure/disposalpipe/down{ + icon_state = "pipe-d"; dir = 8 }, /obj/structure/lattice/catwalk, +/obj/structure/sign/drop{ + pixel_y = 32 + }, /turf/simulated/open, -/area/maintenance/library) -"jG" = ( +/area/maintenance/medbay) +"zw" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"zx" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"zy" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"zz" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"zA" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"zB" = ( +/turf/simulated/wall, +/area/maintenance/medbay) +"zC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/selfdestruct) +"zD" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; dir = 8 @@ -5389,12 +10248,40 @@ icon_state = "asteroidfloor" }, /area/mine/unexplored) -"jH" = ( +"zE" = ( /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/mine/unexplored) -"jI" = ( +"zF" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/mine/unexplored) +"zG" = ( +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/mine/unexplored) +"zH" = ( +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/mine/unexplored) +"zI" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/mine/unexplored) +"zJ" = ( /obj/structure/ladder, /turf/simulated/open/airless, /area/mine/unexplored) @@ -13217,7 +18104,7 @@ ab ab ab ab -cI +ac ab ab aa @@ -13477,7 +18364,7 @@ ab ab ab ab -cI +ac aa aa aa @@ -13713,7 +18600,7 @@ aa aa aa ab -cI +ac ab ab ab @@ -13732,7 +18619,7 @@ ab ab ab ab -cI +ac ab ab ab @@ -13978,14 +18865,14 @@ ab ab ab ab -cI +ac ab ab ab ab ab ab -cI +ac ab ab ab @@ -14234,9 +19121,9 @@ ab ab ab ab -cI +ac ab -cI +ac ab ab ab @@ -15004,14 +19891,14 @@ ab ab ab ab -cI +ac ab ab aa ab ab ab -cI +ac ab ab ab @@ -15262,11 +20149,11 @@ ab ab ab aa -dO +ad aa aa aa -dO +ad aa ab ab @@ -15528,7 +20415,7 @@ aa aa aa ab -cI +ac ab ab ab @@ -16029,7 +20916,7 @@ aa aa aa aa -dO +ad aa aa aa @@ -16041,7 +20928,7 @@ aa aa aa aa -dO +ad ab ab ab @@ -16292,7 +21179,7 @@ aa aa aa aa -dO +ad aa aa aa @@ -16304,7 +21191,7 @@ ab ab ab ab -cI +ac aa aa aa @@ -16548,9 +21435,9 @@ aa aa aa aa -dO -dO -dO +ad +ad +ad aa aa aa @@ -16806,7 +21693,7 @@ aa aa aa aa -dO +ad aa aa aa @@ -17057,7 +21944,7 @@ aa aa aa aa -dO +ad aa aa aa @@ -17069,8 +21956,8 @@ aa aa aa aa -dO -cI +ad +ac ab ab ab @@ -17832,11 +22719,11 @@ aa aa aa aa -dO +ad aa aa aa -dO +ad aa aa aa @@ -18361,7 +23248,7 @@ ab ab ab ab -cI +ac aa aa aa @@ -18611,7 +23498,7 @@ ab ab ab ab -cI +ac ab ab ab @@ -18619,11 +23506,11 @@ ab ab ab ab -fJ -fJ -fJ -fJ -fJ +ae +ae +ae +ae +ae aa aa aa @@ -18876,11 +23763,11 @@ ab ab ab ab -fJ -fL -fQ -fV -fJ +ae +af +aj +an +ae aa aa aa @@ -19133,11 +24020,11 @@ ab ab ab ab -fJ -fM -fR -fW -fJ +ae +ag +ak +ao +ae aa aa aa @@ -19390,11 +24277,11 @@ ab ab ab ab -fJ -fN -fS -fX -fJ +ae +ah +al +ap +ae aa aa aa @@ -19631,7 +24518,7 @@ aa aa ab ab -cI +ac aa aa aa @@ -19647,11 +24534,11 @@ ab ab ab aa -fJ -fO -fT -fY -fJ +ae +ai +am +aq +ae aa aa aa @@ -19896,7 +24783,7 @@ aa aa ab ab -cI +ac ab ab ab @@ -19904,11 +24791,11 @@ ab ab ab aa -fJ -fJ -fJ -fJ -fJ +ae +ae +ae +ae +ae aa aa aa @@ -28192,14 +33079,14 @@ aa aa aa aa -iw +bU aa -iw +bU aa aa -iw +bU aa -iw +bU aa aa aa @@ -28223,12 +33110,12 @@ aa aa ab ab -dO -gy -jG -jG -jG -dO +ad +aB +zD +zF +zI +ad ab ab aa @@ -28448,16 +33335,16 @@ aa aa aa aa -iw -iw -iw -iw -iw -iw -iw -iw -iw -iw +bU +bU +bU +bU +bU +bU +bU +bU +bU +bU aa aa aa @@ -28480,12 +33367,12 @@ aa aa ab ab -dO -gy -gy -jH -jI -dO +ad +aB +aB +zG +zJ +ad ab ab aa @@ -28706,14 +33593,14 @@ aa aa aa aa -iw -iT -iT -iT -iT -iT -iT -iw +bU +cp +cp +cp +cp +cp +cp +bU aa aa aa @@ -28737,12 +33624,12 @@ aa aa ab ab -dO -gy -jH -jH -gy -dO +ad +aB +zE +zH +aB +ad ab ab aa @@ -28962,16 +33849,16 @@ aa aa aa aa -iw -iw -iT -iT -iT -iT -iT -iT -iw -iw +bU +bU +cp +cp +cp +cp +cp +cp +bU +bU aa aa aa @@ -28994,12 +33881,12 @@ aa aa ab ab -dO -dO -gy -gy -gy -dO +ad +ad +aB +aB +aB +ad ab ab aa @@ -29220,14 +34107,14 @@ aa aa aa aa -iw -iT -iT -iT -iT -iT -iT -iw +bU +cp +cp +cp +cp +cp +cp +bU aa aa aa @@ -29252,11 +34139,11 @@ aa aa ab ab -dO -dO -dO -dO -dO +ad +ad +ad +ad +ad ab ab aa @@ -29477,14 +34364,14 @@ aa aa aa aa -iw -iT -iT -iT -iT -iT -iT -iw +bU +cp +cp +cp +cp +cp +cp +bU aa aa aa @@ -29733,16 +34620,16 @@ aa aa aa aa -iw -iw -iT -iT -iT -iT -iT -iT -iw -iw +bU +bU +cp +cp +cp +cp +cp +cp +bU +bU aa aa aa @@ -29991,14 +34878,14 @@ aa aa aa aa -iw -iT -iT -iT -iT -iT -iT -iw +bU +cp +cp +cp +cp +cp +cp +bU aa aa aa @@ -30247,16 +35134,16 @@ aa aa aa aa -iw -iw -iw -iw -iw -iw -iw -iw -iw -iw +bU +bU +bU +bU +bU +bU +bU +bU +bU +bU aa aa aa @@ -30504,22 +35391,22 @@ aa aa aa aa -iw -iP -iU -ja -ja -ja -ja -jl -jn -iw -iw -iw -iw -iw -iw -iw +bU +cl +cq +cw +cw +cw +cw +cH +cJ +bU +bU +bU +bU +bU +bU +bU aa aa aa @@ -30714,7 +35601,7 @@ aa aa aa aa -gy +aB aa aa aa @@ -30761,22 +35648,22 @@ aa aa aa aa -iw -iQ -iV -jb -ja -ja -ja -ja -jo -jr -js -js -js -js -jt -iw +bU +cm +cr +cx +cw +cw +cw +cw +cK +da +cO +cO +cO +cO +cP +bU aa aa aa @@ -30969,13 +35856,13 @@ aa aa aa aa -gy +aB aa aa aa aa -dO -gy +ad +aB aa aa aa @@ -31018,22 +35905,22 @@ aa aa aa aa -iw -iR -iW -jc -ja -ja -ja -jm -jp -iw -iw -iw -iw -iw -ju -iw +bU +cn +cs +cy +cw +cw +cw +cI +cL +bU +bU +bU +bU +bU +cQ +bU aa aa aa @@ -31227,11 +36114,11 @@ aa aa aa aa -dO -gy -gy -gy -gy +ad +aB +aB +aB +aB aa aa aa @@ -31275,22 +36162,22 @@ aa aa aa aa -iw -iS -iX -jd -jh -jk -jk -jk -jq -iw +bU +co +ct +cz +cD +cG +cG +cG +cM +bU ab ab ab -iw -ju -iw +bU +cQ +bU aa aa aa @@ -31483,15 +36370,15 @@ aa aa aa aa -gy -gy -gy -gy -gy -gy +aB +aB +aB +aB +aB +aB aa aa -gy +aB aa aa aa @@ -31534,9 +36421,9 @@ aa ab ab ab -iY -je -ji +cu +cA +cE ab ab ab @@ -31545,9 +36432,9 @@ ab ab ab ab -iw -ju -iw +bU +cQ +bU aa aa aa @@ -31741,12 +36628,12 @@ aa aa aa aa -gd -gd -gI -gd -gd -gy +ar +ar +aD +ar +ar +aB aa aa aa @@ -31791,9 +36678,9 @@ aa aa ab ab -iZ -jf -jj +cv +cB +cF ab ab ab @@ -31802,9 +36689,9 @@ aa ab ab ab -iw -ju -iw +bU +cQ +bU aa aa aa @@ -31993,24 +36880,24 @@ aa aa ab ab -gd -gd -gd -gd -gd -gd -gj -gJ -gj -gd -gd -gd -gd -gd -gd -gd -gd -gd +ar +ar +ar +ar +ar +ar +aw +aE +aw +ar +ar +ar +ar +ar +ar +ar +ar +ar aa aa aa @@ -32049,7 +36936,7 @@ aa ab ab ab -jg +cC ab ab ab @@ -32059,9 +36946,9 @@ aa aa aa ab -iw -ju -iw +bU +cQ +bU aa aa aa @@ -32250,24 +37137,24 @@ aa aa ab ab -ge -gi -gj -gu -gj -gE -gj -gj -gj -gO -gQ -gE -gj -gT -gY -gj -ho -gd +as +av +aw +az +aw +aC +aw +aw +aw +aH +aI +aC +aw +aJ +aL +aw +aV +ar aa aa aa @@ -32316,9 +37203,9 @@ aa aa aa ab -iw -ju -iw +bU +cQ +bU aa aa aa @@ -32507,24 +37394,24 @@ aa aa ab ab -gf -gj -gj -gj -gj -gj -gj -gj -gj -gj -gj -gj -gj -gj -gj -gj -gj -gd +at +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ar aa aa aa @@ -32573,13 +37460,13 @@ aa aa aa ab -iw -ju -iw -iw -iw -iw -iw +bU +cQ +bU +bU +bU +bU +bU aa aa aa @@ -32764,28 +37651,28 @@ aa aa aa ab -gg -gk -gj -gv -gj -gv -gj -gK -gj -gv -gj -gv -gj -gU -gZ -gj -hp -gd -gd -gd -gd -gd +au +ax +aw +aA +aw +aA +aw +aF +aw +aA +aw +aA +aw +aK +aM +aw +aW +ar +ar +ar +ar +ar ab aa aa @@ -32830,13 +37717,13 @@ aa aa aa ab -iw -ju -jw -jy -jA -jD -iw +bU +cQ +rs +cS +cU +cX +bU aa aa aa @@ -33020,29 +37907,29 @@ aa aa aa aa -dO -gd -gd -gl -gl -gl -gl -gl -gd -gl -gl -gl -gl -gl -gd -ha -gj -gj -gl -hB -hM -hZ -ip +ad +ar +ar +or +or +or +or +or +ar +or +or +or +or +or +ar +aN +aw +aw +or +bi +br +bE +bN ab ab ab @@ -33087,13 +37974,13 @@ aa aa aa ab -iw -jv -jx -js -jB -jE -iw +bU +cR +cN +cO +cV +cY +bU aa aa ab @@ -33278,28 +38165,28 @@ aa aa aa aa -gd -gl -go -go -go -go -go -gl -gN -gN -gN -gN -gN -gl -gZ -gj -hp -gl -hC -hN -ia -iq +ar +or +ay +ay +ay +ay +ay +or +aG +aG +aG +aG +aG +or +aM +aw +aW +or +bj +bs +bF +bO ab ab ab @@ -33344,13 +38231,13 @@ aa aa aa ab -iw -iw -iw -jz -jC -jF -iw +bU +bU +bU +cT +cW +cZ +bU aa ab ab @@ -33535,30 +38422,30 @@ aa aa aa aa -gd -gl -go -go -go -go -go -gl -gN -gN -gN -gN -gN -gl -gj -gj -gj -gl -gj -hO -gj -ir -iy -iC +ar +or +ay +ay +ay +ay +ay +or +aG +aG +aG +aG +aG +or +aw +aw +aw +or +aw +bt +aw +bP +bV +bY ab ab aa @@ -33603,11 +38490,11 @@ aa ab ab ab -iw -iw -iw -iw -iw +bU +bU +bU +bU +bU aa ab ab @@ -33791,32 +38678,32 @@ aa aa aa aa -dO -gd -gl -go -go -go -go -go -gd -gN -gN -gN -gN -gN -gl -gZ -gj -hp -hv -gj -hP -ib -is -iz -iD -iE +ad +ar +or +ay +ay +ay +ay +ay +ar +aG +aG +aG +aG +aG +or +aM +aw +aW +bb +aw +bu +bG +bQ +bW +bZ +ca ab aa aa @@ -34049,30 +38936,30 @@ aa aa aa aa -gd -gl -go -go -go -go -go -gl -gN -gN -gN -gN -gN -gl -gj -gj -gj -gl -gj -gj -gj -it -iy -iC +ar +or +ay +ay +ay +ay +ay +or +aG +aG +aG +aG +aG +or +aw +aw +aw +or +aw +aw +aw +bR +bV +bY ab ab aa @@ -34306,28 +39193,28 @@ aa aa aa aa -gd -gl -go -go -go -go -go -gl -gN -gN -gN -gN -gN -gl -gZ -gj -hp -gl -hD -gj -ic -iu +ar +or +ay +ay +ay +ay +ay +or +aG +aG +aG +aG +aG +or +aM +aw +aW +or +bk +aw +bH +bS ab ab ab @@ -34562,29 +39449,29 @@ aa aa aa aa -dO -gd -gd -gl -gl -gd -gl -gl -gd -gl -gl -gd -gl -gl -gd -ha -gj -gj -gl -hb -hQ -hq -iv +ad +ar +ar +or +or +ar +or +or +ar +or +or +ar +or +or +ar +aN +aw +aw +or +aO +bv +aX +bT ab ab aa @@ -34820,28 +39707,28 @@ aa aa aa aa -gd -gd -gd -gd -gd -gd -gd -gd -gd -gd -gd -gd -gd -gd -hb -gj -hq -gd -gd -gd -gd -gd +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +aO +aw +aX +ar +ar +ar +ar +ar ab aa aa @@ -35078,23 +39965,23 @@ aa aa aa aa -dO +ad aa aa aa -dO +ad aa aa aa -dO +ad aa aa aa -gd -hc -hg -hr -gd +ar +aP +aR +aY +ar ab ab aa @@ -37086,15 +41973,15 @@ aa aa aa aa -ac -ae -ap -ay -ac -ae -ap -ay -ac +db +dn +dz +dR +db +dn +dz +dR +db aa aa aa @@ -37343,15 +42230,15 @@ aa aa aa aa -ac -af -aq -aq -aK -aT -aq -bo -ac +db +rt +dA +dA +ek +rv +dA +fm +db aa aa aa @@ -37600,28 +42487,28 @@ aa aa aa aa -ac -ag -ar -az -ac -aM -bf -aM -ac -ad -ad -ad -ad -ad -cJ -df -ad -dP -ad -cJ -df -ad +db +dp +dB +dT +db +en +eV +en +db +dk +dk +dk +dk +dk +hI +ij +dk +jl +dk +hI +ij +dk aa aa aa @@ -37857,28 +42744,28 @@ aa aa aa aa -ac -ah -as -aA -aL -aU -aV -bp -ac -bC -bO -cc -co -ad -cK -dg -dz -dQ -ej -eB -eR -ad +db +dq +dC +dU +em +eE +eF +fo +db +fW +gm +gC +gS +dk +hJ +ik +iL +jm +jN +ko +kO +dk aa aa aa @@ -38114,28 +43001,28 @@ aa aa aa aa -ac -ai -as -aA -aM -aV -aV -bq -ac -bD -bP -cd -cp -ad -cL -dh -dA -dR -ek -eC -eS -ad +db +dr +dC +dU +en +eF +eF +fp +db +ry +rz +gD +gT +dk +hK +il +iM +jn +jO +kp +kP +dk aa aa aa @@ -38371,28 +43258,28 @@ aa aa aa aa -ac -aj -as -aA -aL -aU -aV -bp -ac -bD -bQ -ce -cq -ad -cM -di -dA -dS -el -eD -eT -ad +db +ru +dC +dU +em +eE +eF +fo +db +fY +go +gE +gU +dk +hL +im +iM +jo +jP +kq +kQ +dk aa aa aa @@ -38628,28 +43515,28 @@ aa aa aa aa -ac -ak -at -aA -aM -aV -aV -br -ac -bE -bR -cf -cr -ad -cN -dj -dB -dR -ek -eE -eU -ad +db +dt +dF +dU +en +eF +eF +fr +db +fZ +gp +gF +gV +dk +hM +in +iO +jn +jO +kr +kR +dk aa aa aa @@ -38885,28 +43772,28 @@ aa aa aa aa -ac -al -au -aA -aL -aW -bg -bp -ac -bF -bS -cg -cs -ad -cK -dj -dC -dT +db +du +dG +dU em -eF -eV -ad +rw +fa +fo +db +ga +gq +gG +gW +dk +hJ +in +iP +jq +jR +ks +kS +dk aa aa aa @@ -39142,28 +44029,28 @@ aa aa aa aa -ac -am -av -aB -ac -ac -ac -ac -ac -bG -bT -ch -bG -ad -cO +db +dv +dH +dZ +db +db +db +db +db +gb +rA +rB +gb dk +hO +ip +ip +eu +dk +kt +kT dk -aO -ad -eG -eW -ad aa aa aa @@ -39399,31 +44286,31 @@ aa aa aa aa -ad -an -aw -aC -aN -aX -bh -bs -aX -bH -bU -aX -aX -cy -aX -aX -aX -dU -en -bU -eX -ad -ad -ad -ad +dk +dw +dI +ea +es +eK +fc +fu +eK +gc +gs +eK +eK +ho +eK +eK +eK +js +jT +gs +kU +dk +dk +dk +dk aa aa aa @@ -39656,31 +44543,31 @@ aa aa aa aa -ad -ao -ax -aD -aD -aY -bi -aD -by -aD -bV -aD -aD -cz -aD -aD -dD -dV -eo -eH -eY -fk -fu -fv -ad +dk +dx +dJ +eb +eb +eL +fd +eb +fN +eb +gt +eb +eb +hp +eb +eb +iS +jt +jU +kv +kV +lv +rD +lP +dk aa aa aa @@ -39913,31 +44800,31 @@ aa aa aa aa -ad -ad -ad -aE -aO -aZ -bj -aO -bz -bI -bW -ci -bz -bI -bW -ci -ad -dW -ep -eI -eZ -fl -fv -fv -ad +dk +dk +dk +ec +eu +eM +fe +eu +fO +ge +gu +gK +fO +ge +gu +gK +dk +ju +jV +kw +kW +lw +lP +lP +dk aa aa aa @@ -40172,29 +45059,29 @@ aa aa aa aa -ad -aF -aP -ba -bk -bt -bA -bJ -bX -cj -ct -cA -cP -dl -ad -ad -ad -ad -ad -fm -ad -ad -ad +dk +ed +ev +eN +ff +fx +fP +gf +gv +gL +hb +hr +hS +it +dk +dk +dk +dk +dk +lx +dk +dk +dk aa aa aa @@ -40429,27 +45316,27 @@ aa aa aa aa -ad -aG -aQ -bb -bl -bu -bB -bK -bY -ck -cu -cB -cQ -dm -ad -dX -eq -eJ -fa -fn -ad +dk +ee +ew +eO +fg +fy +fQ +gg +gw +gM +hc +hs +hT +iu +dk +jw +jX +ky +kY +ly +dk aa aa aa @@ -40686,41 +45573,27 @@ aa aa aa aa -ad -aH -aR -bc -bl -bv -bz -bL -bZ -cl -cv -cx -cR -dn -ad -ad -er -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +dk +ef +ex +eP +fg +rx +fO +gh +gx +gN +hd +hf +hU +iv +dk +dk +jY +dk +dk +dk +dk aa aa aa @@ -40740,6 +45613,20 @@ aa aa aa aa +ab +rF +rX +sv +sT +tr +tU +ux +va +vA +wa +wA +xa +xA aa aa aa @@ -40943,26 +45830,26 @@ aa aa aa aa -ad -aI -aS -bd -bm -bw -bA -bM -ca -cm -cw -cx -cS -do -dE -dY -es -dE -fb -fo +dk +eg +ey +eQ +fi +fA +fP +gi +gy +gO +he +hf +hV +iw +iX +jy +jZ +iX +la +lA ab ab aa @@ -40982,21 +45869,21 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +rG +rY +sw +sU +ts +tV +uy +vb +vB +wb +wB +xb +xB aa aa aa @@ -41200,26 +46087,26 @@ aa aa aa aa -ad -aJ -aJ -be -bn -bx -bB -bN -cb -cn -cx -cC -cT -dp -dE -dZ -et -dE -fb -fp +dk +eh +eh +eR +fj +fB +fQ +gj +gz +gP +hf +hv +hW +ix +iX +jz +ka +iX +la +lB ab ab ab @@ -41239,21 +46126,21 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +rH +rZ +sx +sV +tt +tW +uz +vc +vC +wc +wC +xc +xC aa aa aa @@ -41457,26 +46344,26 @@ aa aa aa aa -ad -ad -ad -ad -ad -ad -bz -bI -bW -bW -ci -bz -cU -dq -dE -dE -eu -dE -fc -dE +dk +dk +dk +dk +dk +dk +fO +ge +gu +gu +gK +fO +hX +iy +iX +iX +kb +iX +rC +iX ab ab ab @@ -41495,22 +46382,22 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +rI +sa +sy +sW +tu +tX +uA +vd +vD +wd +wD +xd +xD aa aa aa @@ -41725,15 +46612,15 @@ ab ab ab ab -cD -cV -dr -dF -ea -ev -eK -fd -fo +hx +hY +iz +ja +jB +kc +kD +ld +lA ab ab ab @@ -41752,22 +46639,22 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +rJ +sb +sz +sX +tv +tY +uB +ve +vE +we +wE +xe +xE aa aa aa @@ -41982,15 +46869,15 @@ ab ab ab ab -cE -cW -ds -dG -eb -ew -ds -fe -fp +hy +hZ +iA +jb +jC +kd +iA +le +lB ab ab ab @@ -42009,22 +46896,22 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +rK +sc +sA +sY +tw +tZ +uC +vf +vF +wf +wF +xf +xF aa aa aa @@ -42239,17 +47126,17 @@ ab ab ab ab -cF -cX -dt -dH -cF -cF -cF -cF -cF -fw -cF +hz +ia +iB +jc +hz +hz +hz +hz +hz +lT +hz ab ab aa @@ -42265,23 +47152,23 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +ab +rL +sd +sB +sZ +tx +ua +uD +vg +vG +wg +wG +xg +xG aa aa aa @@ -42496,17 +47383,17 @@ aa ab ab ab -cG -cY -du -dI -ec -ex -eL -ff -fq -fx -cG +hA +ib +iC +jd +jE +kf +kG +lg +lG +lU +hA ab ab aa @@ -42522,23 +47409,23 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +ab +rM +se +sC +ta +ty +ub +uE +vh +vH +wh +wH +xh +xH aa aa aa @@ -42753,17 +47640,17 @@ aa aa ab ab -cH -cZ -dv -dJ -ed -ey -eM -fg -eM -fy -fA +hB +ic +iD +je +jF +kg +kH +lh +kH +lV +mh ab ab aa @@ -42779,23 +47666,23 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +rE +rN +sf +sD +tb +tz +uc +uF +vi +vI +wi +wI +xi +xI aa aa aa @@ -43010,17 +47897,17 @@ aa ab ab ab -cF -da -du -dK -ee -ez -eN -fh -fr -fz -cH +hz +id +iC +jf +jG +kh +kI +li +lI +lW +hB ab ab aa @@ -43036,24 +47923,24 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +ab +rO +sg +sE +tc +tA +ud +uG +vj +vJ +wj +wJ +xj +ab +ab aa aa aa @@ -43267,17 +48154,17 @@ aa aa ab ab -cF -db -du -dL -ef -eA -eO -fi -fs -cF -cF +hz +ie +iC +jg +jH +ki +kJ +lj +lJ +hz +hz ab ab aa @@ -43294,24 +48181,24 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +rP +sh +sF +td +tB +ue +uH +vk +vK +wk +wK +xk +ab +ab +ab aa aa aa @@ -43524,16 +48411,16 @@ aa aa ab ab -cF -dc -du -dL -eg -cF -eP -fi -fi -cG +hz +if +iC +jg +jI +hz +kK +lj +lj +hA ab ab ab @@ -43551,25 +48438,25 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +rQ +si +sG +te +tC +uf +uI +vl +vL +wl +wL +xl +ab +ab +ab +ab aa aa aa @@ -43781,16 +48668,16 @@ aa ab ab ab -cG -dd -dw -dM -eh -cF -eQ -fj -ft -cH +hA +ig +iH +ji +jJ +hz +kL +ll +lL +hB ab ab ab @@ -43808,24 +48695,24 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +rR +sj +sH +tf +tD +ug +uJ +vm +vM +wm +wM +xm +ab +ab +ab aa aa aa @@ -44038,16 +48925,16 @@ aa aa ab ab -cH -de -dx -dN -ei -cF -cX -dy -dt -cF +hB +ih +iI +jj +jK +hz +ia +iJ +iB +hz ab ab ab @@ -44065,24 +48952,24 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +rS +sk +sI +tg +tE +uh +uK +vn +vN +wn +wN +xn +xJ +ab +ab aa aa aa @@ -44295,12 +49182,12 @@ aa aa ab ab -cF -cX -dy -dy -dt -cF +hz +ia +iJ +iJ +iB +hz ab ab ab @@ -44323,24 +49210,24 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +rT +sl +sJ +th +tF +ui +uL +vo +vO +wo +wO +xo +xK +xZ +yo +yD aa aa aa @@ -44580,24 +49467,24 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +rU +sm +sK +ti +tG +uj +uM +vp +vP +wp +wP +xp +xL +ya +yp +yE aa aa aa @@ -44837,24 +49724,24 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +rV +sn +sL +tj +tH +uk +uN +vq +vQ +wq +wQ +xq +xM +yb +yq +yF aa aa aa @@ -45095,36 +49982,36 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +rW +so +sM +tk +tI +ul +uO +vr +vR +wr +wR +xr +xN +yc +yr +yG +yJ +yM +yP +yS +yV +yY +zb +ze +zh +zk +zn +zs +zx aa aa aa @@ -45353,35 +50240,35 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +sp +sN +tl +tJ +um +uP +vs +vS +ws +wS +xs +xO +yd +ys +yH +yK +yN +yQ +yT +yW +yZ +zc +zf +zi +zl +zo +zt +zy aa aa aa @@ -45610,35 +50497,35 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +sq +sO +tm +tK +un +uQ +vt +vT +wt +wT +xt +xP +ye +yt +yI +yL +yO +yR +yU +yX +za +zd +zg +zj +zm +zp +zu +zz aa aa aa @@ -45868,6 +50755,20 @@ aa aa aa aa +sr +sP +tn +tL +uo +uR +vu +vU +wu +wU +xu +xQ +yf +yu aa aa aa @@ -45879,23 +50780,9 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +zq +zv +zA aa aa aa @@ -46125,6 +51012,20 @@ aa aa aa aa +ss +sQ +to +tM +up +uS +vv +vV +wv +wV +xv +xR +yg +yv aa aa aa @@ -46136,23 +51037,9 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +zr +zw +zB aa aa aa @@ -46382,20 +51269,20 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +st +sR +tp +tN +uq +uT +vw +vW +ww +wW +xw +xS +yh +yw aa aa aa @@ -46639,20 +51526,20 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +su +sS +tq +tO +ur +uU +ab +ab +ab +ab +ab +xT +yi +yx aa aa aa @@ -46899,17 +51786,17 @@ aa aa aa aa +tP +us +uV aa +ab +ab +ab aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +xU +yj +yy aa aa aa @@ -47156,17 +52043,17 @@ aa aa aa aa +tQ +ut +uW aa aa aa aa aa -aa -aa -aa -aa -aa -aa +xV +yk +yz aa aa aa @@ -47413,17 +52300,17 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +tR +uu +uX +vx +vX +wx +wX +xx +xW +yl +yA aa aa aa @@ -47670,17 +52557,17 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +tS +uv +uY +vy +vY +wy +wY +xy +xX +ym +yB aa aa aa @@ -47927,17 +52814,17 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +tT +uw +uZ +vz +vZ +wz +wZ +xz +xY +yn +yC aa aa aa @@ -49743,17 +54630,17 @@ aa aa aa aa -gM -gM -gM -gM -iw +bc +bc +bc +bc +bU aa aa -iw +bU aa aa -iw +bU aa aa aa @@ -50000,18 +54887,18 @@ aa aa ab ab -gM -hE -hR -id -iw -iw -iw -iw -iw -iw -iw -iw +bc +bl +bw +bI +bU +bU +bU +bU +bU +bU +bU +bU aa aa aa @@ -50257,27 +55144,27 @@ ab ab ab ab -hw -hF -hS -ie -iw -iA -iA -iA -iA -iA -iw +bd +bm +bx +bJ +bU +bX +bX +bX +bX +bX +bU aa aa aa aa aa aa -gM -gM -gM -gM +bc +bc +bc +bc aa aa aa @@ -50512,31 +55399,31 @@ aa aa ab ab -hh -hs -hx -hG -hT -hG -iw -iA -iA -iA -iA -iA -iw +aS +aZ +be +bn +by +bn +bU +bX +bX +bX +bX +bX +bU aa aa aa aa aa aa -gM -iH -iK -gM -gM -gM +bc +cd +cg +bc +bc +bc aa aa aa @@ -50768,32 +55655,32 @@ aa aa aa ab -hd -hi -ht -hy -hH -hU -hG -iw -iA -iA -iA -iA -iA -iw -iw +aQ +aT +ba +bf +bo +bz +bn +bU +bX +bX +bX +bX +bX +bU +bU aa aa aa aa aa -gM -iI -iL -iN -iO -gM +bc +ce +ch +cj +ck +bc aa aa aa @@ -51026,31 +55913,31 @@ aa aa ab ab -hj -hs -hz -hG -hG -hG -iw -iA -iA -iA -iA -iA -iw +aU +aZ +bg +bn +bn +bn +bU +bX +bX +bX +bX +bX +bU aa aa aa aa aa aa -gM -iJ -iM -gM -hX -gM +bc +cf +ci +bc +bC +bc aa aa aa @@ -51285,29 +56172,29 @@ aa ab ab ab -hA -hI -hG -if -iw -iA -iA -iA -iA -iA -iw -gM -gM -gM -gM -gM -gM -gM -gM -gM -gM -hX -gM +bh +bp +bn +bK +bU +bX +bX +bX +bX +bX +bU +bc +bc +bc +bc +bc +bc +bc +bc +bc +bc +bC +bc aa aa aa @@ -51542,29 +56429,29 @@ aa ab ab ab -gM -hJ -hV -ig -iw -iw -iw -iw -iw -iw -iw -gM -iF -iB -iB -iB -iB -iB -iB -iB -iB -iG -gM +bc +bq +bA +bL +bU +bU +bU +bU +bU +bU +bU +bc +cb +bM +bM +bM +bM +bM +bM +bM +bM +cc +bc aa aa aa @@ -51799,29 +56686,29 @@ aa aa aa aa -gM -gM -hW -gM -iw +bc +bc +bB +bc +bU aa aa -iw +bU aa aa -iw -gM -hX -gM -gM -gM -gM -gM -gM -gM -gM -gM -gM +bU +bc +bC +bc +bc +bc +bc +bc +bc +bc +bc +bc +bc aa aa aa @@ -52040,11 +56927,11 @@ aa aa aa aa -fB -fB -fB -fB -fB +mo +mo +mo +mo +mo aa aa aa @@ -52057,19 +56944,19 @@ aa aa aa aa -gM -hX -gM -gM -gM -gM -gM -gM -gM -gM -gM -hX -gM +bc +bC +bc +bc +bc +bc +bc +bc +bc +bc +bc +bC +bc aa aa aa @@ -52296,37 +57183,37 @@ aa aa aa aa -fB -fB -fB -fB -gz -gF -gF -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -hK -hY -ih -ix -iB -iB -iB -iB -iB -iB -iB -iG -gM +mo +mo +mo +mo +pj +pw +pw +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV +rc +bD +rf +rr +bM +bM +bM +bM +bM +bM +bM +cc +bc aa aa aa @@ -52539,27 +57426,27 @@ aa aa aa aa -fB -fB -fB -fB +mo +mo +mo +mo aa aa -fB -fB -fB -fB -fB +mo +mo +mo +mo +mo aa aa -fB -fB -fB -gp -gw -gA -fB -fB +mo +mo +mo +oL +oY +pk +mo +mo aa aa aa @@ -52571,19 +57458,19 @@ aa aa aa aa -gM -gM -ii -gM -gM -gM -gM -gM -gM -gM -gM -gM -gM +bc +bc +rg +bc +bc +bc +bc +bc +bc +bc +bc +bc +bc aa aa aa @@ -52795,29 +57682,29 @@ aa aa aa aa -fB -fB -fB -fB -fB -fB -fB -fB -fB -fB -fB -fB -fB -fB -fB -fB -fB -gq -gq -gB -fB -fB -fB +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +oM +oM +pl +mo +mo +mo aa aa aa @@ -52829,9 +57716,9 @@ aa aa aa aa -gM -ij -gM +bc +rh +bc aa aa aa @@ -53051,30 +57938,30 @@ aa aa aa aa -fB -fB -fB -fD -fG -fB -fB -fB -fB -fU -fK -gb -fB -fB -fB -fB -fB -gm -fE -fE -fE -gG -fB -fB +mo +mo +mo +mF +mM +mo +mo +mo +mo +nl +na +nF +mo +mo +mo +mo +mo +oA +mG +mG +mG +pz +mo +mo aa aa aa @@ -53086,9 +57973,9 @@ aa aa aa aa -gM -hX -gM +bc +bC +bc aa aa aa @@ -53308,30 +58195,30 @@ aa aa aa aa -fB -fB -fC -fE -fE -fI -fK -fP -fU -fU -fZ -fU -fU -fP -fK -gc -gh -fE -gr -fE -gC -gH -fB -fB +mo +mo +mz +mG +mG +mU +na +nf +nl +nl +nz +nl +nl +nf +na +oe +om +mG +oO +mG +pn +pA +mo +mo aa aa aa @@ -53343,9 +58230,9 @@ aa aa aa aa -gM -hX -gM +bc +bC +bc aa aa aa @@ -53565,30 +58452,30 @@ aa aa aa aa -fB -fB -fB -fF -fH -fB -fB -fB -fB -fU -ga -gb -fB -fB -fB -fB -fB -gn -fE -fE -fE -gG -fB -fB +mo +mo +mo +zC +mO +mo +mo +mo +mo +nl +nA +nF +mo +mo +mo +mo +mo +oC +mG +mG +mG +pz +mo +mo aa aa aa @@ -53600,9 +58487,9 @@ aa aa aa aa -gM -hX -gM +bc +bC +bc aa aa aa @@ -53823,29 +58710,29 @@ aa aa aa aa -fB -fB -fB -fB -fB -fB -fB -fB -fB -fB -fB -fB -fB -fB -fB -fB -fB -gs -gs -gD -fB -fB -fB +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +oQ +oQ +pp +mo +mo +mo aa aa aa @@ -53857,9 +58744,9 @@ aa aa aa aa -gM -hX -gM +bc +bC +bc aa aa aa @@ -54081,27 +58968,27 @@ aa aa aa aa -fB -fB -fB -fB +mo +mo +mo +mo aa aa -fB -fB -fB -fB -fB +mo +mo +mo +mo +mo aa aa -fB -fB -fB -gt -gx -gt -fB -fB +mo +mo +mo +oR +pe +oR +mo +mo aa aa aa @@ -54114,9 +59001,9 @@ aa aa aa aa -gM -ik -gM +bc +ri +bc aa aa aa @@ -54352,13 +59239,13 @@ aa aa aa aa -fB -fB -fB -fB -fB -fB -fB +mo +mo +mo +mo +mo +mo +mo aa aa aa @@ -54371,9 +59258,9 @@ aa aa aa aa -gM -il -gM +bc +rj +bc aa aa aa @@ -54610,11 +59497,11 @@ aa aa aa aa -fB -fB -fB -fB -fB +mo +mo +mo +mo +mo aa aa aa @@ -54628,9 +59515,9 @@ aa aa aa aa -gM -hX -gM +bc +bC +bc aa aa aa @@ -54885,9 +59772,9 @@ aa aa aa aa -gM -hX -gM +bc +bC +bc aa aa aa @@ -55142,9 +60029,9 @@ aa aa aa aa -gM -hX -gM +bc +bC +bc aa aa aa @@ -55399,9 +60286,9 @@ aa aa aa aa -gM -hX -gM +bc +bC +bc aa aa aa @@ -55656,9 +60543,9 @@ aa aa aa aa -gM -im -gM +bc +rk +bc aa aa aa @@ -55913,9 +60800,9 @@ aa aa aa aa -gM -in -gM +bc +rl +bc aa aa aa @@ -56163,16 +61050,16 @@ aa aa aa aa -gM -gM -gM -gM -gM +bc +bc +bc +bc +bc aa aa -gM -gS -gM +bc +qs +bc aa aa aa @@ -56419,17 +61306,17 @@ aa aa aa aa -gM -gM -gM -gM -gM -gM -gM +bc +bc +bc +bc +bc +bc +bc aa -gM -gS -gM +bc +qs +bc aa aa aa @@ -56673,20 +61560,20 @@ aa aa aa aa -gM -gM -gM -gM -gM -gV -he -hk -gM -gM -gM -gM -gS -gM +bc +bc +bc +bc +bc +qB +qH +qN +bc +bc +bc +bc +qs +bc aa aa aa @@ -56929,21 +61816,21 @@ aa aa aa aa -gM -gM -gM -gM -gM -gS -gS -gS -hl -gM -gM -gM -gM -gS -gM +bc +bc +bc +bc +bc +qs +qs +qs +qO +bc +bc +bc +bc +qs +bc aa aa aa @@ -57186,21 +62073,21 @@ aa aa aa aa -gM -gM -gP -gR -gR -gS -gW -gS -gR -hu -gW -hL -gS -io -gM +bc +bc +qh +qk +qk +qs +qD +qs +qk +qT +qD +rd +qs +rq +bc aa aa aa @@ -57443,21 +62330,21 @@ aa aa aa aa -gM -gM -gM -gM -gM -gS -gS -gS -hm -gM -gM -gM -gM -gM -gM +bc +bc +bc +bc +bc +qs +qs +qs +qQ +bc +bc +bc +bc +bc +bc aa aa aa @@ -57701,17 +62588,17 @@ aa aa aa aa -gM -gM -gM -gM -gM -gX -hf -hn -gM -gM -gM +bc +bc +bc +bc +bc +qF +qL +qR +bc +bc +bc aa aa aa @@ -57961,13 +62848,13 @@ aa aa aa aa -gM -gM -gM -gM -gM -gM -gM +bc +bc +bc +bc +bc +bc +bc aa aa aa @@ -58219,11 +63106,11 @@ aa aa aa aa -gM -gM -gM -gM -gM +bc +bc +bc +bc +bc aa aa aa