diff --git a/code/datums/supplypacks/misc.dm b/code/datums/supplypacks/misc.dm index e2ff8049c9..bb71372f49 100644 --- a/code/datums/supplypacks/misc.dm +++ b/code/datums/supplypacks/misc.dm @@ -153,6 +153,7 @@ containertype = /obj/structure/closet/crate/thinktronic containername = "Holoplant crate" +/* CHOMPedit, moved to medical.dm in modular folder /datum/supply_pack/misc/glucose_hypos name = "Glucose Hypoinjectors" contains = list( @@ -161,7 +162,7 @@ cost = 25 containertype = /obj/structure/closet/crate/zenghu containername = "Glucose Hypo Crate" - +*/ /datum/supply_pack/misc/mre_rations num_contained = 6 name = "Emergency - MREs" diff --git a/code/game/area/Space Station 13 areas_ch.dm b/code/game/area/Space Station 13 areas_ch.dm index 4d69fe8e4e..e6cd444b5d 100644 --- a/code/game/area/Space Station 13 areas_ch.dm +++ b/code/game/area/Space Station 13 areas_ch.dm @@ -114,3 +114,7 @@ /area/medical/cryo/autoresleeve name = "\improper Medical Autoresleeving" forbid_events = TRUE + +/area/rnd/research/particleaccelerator + name = "\improper Particle Accelerator Lab" + icon_state = "toxlab" \ No newline at end of file diff --git a/code/game/jobs/job_controller.dm b/code/game/jobs/job_controller.dm index 63f8a702e0..ed7b64dfca 100644 --- a/code/game/jobs/job_controller.dm +++ b/code/game/jobs/job_controller.dm @@ -427,9 +427,10 @@ var/global/datum/controller/occupations/job_master // Try desperately (and sorta poorly) to equip the item. Now with increased desperation! if(G.slot && !(G.slot in custom_equip_slots)) var/metadata = H.client.prefs.gear[G.display_name] - if(G.slot == slot_wear_mask || G.slot == slot_wear_suit || G.slot == slot_head) - custom_equip_leftovers += thing - else if(H.equip_to_slot_or_del(G.spawn_item(H, metadata), G.slot)) + //if(G.slot == slot_wear_mask || G.slot == slot_wear_suit || G.slot == slot_head) + // custom_equip_leftovers += thing + //else + if(H.equip_to_slot_or_del(G.spawn_item(H, metadata), G.slot)) to_chat(H, "Equipping you with \the [thing]!") if(G.slot != slot_tie) custom_equip_slots.Add(G.slot) diff --git a/code/game/objects/items/devices/ticket_printer.dm b/code/game/objects/items/devices/ticket_printer.dm index 8817c7ec87..971580295b 100644 --- a/code/game/objects/items/devices/ticket_printer.dm +++ b/code/game/objects/items/devices/ticket_printer.dm @@ -3,6 +3,7 @@ desc = "It prints security citations!" icon = 'icons/obj/device_vr.dmi' icon_state = "sec_ticket_printer" + slot_flags = SLOT_BELT | SLOT_HOLSTER var/print_cooldown = 1 MINUTE var/last_print diff --git a/code/game/objects/items/weapons/storage/egg_vr.dm b/code/game/objects/items/weapons/storage/egg_vr.dm index 97da55c4ff..3ee2e0046e 100644 --- a/code/game/objects/items/weapons/storage/egg_vr.dm +++ b/code/game/objects/items/weapons/storage/egg_vr.dm @@ -15,6 +15,7 @@ show_messages = 0 allow_quick_empty = TRUE use_sound = 'sound/items/drop/flesh.ogg' + var/egg_name = null //CHOMPAdd /obj/item/weapon/storage/vore_egg/Initialize() . = ..() diff --git a/code/modules/admin/verbs/smite_vr.dm b/code/modules/admin/verbs/smite_vr.dm index f1a1a08deb..fc8452831c 100644 --- a/code/modules/admin/verbs/smite_vr.dm +++ b/code/modules/admin/verbs/smite_vr.dm @@ -130,7 +130,7 @@ if(SMITE_AD_SPAM) if(target.client) - create_fake_ad_popup_multiple(/obj/screen/popup/default, 15) + target.client.create_fake_ad_popup_multiple(/obj/screen/popup/default, 15) else return //Injection? Don't print any messages. diff --git a/code/modules/client/preference_setup/general/03_body.dm b/code/modules/client/preference_setup/general/03_body.dm index d877793039..fa84225b27 100644 --- a/code/modules/client/preference_setup/general/03_body.dm +++ b/code/modules/client/preference_setup/general/03_body.dm @@ -405,14 +405,17 @@ var/global/list/valid_bloodtypes = list("A+", "A-", "B+", "B-", "AB+", "AB-", "O var/obj/item/organ/external/O = character.organs_by_name[N] O.markings.Cut() + var/priority = 0 for(var/M in pref.body_markings) + priority += 1 var/datum/sprite_accessory/marking/mark_datum = body_marking_styles_list[M] var/mark_color = "[pref.body_markings[M]]" for(var/BP in mark_datum.body_parts) var/obj/item/organ/external/O = character.organs_by_name[BP] if(O) - O.markings[M] = list("color" = mark_color, "datum" = mark_datum) + O.markings[M] = list("color" = mark_color, "datum" = mark_datum, "priority" = priority) + character.markings_len = priority var/list/last_descriptors = list() if(islist(pref.body_descriptors)) diff --git a/code/modules/economy/vending_machines.dm b/code/modules/economy/vending_machines.dm index 101df4b4dc..114c01f912 100644 --- a/code/modules/economy/vending_machines.dm +++ b/code/modules/economy/vending_machines.dm @@ -284,7 +284,7 @@ /obj/item/weapon/reagent_containers/food/snacks/fruitbar = 16, /obj/item/weapon/reagent_containers/food/snacks/liquidfood = 8, /obj/item/weapon/reagent_containers/pill/diet = 8, - ///obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose = 5, //VOREStation Removal, + /obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose = 5, //VOREStation Removal, //CHOMPedit nah /obj/item/weapon/towel/random = 8, /obj/item/toy/tennis = 4) @@ -296,7 +296,7 @@ /obj/item/weapon/reagent_containers/food/snacks/fruitbar = 5, /obj/item/weapon/reagent_containers/food/snacks/liquidfood = 5, /obj/item/weapon/reagent_containers/pill/diet = 25, - ///obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose = 5, + /obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose = 5, //CHOMPedit nah /obj/item/weapon/towel/random = 20, /obj/item/toy/tennis = 15) //VOREStation Edit End diff --git a/code/modules/food/drinkingglass/metaglass_vr.dm b/code/modules/food/drinkingglass/metaglass_vr.dm index 06abdba8c1..fe86ff962a 100644 --- a/code/modules/food/drinkingglass/metaglass_vr.dm +++ b/code/modules/food/drinkingglass/metaglass_vr.dm @@ -234,3 +234,8 @@ /datum/reagent/ethanol/angelskiss glass_icon_file = 'icons/obj/drinks_vr.dmi' + +/datum/reagent/ethanol/burnout + glass_icon_state = "burnout" + glass_center_of_mass = list("x"=16, "y"=8) + glass_icon_file = 'icons/obj/drinks_vr.dmi' diff --git a/code/modules/mob/living/carbon/human/ai_controlled/ai_controlled_vr.dm b/code/modules/mob/living/carbon/human/ai_controlled/ai_controlled_vr.dm new file mode 100644 index 0000000000..1dbd38868c --- /dev/null +++ b/code/modules/mob/living/carbon/human/ai_controlled/ai_controlled_vr.dm @@ -0,0 +1,2 @@ +/mob/living/carbon/human/ai_controlled + sensorpref = 1 diff --git a/code/modules/mob/living/carbon/human/human_defines_vr.dm b/code/modules/mob/living/carbon/human/human_defines_vr.dm index 69a008029c..39c4f11cbc 100644 --- a/code/modules/mob/living/carbon/human/human_defines_vr.dm +++ b/code/modules/mob/living/carbon/human/human_defines_vr.dm @@ -9,6 +9,7 @@ var/sensorpref = 5 //Suit sensor loadout pref var/wings_hidden = FALSE var/tail_hidden = FALSE + var/markings_len = 0 //mostly an arbitrary number /mob/living/carbon/human/proc/shadekin_get_energy() var/datum/species/shadekin/SK = species diff --git a/code/modules/mob/living/carbon/human/human_helpers_vr.dm b/code/modules/mob/living/carbon/human/human_helpers_vr.dm index b8e9d75b30..14ed52bd8c 100644 --- a/code/modules/mob/living/carbon/human/human_helpers_vr.dm +++ b/code/modules/mob/living/carbon/human/human_helpers_vr.dm @@ -7,3 +7,116 @@ var/static/icon/ingame_hud_med_vr = icon('icons/mob/hud_med_vr.dmi') hud_list[STATUS_R_HUD] = gen_hud_image(ingame_hud_vr, src, plane = PLANE_CH_STATUS_R) hud_list[BACKUP_HUD] = gen_hud_image(ingame_hud_vr, src, plane = PLANE_CH_BACKUP) hud_list[VANTAG_HUD] = gen_hud_image(ingame_hud_vr, src, plane = PLANE_CH_VANTAG) + +/mob/living/carbon/human/proc/remove_marking(var/datum/sprite_accessory/marking/mark_datum) + if (!mark_datum) + return FALSE + var/successful = FALSE + for(var/BP in mark_datum.body_parts) + var/obj/item/organ/external/O = organs_by_name[BP] + if(O) + successful = O.markings.Remove(mark_datum.name) || successful + if (successful) + markings_len -= 1 + update_dna() + update_icons_body() + return TRUE + return FALSE + +/mob/living/carbon/human/proc/add_marking(var/datum/sprite_accessory/marking/mark_datum, var/mark_color = "#000000") + if (!mark_datum) + return FALSE + var/success = FALSE + for(var/BP in mark_datum.body_parts) + var/obj/item/organ/external/O = organs_by_name[BP] + if(O) + success = TRUE + O.markings[mark_datum.name] = list("color" = mark_color, "datum" = mark_datum, "priority" = markings_len + 1) + if (success) + markings_len += 1 + update_dna() + update_icons_body() + return success + +/mob/living/carbon/human/proc/change_priority_of_marking(var/datum/sprite_accessory/marking/mark_datum, var/move_down, var/swap = TRUE) //move_down should be true/false + if (!mark_datum) + return FALSE + var/change = move_down ? 1 : -1 + var/success = FALSE + for(var/BP in mark_datum.body_parts) + var/obj/item/organ/external/O = organs_by_name[BP] + if(O) + var/index = O.markings.Find(mark_datum.name) + if (!index) + continue + var/change_from = O.markings[mark_datum.name]["priority"] + if (change_from == clamp(change_from + change, 1, markings_len)) + continue + if (!success) + success = TRUE + change_priority_marking_to_priority(change_from + change, change_from) + O.markings[mark_datum.name]["priority"] = clamp(change_from + change, 1, markings_len) + if ((move_down && index == O.markings.len) || (!move_down && index == 1)) + continue + if (O.markings[O.markings[index + change]]["priority"] == change_from) + moveElement(O.markings, index, index+(move_down ? 2 : -1)) + if (success) + update_dna() + update_icons_body() + return TRUE + +/mob/living/carbon/human/proc/change_priority_marking_to_priority(var/priority, var/to_priority) + for (var/obj/item/organ/external/O in organs) + for (var/marking in O.markings) + if (O.markings[marking]["priority"] == priority) + O.markings[marking]["priority"] = to_priority + +/mob/living/carbon/human/proc/change_marking_color(var/datum/sprite_accessory/marking/mark_datum, var/mark_color = "#000000") + if (!mark_datum) + return FALSE + var/success = FALSE + for(var/BP in mark_datum.body_parts) + var/obj/item/organ/external/O = organs_by_name[BP] + if(O && O.markings[mark_datum.name] && O.markings[mark_datum.name]["color"] != mark_color) + success = TRUE + O.markings[mark_datum.name]["color"] = mark_color + if (success) + update_dna() + update_icons_body() + return success + +/mob/living/carbon/human/proc/get_prioritised_markings() + var/list/markings = list() + var/list/priorities = list() + for(var/obj/item/organ/external/O in organs) + if(O.markings?.len) + for (var/marking in O.markings) + var/priority = num2text(O.markings[marking]["priority"]) + if (markings[priority]) + markings[priority] |= list("[marking]" = O.markings[marking]["color"]) //yes I know technically you could have a limb that was attached that has the same marking as another limb with a different color but I'm too tired + else + priorities |= O.markings[marking]["priority"] + markings[priority] = list("[marking]" = O.markings[marking]["color"]) + var/list/sorted = list() + while (priorities.len > 0) + var/priority = min(priorities) + priorities.Remove(priority) + priority = num2text(priority) + for (var/marking in markings[priority]) + if (!(marking in sorted)) + sorted[marking] = markings[priority][marking] + del(markings) + del(priorities) + markings_len = sorted.len + //todo - add an autofixing thing for having markings with the same priorities as another, and for having markings that should have the same priorities across bodyparts, but don't + //does not really need to happen, that kinda thing will only happen when putting another person's limb onto your own body + return sorted + + + + + + + + + diff --git a/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm index 056cb83e7b..cfc3bcd207 100644 --- a/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm @@ -1137,7 +1137,7 @@ for(var/mob/living/L in T) if(L == src) //no eating yourself. 1984. continue - if(L.devourable) + if(L.devourable && L.can_be_drop_prey) targets += L if(!(targets.len)) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 8df2a4c789..225a6ef197 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -1125,6 +1125,7 @@ if(!item) return FALSE //Grab processing has a chance of returning null +/* CHOMPEdit. If I want to do a nice little give I use the actual verb for it. if(a_intent == I_HELP && Adjacent(target) && isitem(item) && ishuman(target)) var/obj/item/I = item var/mob/living/carbon/human/H = target @@ -1135,6 +1136,7 @@ to_chat(src, SPAN_NOTICE("You offer \the [I] to \the [target].")) do_give(H) return TRUE +*/ drop_from_inventory(item) diff --git a/code/modules/mob/living/silicon/robot/emote.dm b/code/modules/mob/living/silicon/robot/emote.dm index 018c2b4336..79df20a324 100644 --- a/code/modules/mob/living/silicon/robot/emote.dm +++ b/code/modules/mob/living/silicon/robot/emote.dm @@ -33,4 +33,6 @@ var/list/_robot_default_emotes = list( ) /mob/living/silicon/robot/get_available_emotes() - return global._robot_default_emotes.Copy() + var/list/fulllist = global._robot_default_emotes.Copy() + fulllist |= _human_default_emotes + return fulllist \ No newline at end of file diff --git a/code/modules/mob/new_player/sprite_accessories_taur_vr.dm b/code/modules/mob/new_player/sprite_accessories_taur_vr.dm index 507f9995f4..e00ca9a830 100644 --- a/code/modules/mob/new_player/sprite_accessories_taur_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_taur_vr.dm @@ -437,6 +437,7 @@ ani_state = "fatfeline_s" extra_overlay_w = "fatfeline_markings" extra_overlay2_w = "fatfeline_markings_2" //CHOMPEdit + loaf_offset = 3 /datum/sprite_accessory/tail/taur/feline/synthfeline name = "SynthFeline dual-color (Taur)" diff --git a/code/modules/paperwork/folders.dm b/code/modules/paperwork/folders.dm index ba3dd52597..b9d9adab05 100644 --- a/code/modules/paperwork/folders.dm +++ b/code/modules/paperwork/folders.dm @@ -7,6 +7,7 @@ pressure_resistance = 2 drop_sound = 'sound/items/drop/paper.ogg' pickup_sound = 'sound/items/pickup/paper.ogg' + slot_flags = SLOT_BELT | SLOT_HOLSTER /obj/item/weapon/folder/blue desc = "A blue folder." diff --git a/code/modules/reagents/reactions/instant/drinks_vr.dm b/code/modules/reagents/reactions/instant/drinks_vr.dm index 5948562cd6..5a88d79996 100644 --- a/code/modules/reagents/reactions/instant/drinks_vr.dm +++ b/code/modules/reagents/reactions/instant/drinks_vr.dm @@ -14,6 +14,13 @@ required_reagents = list("antifreeze" = 1, "gargleblaster" = 1, "syndicatebomb" =1) result_amount = 3 +/decl/chemical_reaction/instant/drinks/burnout + name = "Burnout" + id = "burnout" + result = "burnout" + required_reagents = list("antifreeze" = 1, "deathbell" = 1, "lovemaker" =1) + result_amount = 3 + /decl/chemical_reaction/instant/drinks/monstertamer name = "Monster Tamer" id = "monstertamer" diff --git a/code/modules/reagents/reactions/instant/instant_ch.dm b/code/modules/reagents/reactions/instant/instant_ch.dm index 586278daef..bcd8c10770 100644 --- a/code/modules/reagents/reactions/instant/instant_ch.dm +++ b/code/modules/reagents/reactions/instant/instant_ch.dm @@ -58,6 +58,12 @@ required_reagents = list("unsorbitol" = 1, "phoron" = 1) result_amount = 2 +/decl/chemical_reaction/instant/galactose + name = "Galactose" + id = "galactose" + result = "galactose" + required_reagents = list("milk" = 1, "sacid" = 1) + result_amount = 3 ///SAP RECIPES////// /decl/chemical_reaction/instant/myelamine_sap //This is the clotting agent used by clotting packs. diff --git a/code/modules/reagents/reagent_containers/borghypo.dm b/code/modules/reagents/reagent_containers/borghypo.dm index 544d6e8f42..1825d2d67e 100644 --- a/code/modules/reagents/reagent_containers/borghypo.dm +++ b/code/modules/reagents/reagent_containers/borghypo.dm @@ -136,13 +136,14 @@ volume = 60 possible_transfer_amounts = list(5, 10, 20, 30) reagent_ids = list("ale", - "cider", "beer", "berryjuice", "bitters", + "cider", "coffee", "cognac", "cola", + "cream", "dr_gibb", "egg", "gin", diff --git a/code/modules/reagents/reagents/food_drinks_vr.dm b/code/modules/reagents/reagents/food_drinks_vr.dm index 552fae5d79..a42719456e 100644 --- a/code/modules/reagents/reagents/food_drinks_vr.dm +++ b/code/modules/reagents/reagents/food_drinks_vr.dm @@ -53,6 +53,40 @@ if(dose * strength >= strength * 2.5) // Slurring takes longer. Again, intentional. M.slurring = max(M.slurring, 30) +/datum/reagent/ethanol/burnout + name = "Burnout" + id = "burnout" + description = "A bubbling orange alcoholic fluid that radiates a large amount of heat." + taste_description = "powerful alcoholic inferno" + color = "#cc5500" + taste_mult = 5 + strength = 10 + adj_temp = 10 + targ_temp = 380 + + glass_name = "Burnout" + glass_desc = "A swirling brew of fluids that leaves even the glass itself hot to the touch." + +/datum/reagent/ethanol/burnout/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) + ..() + // Deathbell effects. + if(dose * strength >= strength) + M.make_dizzy(24) + if(dose * strength >= strength * 2.5) + M.slurring = max(M.slurring, 30) + // Simulating heat effects of spice. Without spice. + if(alien == IS_DIONA || alien == IS_ALRAUNE) + return + else if(ishuman(M)) + var/mob/living/carbon/human/H = M + if(!H.can_feel_pain()) + return + else + if((dose < 5) && (dose == metabolism || prob(5))) + to_chat(M, "Your insides feel uncomfortably hot!") + if(dose >= 5 && prob(5)) + M.visible_message("[M] [pick("dry heaves!","coughs!","splutters!")]", pick("You feel like your insides are burning!", "You feel like your insides are on fire!", "You feel like your belly is full of lava!")) + /datum/reagent/ethanol/monstertamer name = "Monster Tamer" id = "monstertamer" diff --git a/code/modules/reagents/reagents/medicine_ch.dm b/code/modules/reagents/reagents/medicine_ch.dm index 26daefc6fe..7bb2c5b750 100644 --- a/code/modules/reagents/reagents/medicine_ch.dm +++ b/code/modules/reagents/reagents/medicine_ch.dm @@ -194,3 +194,21 @@ chem_effective = 0.75 if(alien != IS_DIONA) M.heal_organ_damage(12 * removed * chem_effective, 0) + +/datum/reagent/nutriment/glucose/galactose + name = "Galactose" + id = "galactose" + description = "A clear sweet tasting fluid derived from lactose that is not as dense as glucose for IV application" + nutriment_factor = 5 //1/6 of glucose + taste_description = "sweetness" + color = "#ffffff" + overdose = 45 + +/datum/reagent/nutriment/glucose/galactose/overdose(var/mob/living/carbon/M, var/alien, var/removed) + ..() + M.eye_blurry = min(20, max(0, M.eye_blurry + 10)) + if(prob(10)) // 1 in 10 per tick + var/mob/living/carbon/human/H = M + var/obj/item/organ/internal/brain/br = H.internal_organs_by_name[O_BRAIN] //Give brain damage spaceman, AKA no change at all + br?.take_damage(1) + to_chat(M, "You feel extremely jittery!") diff --git a/code/modules/tgui/modules/appearance_changer.dm b/code/modules/tgui/modules/appearance_changer.dm index d6d7e5f386..a90d69689b 100644 --- a/code/modules/tgui/modules/appearance_changer.dm +++ b/code/modules/tgui/modules/appearance_changer.dm @@ -26,6 +26,7 @@ var/list/valid_earstyles = list() var/list/valid_tailstyles = list() var/list/valid_wingstyles = list() + var/list/markings = null /datum/tgui_module/appearance_changer/New( var/host, @@ -174,7 +175,7 @@ update_dna() changed_hook(APPEARANCECHANGER_CHANGED_EYES) return 1 - // VOREStation Add - Ears/Tails/Wings + // VOREStation Add - Ears/Tails/Wings/Markings if("ear") if(can_change(APPEARANCE_ALL_HAIR)) var/datum/sprite_accessory/ears/instance = locate(params["ref"]) @@ -277,6 +278,40 @@ owner.update_wing_showing() changed_hook(APPEARANCECHANGER_CHANGED_HAIRCOLOR) return 1 + if("marking") + if(can_change(APPEARANCE_ALL_HAIR)) + var/todo = params["todo"] + var/name_marking = params["name"] + switch (todo) + if (0) //delete + if (name_marking) + var/datum/sprite_accessory/marking/mark_datum = body_marking_styles_list[name_marking] + if (target.remove_marking(mark_datum)) + changed_hook(APPEARANCECHANGER_CHANGED_HAIRSTYLE) + return TRUE + if (1) //add + var/list/usable_markings = markings.Copy() ^ body_marking_styles_list.Copy() + var/new_marking = tgui_input_list(usr, "Choose a body marking:", "New Body Marking", usable_markings) + if(new_marking && can_still_topic(usr, state)) + var/datum/sprite_accessory/marking/mark_datum = body_marking_styles_list[new_marking] + if (target.add_marking(mark_datum)) + changed_hook(APPEARANCECHANGER_CHANGED_HAIRSTYLE) + return TRUE + if (2) //move up + var/datum/sprite_accessory/marking/mark_datum = body_marking_styles_list[name_marking] + if (target.change_priority_of_marking(mark_datum, FALSE)) + return TRUE + if (3) //move down + var/datum/sprite_accessory/marking/mark_datum = body_marking_styles_list[name_marking] + if (target.change_priority_of_marking(mark_datum, TRUE)) + return TRUE + if (4) //color + var/current = markings[name_marking] ? markings[name_marking] : "#000000" + var/marking_color = input(usr, "Please select marking color", "Marking color", current) as color|null + if(marking_color && can_still_topic(usr, state)) + var/datum/sprite_accessory/marking/mark_datum = body_marking_styles_list[name_marking] + if (target.change_marking_color(mark_datum, marking_color)) + return TRUE // VOREStation Add End return FALSE @@ -370,6 +405,11 @@ data["ear_style"] = target.ear_style data["tail_style"] = target.tail_style data["wing_style"] = target.wing_style + var/list/markings_data[0] + markings = target.get_prioritised_markings() + for (var/marking in markings) + markings_data[++markings_data.len] = list("marking_name" = marking, "marking_color" = markings[marking]) + data["markings"] = markings_data // VOREStation Add End data["change_facial_hair"] = can_change(APPEARANCE_FACIAL_HAIR) diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index 1837144190..f94899100b 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -49,6 +49,7 @@ var/obj/item/weapon/storage/vore_egg/ownegg // Is this belly creating an egg? var/egg_type = "Egg" // Default egg type and path. var/egg_path = /obj/item/weapon/storage/vore_egg + var/egg_name = null // CHOMPAdd. Custom egg name var/list/list/emote_lists = list() // Idle emotes that happen on their own, depending on the bellymode. Contains lists of strings indexed by bellymode var/emote_time = 60 // How long between stomach emotes at prey (in seconds) var/emote_active = TRUE // Are we even giving emotes out at all or not? @@ -275,7 +276,8 @@ "slow_digestion", "slow_brutal", "sound_volume", - "speedy_mob_processing", //CHOMP end of variables from CHOMP + "speedy_mob_processing", + "egg_name", //CHOMP end of variables from CHOMP "egg_type", "save_digest_mode" ) @@ -1389,7 +1391,8 @@ dupe.autotransfer_max_amount = autotransfer_max_amount dupe.slow_digestion = slow_digestion dupe.slow_brutal = slow_brutal - dupe.sound_volume = sound_volume //CHOMP end of variables from CHOMP + dupe.sound_volume = sound_volume + dupe.egg_name = egg_name //CHOMP end of variables from CHOMP dupe.belly_fullscreen = belly_fullscreen dupe.disable_hud = disable_hud diff --git a/code/modules/vore/eating/bellymodes_datum_vr.dm b/code/modules/vore/eating/bellymodes_datum_vr.dm index b55843a96c..3078717d2e 100644 --- a/code/modules/vore/eating/bellymodes_datum_vr.dm +++ b/code/modules/vore/eating/bellymodes_datum_vr.dm @@ -218,6 +218,14 @@ GLOBAL_LIST_INIT(digest_modes, list()) var/list/egg_contents = list() for(var/E in touchable_atoms) if(istype(E, /obj/item/weapon/storage/vore_egg)) // Don't egg other eggs. + var/obj/item/weapon/storage/vore_egg/EG //CHOMPEdit Start + if(EG.egg_name != B.egg_name) + if(!B.egg_name) + EG.egg_name = null + EG.name = initial(EG.name) + else + EG.egg_name = B.egg_name + EG.name = B.egg_name continue if(isliving(E)) var/mob/living/L = E @@ -231,6 +239,9 @@ GLOBAL_LIST_INIT(digest_modes, list()) if(B.egg_type in tf_vore_egg_types) B.egg_path = tf_vore_egg_types[B.egg_type] B.ownegg = new B.egg_path(B) + if(B.ownegg && B.egg_name) + B.ownegg.egg_name = B.egg_name + B.ownegg.name = B.egg_name //CHOMPEdit End for(var/atom/movable/C in egg_contents) if(isitem(C) && egg_contents.len == 1) //Only egging one item var/obj/item/I = C diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index f57f3114bd..5c9a66057e 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -181,6 +181,7 @@ // "messages" // TODO "can_taste" = selected.can_taste, "egg_type" = selected.egg_type, + "egg_name" = selected.egg_name, //CHOMPAdd "nutrition_percent" = selected.nutrition_percent, "digest_brute" = selected.digest_brute, "digest_burn" = selected.digest_burn, @@ -238,6 +239,7 @@ //CHOMPEdit END selected_list["egg_type"] = selected.egg_type + selected_list["egg_name"] = selected.egg_name //CHOMPAdd selected_list["contaminates"] = selected.contaminates selected_list["contaminate_flavor"] = null selected_list["contaminate_color"] = null @@ -1198,6 +1200,13 @@ return FALSE host.vore_selected.egg_type = new_egg_type . = TRUE + if("b_egg_name") //CHOMPAdd Start + var/new_egg_name = html_encode(tgui_input_text(usr,"Custom Egg Name (Leave empty for default egg name)","New Egg Name")) + if(length(new_egg_name) > BELLIES_NAME_MAX) + tgui_alert_async(usr, "Entered name too long (max [BELLIES_NAME_MAX]).","Error") + return FALSE + host.vore_selected.egg_name = new_egg_name + . = TRUE //CHOMPAdd End if("b_desc") var/new_desc = html_encode(tgui_input_text(usr,"Belly Description, '%pred' will be replaced with your name. '%prey' will be replaced with the prey's name. '%belly' will be replaced with your belly's name. ([BELLIES_DESC_MAX] char limit):","New Description",host.vore_selected.desc, multiline = TRUE, prevent_enter = TRUE)) diff --git a/icons/obj/drinks_vr.dmi b/icons/obj/drinks_vr.dmi index cbc94422b5..0565f00583 100644 Binary files a/icons/obj/drinks_vr.dmi and b/icons/obj/drinks_vr.dmi differ diff --git a/maps/southern_cross/southern_cross-2.dmm b/maps/southern_cross/southern_cross-2.dmm index 56d03beb62..6cc32446c1 100644 --- a/maps/southern_cross/southern_cross-2.dmm +++ b/maps/southern_cross/southern_cross-2.dmm @@ -1482,7 +1482,7 @@ "aYx" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/machinery/recharger/wallcharger{pixel_x = -26; pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/security/warden) "aYy" = (/turf/simulated/wall/r_wall,/area/engineering/engine_waste) "aYA" = (/obj/machinery/door/blast/regular{id = "EngineVent"; name = "Reactor Vent"},/obj/machinery/shield_diffuser,/turf/simulated/floor/reinforced/airless,/area/engineering/engine_room) -"aYB" = (/obj/machinery/power/emitter{anchored = 1; dir = 8; id = "EngineEmitter"; state = 2; icon_state = "emitter2"},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/engineering/engine_room) +"aYB" = (/obj/machinery/power/emitter{anchored = 1; dir = 8; icon_state = "emitter2"; id = "EngineEmitter"; state = 2},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/engineering/engine_room) "aYC" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Engine Power"; name_tag = "Engine Power"},/turf/simulated/floor,/area/engineering/engine_room) "aYD" = (/obj/item/modular_computer/console/preset/engineering{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) "aYE" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/engine_room) @@ -2926,7 +2926,7 @@ "bXa" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) "bXb" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 4},/obj/structure/bed/chair/comfy/brown{dir = 1},/obj/structure/window/reinforced/tinted/frosted,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/coffee_shop) "bXg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/chapel) -"bXh" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/brown/diagonal,/obj/structure/sink/countertop{dir = 2; pixel_y = 7},/obj/item/trash/plate{pixel_y = -2},/obj/item/trash/plate,/obj/item/trash/plate{pixel_y = 2},/obj/item/trash/plate{pixel_y = 4},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop) +"bXh" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/brown/diagonal,/obj/structure/sink/countertop{pixel_y = 7},/obj/item/trash/plate{pixel_y = -2},/obj/item/trash/plate,/obj/item/trash/plate{pixel_y = 2},/obj/item/trash/plate{pixel_y = 4},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop) "bXj" = (/obj/structure/filingcabinet/chestdrawer,/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice) "bXk" = (/turf/simulated/wall,/area/lawoffice) "bXq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) @@ -3239,7 +3239,7 @@ "chp" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/hydro,/area/hydroponics) "chq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/hydro,/area/hydroponics) "chs" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Gallery"},/obj/machinery/door/firedoor/multi_tile/glass{dir = 8},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artgallery) -"cht" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/curtain/black{dir = 2; icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artgallery) +"cht" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artgallery) "chy" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/aft) "chz" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/aft) "chE" = (/obj/structure/noticeboard/airlock,/turf/simulated/wall,/area/crew_quarters/barrestroom) @@ -3384,19 +3384,19 @@ "cmD" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/green/border,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -20},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery) "cmE" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/green/bordercorner{dir = 8},/obj/machinery/camera/network/civilian{c_tag = "CIV - Gallery Bow"; dir = 10},/obj/machinery/newscaster{pixel_y = -30},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery) "cmF" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"cmH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/structure/disposalpipe/segment,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft) +"cmH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft) "cmO" = (/obj/structure/shuttle/engine/propulsion{dir = 4; icon_state = "burst_r"},/turf/simulated/floor/airless,/area/shuttle/cryo/station) "cmP" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artgallery) "cmQ" = (/obj/structure/table/rack/shelf/steel,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/green/border{dir = 9},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/nineteen_nineteen{pixel_y = 3},/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/artsupplies) "cmT" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Art Supplies"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artsupplies) -"cna" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Gallery"},/obj/structure/curtain/black{dir = 2; icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artgallery) +"cna" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Gallery"},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artgallery) "cnb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/ai_monitored/storage/eva) "cnc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/bar) "cnd" = (/obj/item/stack/rods,/obj/structure/lattice,/turf/space,/area/space) "cnf" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "tabletop_window_tint"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/library) "cnm" = (/obj/structure/bed/chair/comfy/black,/obj/effect/floor_decal/spline/fancy/wood{dir = 5},/turf/simulated/floor/carpet/oracarpet,/area/library) "cnq" = (/obj/structure/table/woodentable,/obj/structure/noticeboard{pixel_y = 27},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/item/weapon/paper_bin{pixel_x = 7; pixel_y = 8},/obj/item/weapon/tape_roll,/obj/item/weapon/pen/fountain5,/obj/item/weapon/pen/fountain6{pixel_y = 7},/turf/simulated/floor/wood/alt/parquet,/area/library) -"cns" = (/obj/item/weapon/reagent_containers/food/drinks/soymilk,/obj/item/weapon/reagent_containers/food/drinks/soymilk,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/structure/closet/secure_closet/freezer/fridge{pixel_x = 6; pixel_y = 0},/obj/effect/floor_decal/corner/brown/diagonal,/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/status_display{layer = 4; pixel_y = 32},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop) +"cns" = (/obj/item/weapon/reagent_containers/food/drinks/soymilk,/obj/item/weapon/reagent_containers/food/drinks/soymilk,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/item/weapon/reagent_containers/food/drinks/smallmilk,/obj/structure/closet/secure_closet/freezer/fridge{pixel_x = 6},/obj/effect/floor_decal/corner/brown/diagonal,/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/status_display{layer = 4; pixel_y = 32},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop) "cnt" = (/obj/effect/floor_decal/corner/brown/diagonal,/obj/machinery/vending/dinnerware,/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/corner/beige/border{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/tiled/old_tile/yellow,/area/crew_quarters/coffee_shop) "cny" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2) "cnC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/secondary/docking_hallway2) @@ -3405,7 +3405,7 @@ "cnF" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/snacks/pie,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/cafeteria) "cnI" = (/obj/structure/bed/chair/wood{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "cnJ" = (/obj/structure/bed/chair/wood{dir = 1},/obj/effect/landmark/start{name = "Intern"},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) -"cnL" = (/obj/effect/floor_decal/carpet{dir = 8},/obj/effect/floor_decal/carpet{dir = 1},/obj/effect/floor_decal/carpet{dir = 9; pixel_y = 0},/obj/machinery/button/windowtint{id = "tabletop_window_tint"; pixel_x = 12; pixel_y = 25},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/carpet,/area/library) +"cnL" = (/obj/effect/floor_decal/carpet{dir = 8},/obj/effect/floor_decal/carpet{dir = 1},/obj/effect/floor_decal/carpet{dir = 9},/obj/machinery/button/windowtint{id = "tabletop_window_tint"; pixel_x = 12; pixel_y = 25},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/carpet,/area/library) "cnM" = (/obj/structure/bed/chair/office/dark,/obj/effect/floor_decal/carpet{dir = 1},/turf/simulated/floor/carpet,/area/library) "cnN" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/library) "cnP" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/sortjunction/flipped{dir = 2; name = "Library"; sortType = "Library"},/turf/simulated/floor/tiled,/area/library) @@ -4503,7 +4503,7 @@ "fSY" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{dir = 4},/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter) "fTt" = (/obj/structure/sign/directions/evac{pixel_y = -10},/turf/simulated/wall/r_wall,/area/hallway/primary/seconddeck/fscenter) "fUK" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "crglockdown"; name = "Cargo Lockdown"; opacity = 0},/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights,/obj/structure/event/present,/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/port) -"fUQ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft) +"fUQ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft) "fVj" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -21},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/iv_drip,/turf/simulated/floor/tiled/white,/area/medical/ward) "fVu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research) "fVv" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/industrial/loading{dir = 4},/obj/machinery/navbeacon/delivery/east{location = "Research Division"},/turf/simulated/floor/tiled,/area/rnd/research) @@ -4588,10 +4588,10 @@ "guC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) "gvv" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/security/checkpoint2) "gvF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/ai_status_display{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) -"gwp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Starboard"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"gwp" = (/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Starboard"},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/tiled/white,/area/rnd/research/particleaccelerator) "gxV" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3) "gyf" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge) -"gyw" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/research) +"gyw" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/structure/stairs/spawner/east,/obj/structure/cable/green{d1 = 16; d2 = 0; icon_state = "16-0"},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/disposalpipe/up,/obj/structure/sign/warning/radioactive{pixel_y = 32},/obj/structure/window/reinforced,/turf/simulated/floor/tiled/white,/area/rnd/research/particleaccelerator) "gyA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/closet/emcloset,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/rnd/mixing) "gyD" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom) "gyT" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/warning/cee,/turf/simulated/floor/tiled/white,/area/rnd/mixing) @@ -4691,7 +4691,7 @@ "hai" = (/obj/structure/table/glass,/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"},/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"},/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/soap/nanotrasen,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36},/obj/structure/cable/green,/obj/random/soap,/turf/simulated/floor/tiled/freezer,/area/medical/medical_restroom) "hax" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D2) "hay" = (/obj/structure/sign/directions/engineering{dir = 8; pixel_y = 10},/obj/structure/sign/directions/cargo{dir = 8},/obj/structure/sign/directions/security{dir = 1; pixel_y = -10},/turf/simulated/wall,/area/hallway/primary/seconddeck/fscenter) -"haC" = (/obj/structure/easel,/obj/item/canvas/nineteen_nineteen{pixel_y = 10},/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 22},/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/artgallery) +"haC" = (/obj/structure/easel,/obj/item/canvas/nineteen_nineteen,/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 22},/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/artgallery) "haO" = (/obj/structure/table/glass,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/medbay2) "hbf" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/grass,/area/hallway/primary/seconddeck/fscenter) "hcg" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/flora/pottedplant/overgrown,/turf/simulated/floor/tiled,/area/medical/morgue) @@ -4712,7 +4712,7 @@ "hgn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/research) "hgv" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D1) "hgz" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/white,/area/rnd/research) -"hgO" = (/obj/structure/table/marble,/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/southright{dir = 4; name = "Hydroponics"},/obj/machinery/door/window/northleft{dir = 8; name = "Hydroponics"; req_one_access = list(35,28)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/curtain/black{dir = 2; icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/hydroponics) +"hgO" = (/obj/structure/table/marble,/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/southright{dir = 4; name = "Hydroponics"},/obj/machinery/door/window/northleft{dir = 8; name = "Hydroponics"; req_one_access = list(35,28)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/hydroponics) "hhw" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/ai_monitored/storage/emergency/eva) "hhQ" = (/obj/machinery/light{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office) "hiu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/hydro,/area/hydroponics) @@ -4789,13 +4789,13 @@ "hGX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D3) "hHj" = (/obj/machinery/sleep_console{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) "hHG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) -"hIh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) +"hIh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/rnd/research) "hIn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/storage/primary) "hIE" = (/turf/simulated/wall,/area/maintenance/medbay) "hIK" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/spline/plain{dir = 5},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/hydro,/area/hallway/primary/seconddeck/ascenter) "hIR" = (/obj/structure/closet/crate,/obj/item/weapon/storage/box/lights/mixed,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/radio{frequency = 1487; icon_state = "med_walkietalkie"; name = "Medbay Emergency Radio Link"},/obj/item/device/radio{frequency = 1487; icon_state = "med_walkietalkie"; name = "Medbay Emergency Radio Link"},/obj/item/weapon/tool/crowbar/red,/obj/item/weapon/tool/crowbar/red,/obj/item/weapon/storage/firstaid/surgery,/turf/simulated/floor/tiled/dark,/area/medical/biostorage) "hJg" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Dock Three External Airlock"; req_access = list(13)},/obj/effect/map_helper/airlock/door/ext_door,/obj/effect/map_helper/airlock/button/ext_button,/obj/machinery/access_button{dir = 8; name = "exterior access button"; pixel_x = -7; pixel_y = -27; req_one_access = null},/turf/simulated/floor/tiled/dark,/area/hallway/secondary/entry/D2) -"hJo" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/rnd/research) +"hJo" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/rnd/research) "hJw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access = list(28)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/hydroponics) "hJC" = (/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/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/rnd/research) "hJU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_research{name = "Toxins Lab"; req_access = list(7)},/turf/simulated/floor/tiled/steel_grid,/area/rnd/mixing) @@ -4906,9 +4906,9 @@ "ikX" = (/obj/machinery/vending/fitness,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/medical/medbay2) "ilk" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/engine_room) "ilr" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled/techmaint,/area/medical/cryo) -"ily" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/turf/simulated/floor/tiled/white,/area/rnd/research) -"ilQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/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/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) -"ini" = (/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/tiled/white,/area/rnd/research) +"ily" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/obj/structure/closet/radiation{anchored = 1; starts_with = list(/obj/item/clothing/suit/radiation = 4, /obj/item/clothing/head/radiation = 4, /obj/item/device/geiger = 4)},/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor/tiled/white,/area/rnd/research) +"ilQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) +"ini" = (/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/rnd/research) "inE" = (/obj/structure/cable/green,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/medbay) "ioL" = (/obj/structure/table/woodentable,/obj/item/weapon/paper,/obj/item/device/taperecorder,/obj/item/device/tape/random,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/hallway/secondary/entry/docking_lounge) "ipd" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/grass,/area/hydroponics) @@ -4956,6 +4956,7 @@ "iES" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter) "iEX" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter) "iFy" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/green/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter) +"iFC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/rnd/research) "iGf" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fscenter) "iHF" = (/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "crglockdown"; name = "Cargo Lockdown"; opacity = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) "iHG" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D2) @@ -4971,7 +4972,7 @@ "iJY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/wall,/area/maintenance/substation/civilian) "iKa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/maintenance/research) "iKg" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/ai_monitored/storage/emergency/eva) -"iKn" = (/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/purple/border{dir = 9},/obj/machinery/smartfridge/sheets{density = 0; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/rnd/lab) +"iKn" = (/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/purple/border{dir = 9},/obj/machinery/smartfridge/sheets{density = 0},/turf/simulated/floor/tiled/white,/area/rnd/lab) "iKA" = (/obj/machinery/autolathe,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/lab) "iKC" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway) "iKM" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced,/obj/machinery/door/window/eastright,/obj/item/clothing/suit/space,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space,/turf/simulated/floor/tiled/techmaint,/area/ai_monitored/storage/emergency/eva) @@ -5235,7 +5236,7 @@ "kpx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/research) "kqp" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/research) "kqH" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/lino,/area/chapel/office) -"kqI" = (/obj/structure/table/woodentable,/obj/item/paint_palette{pixel_x = 6; pixel_y = -6},/obj/item/paint_palette{pixel_x = 6; pixel_y = 0},/obj/item/paint_palette{pixel_x = 6; pixel_y = 6},/obj/item/paint_brush{pixel_x = -4; pixel_y = -5},/obj/item/paint_brush{pixel_x = -6; pixel_y = -1},/obj/item/paint_brush{pixel_x = -8; pixel_y = 4},/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/artgallery) +"kqI" = (/obj/structure/table/woodentable,/obj/item/paint_palette{pixel_x = 6; pixel_y = -6},/obj/item/paint_palette{pixel_x = 6},/obj/item/paint_palette{pixel_x = 6; pixel_y = 6},/obj/item/paint_brush{pixel_x = -4; pixel_y = -5},/obj/item/paint_brush{pixel_x = -6; pixel_y = -1},/obj/item/paint_brush{pixel_x = -8; pixel_y = 4},/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/artgallery) "krH" = (/obj/structure/dispenser,/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/rnd/mixing) "krQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) "krZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/rnd/mixing) @@ -5435,7 +5436,7 @@ "lIk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay2) "lIC" = (/obj/machinery/computer/timeclock/premade/south,/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fscenter) "lIY" = (/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_wing) -"lJh" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/obj/structure/bed/chair/sofa/right/brown{dir = 2; layer = 2.9},/obj/structure/window/basic{dir = 1},/turf/simulated/floor/carpet/oracarpet,/area/library) +"lJh" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/obj/structure/bed/chair/sofa/right/brown{layer = 2.9},/obj/structure/window/basic{dir = 1},/turf/simulated/floor/carpet/oracarpet,/area/library) "lJn" = (/obj/structure/bookcase{name = "bookcase (Reference)"},/turf/simulated/floor/wood/alt/parquet,/area/library) "lJs" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fscenter) "lKa" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/seconddeck/fscenter) @@ -5697,7 +5698,7 @@ "nrm" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Central Subgrid"; name_tag = "Central Subgrid"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/maintenance/substation/central) "nsS" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway) "ntH" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor,/area/maintenance/substation/central) -"ntX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Art Supplies"},/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/curtain/black{dir = 2; icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artsupplies) +"ntX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Art Supplies"},/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/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artsupplies) "nuH" = (/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Central"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/substation/central) "nuJ" = (/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/floor/tiled/dark,/area/chapel/main) "nve" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/bar) @@ -6331,6 +6332,7 @@ "rrh" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor/plating,/area/hallway/secondary/entry/D3) "rrB" = (/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/chapel) "rrL" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/floor_decal/carpet{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet,/area/library) +"rsf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/white,/area/rnd/research) "rsq" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/dockhallway) "rsK" = (/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) "rsM" = (/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/research) @@ -6420,7 +6422,7 @@ "rQx" = (/obj/machinery/camera/network/research{c_tag = "SCI - Workshop"; dir = 1},/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled/dark,/area/rnd/workshop) "rQF" = (/obj/structure/bed/chair/sofa/right/brown{dir = 4},/obj/effect/floor_decal/spline/fancy/wood{dir = 6},/obj/structure/noticeboard{pixel_x = -32},/turf/simulated/floor/carpet,/area/crew_quarters/seconddeck/artgallery) "rQI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/status_display{layer = 4; pixel_x = -32},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/secondary/entry/D1) -"rRc" = (/obj/structure/curtain/black{dir = 2; icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artgallery) +"rRc" = (/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/artgallery) "rRg" = (/obj/structure/table/steel,/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/weapon/reagent_containers/food/snacks/cheesiehonkers,/obj/item/weapon/reagent_containers/food/drinks/cans/space_mountain_wind,/obj/random/maintenance/research,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/floor_decal/borderfloorblack{dir = 6},/obj/effect/floor_decal/corner/green/border{dir = 6},/turf/simulated/floor/tiled/dark,/area/rnd/workshop) "rRk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/vending/loadout/loadout_misc,/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve) "rRD" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc/super{pixel_y = -24},/turf/simulated/floor/tiled/white,/area/medical/cryo/autoresleeve) @@ -7500,8 +7502,8 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaafaaaaaaaaaaaaaafaafdYTaafaaajBVaaaaaaaafaaaaaaanXdardcSddHaBeddOaDOaDOazNafUdendgYafVdkbaxAdlxdlPaxCaxDaxEazUaxGaLGaxIaxJaxKaCMaAadmmaxOaxPaxQsyUafWafXsyUdojawBsyUaSlaSlsyUaxYaBCayaazhafYaBCsyUsyUsyUsyUaLSaLSaLSsyUsyUsyUsyUsyUdpOdpQdsjdsodpOaWbaWbaWbaWbaWbcsacsacsaaWbaWbaWbaWbcGddtIdtNducduKcGdduUaZLdvedvzdvBdwPcEfdwVdxacEgdywdyydyNdzbaUwdzidzNdCbdCHcAZdEodGsdGCcBadGEdHRdIqdIxcBadJNdLgcBidMldOFdQcdOFdQcdOFdStdUedUzdVldWpdWGdWMdXDdXIdZUeaJecyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaawxwaaaaaaaaaaaaaagaaaaaaaaaaafaaaaaaaaavJCaYydUKuYZsxaaYyaYyaYyaYyaYyedRedRanXefHegHavuaBeehEeiBeiIagnagoejDagpaBeemkayPayQemnayRagraySazTaguagwaCKayTayUaFtagzayXagAayVayWaFuaFuagCaFuaFuaFuaFusyUsyUsyUemvaBCazeazfendaBCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaenGenReqLerEetveupenGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacGdeuBeuYevbevbewVexbcAYafpeCoeDxeEXcEfeFxeFWeGpeGFeHoeHwdzbcEleHGeHVeHXeIucAZcAZcAZcAZcBaeIXeIYeIZeJfcBaeKpeKscBicBieLeeLkeMveLeeNjeLeeNJeOJePpeQyeQzeQKeRKeROeQzeSFeTfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaamycaYyaYytDSahzqwKagXagYagZahaaTvaYyeUReWteYneYueYXfbPaBeehEeiBazMahcahdfceazOaBefeeaheaxSfehazTazUazVazTazWazXahgazYahhaFtaAaaCOahiaAcaAdaFuaAfaAgaAhaAiaAjaFuffZfgesyUfgNaBCaAnaAoaBCaBCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaenGfiafiwdsjfixfiGenGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacGdcGdfjpfjyfjAcGdfldaWbcEfafpflBafpcEfcAPdzbflCfocflCfoFcAPfpAcvsfqlcvsfrTcCRftvfvafvacBacBafvHcBacBacBadJNfyafyDcBicBicBicBicBicBicBicBicXZfzRfAHfALfBzcXZfBJcXZfDffFGfGGfGWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagxsKsbLsbLaJtaJtahTdckdlnaWHajOxcEaRCmrUaRvahBaeGaYyfHhfHQfIxfILfIXanXaBeaBeaBeaBeaBeaBeaBeaBeaBefJbahCazJfJlaBpfJXbgefKlaBmgLmaCKfMGaLIaCMaBraLPaBtaBuaBvfMShYqfPkahDahEahFaFufPEaBDaBAsFMaBCaBCaBCaBCaaaaaaaaaaaaaaaaaaaKgaKgbgqbgqbgqaKgaKgfQLfRLdsjfSYfTtasVasVenGenGenGasVasVaaaaaaaaaaaaaaaaaacGdcGdcGdcGdcGdfVucAYfVvfVAfWdfWjfYHfYNgbdgbsgbBgcdgcBgddgdVaCdgelgexgfQggigiQgiQgiQgjbgkhgkOgmIgotgpBgpGgqmgqpgsPgsPgtwguCgvFgsPgwpgyweTfgyAgyTgzNgAXgBngBsgCogCygCEgCEgCHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaagwWXaagaaaaRwaizlteaJtaizahTycdesJxQFaiChNmrMJgDraPHahqahZgDUgGjgGEgIMaesanXgJrgLdgLwgLDaCxaiaaCygMagOjgOugPhgPGgQRgSRaCGaCHaAZaiLaJNaDVaCKaCLndiaCMaCNaCOaieaifaCPaFuaigaihaLQnJhaijaFuailgThsyUsFMvxjsyUaaaaaaaaawxwaaaaaabgqbgqaKgoVjgTMgUjgUkgUVgXBgZmjRedsjkVihayhbfhcAhddhdVhexhTAasVenGenGaaaaaawxwaaaaaaaaaaWbheBcDZhgncAYcCShgzhjAhkWhlbhlXhnyhnShpAhqBhruhtihruhulhvbhvGhruhxshruhxAhyfhzEhzXhBqhBthqBhtihxshDchulhruhEvhEUhHGhDchIhhJohJChJUhJXhKahKFhKVhLghLihLShMvhMBhMBhMRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagxsKsbLsbLaJtaJtahTdckdlnaWHajOxcEaRCmrUaRvahBaeGaYyfHhfHQfIxfILfIXanXaBeaBeaBeaBeaBeaBeaBeaBeaBefJbahCazJfJlaBpfJXbgefKlaBmgLmaCKfMGaLIaCMaBraLPaBtaBuaBvfMShYqfPkahDahEahFaFufPEaBDaBAsFMaBCaBCaBCaBCaaaaaaaaaaaaaaaaaaaKgaKgbgqbgqbgqaKgaKgfQLfRLdsjfSYfTtasVasVenGenGenGasVasVaaaaaaaaaaaaaaaaaacGdcGdcGdcGdcGdfVucAYfVvfVAfWdfWjfYHfYNgbdgbsgbBgcdgcBgddgdVaCdgelgexgfQggigiQgiQgiQgjbgkhgkOgmIgotgpBgpGgqmgqpgsPgsPgtwguCgvFrsfgwpgywcXZgyAgyTgzNgAXgBngBsgCogCygCEgCEgCHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaagaagaagaagwWXaagaaaaRwaizlteaJtaizahTycdesJxQFaiChNmrMJgDraPHahqahZgDUgGjgGEgIMaesanXgJrgLdgLwgLDaCxaiaaCygMagOjgOugPhgPGgQRgSRaCGaCHaAZaiLaJNaDVaCKaCLndiaCMaCNaCOaieaifaCPaFuaigaihaLQnJhaijaFuailgThsyUsFMvxjsyUaaaaaaaaawxwaaaaaabgqbgqaKgoVjgTMgUjgUkgUVgXBgZmjRedsjkVihayhbfhcAhddhdVhexhTAasVenGenGaaaaaawxwaaaaaaaaaaWbheBcDZhgncAYcCShgzhjAhkWhlbhlXhnyhnShpAhqBhruhtihruhulhvbhvGhruhxshruhxAhyfhzEhzXhBqhBthqBhtihxshDchulhruhEvhEUhHGhDchIhhJoiFChJUhJXhKahKFhKVhLghLihLShMvhMBhMBhMRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaafaaaaaaaaaaaaaaaaaaaaaaDraizaizaJtaizahTycddZDiUUfDGgDrhNmhNmhNJaiFaiGaYyhNKfIxhOihOuhPQhQghQJaiIhRvhSpaDNhTshTxaiHaDPaDQhUhaiIaDSaDTbgeaAZaiLaJNaDVaJOaFmaiNaFtaFtavGaiQavGaFtaFuaFuaiTaEbnJhaEdaFuaiUaiVaSlsFMvxjsyUaaaaaaaaaaaaaaabgqbgqqpsajBajFhUMajFaimhUMfFOhVhjRedsjkVihVhkcuhWEhXAhYphWEhYphYGyeDenGenGaaaaaaaaaaaaaaaaWbhYMiahibtaGgaGgichichichichichichidMidPcDaiejiejiejiejiejiejiejiejiejiejiejiejifdifOigNiihiihiihiihiihiihiihiioiiQijcilyilQinieTfipyipNgzNiqfiqTirxgCoirOisqitjgCHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaRwaizaizaJtaJtahTdckfZNiUUfDGjnXitKcPvajTajUajVaYyiuXivxivHixjavuixUiyaiznaTKaLyizSaLyaLyaFaaLyaTKaQeaFeaIlaFgaFhaFiaQeaIpaFlajXaFmaFnaOQiAwaNsaFrajYaFsiADaFuajZaFvnJhakaaFuaFwaFxaSlsFMaKfsyUaaaaaaaaaaaabgqbgqaHesvXayLaFGiCsiCyiCysvXiCXbUdiEHdsjiESiEriEXiFyiGfiGfiImiJxarKiFyiJTenGenGaaaaaaaaaaaaaWbiKaaWbaWbaGgiKniKAiLbiMciNsiOIiPqiQeiSqcEuiVxiVFiVPiXYiYsiYDiYZjaHjaXjdCjewjeIifdjfTjfWjgqjgyiihjgHjhWjiHiihjiLjiSijcijcjjLjjVjlKjmujmxjmUjnlcXZfGWcXZcXZcXZcXZfBJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaafaaaaaaaYyxkVggApuLjnXahtjpFjqdakLjqwaYyjrEjrSivHjsGavujvljwxaTKaTKaGCakMaGDjwTjyCaGFjzfaQeaGIaGJakNaGKakOaGLaGMaGNaGOaOPaGQaGRaGSaGTaGUakPaGVjzVtkHtkHaGXtkHtkHtkHtkHsyUsyUsFMaHbsyUaaaaaaaaabgqbgqaHeckyamEamEjAhjARjAYjDijDijDsjEcjEmjEnjHajHnjHHjHOjIMjIMjJfjJijKujKuiFyiJTenGenGaaaaaaaaaaWbjLajMajMOaGgjMYjPijRrjRWjSijUwjUxjXajXgjXUjYjjZykaMkdqkdqkdqkdLkeQkfJkfYkgikhrifdkhWkjbklKkmjknEknEknEknEiihkotkowkoFijckpxkqpcXZkrHkrZksekttkuxkvqkwykzzeTfaaaaaawxwaaaaaaaaacuRaagaagaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa diff --git a/maps/southern_cross/southern_cross-3.dmm b/maps/southern_cross/southern_cross-3.dmm index b93f4ae77c..1612922df9 100644 --- a/maps/southern_cross/southern_cross-3.dmm +++ b/maps/southern_cross/southern_cross-3.dmm @@ -17,6 +17,7 @@ "aav" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/ai) "aaM" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "abm" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/table/standard,/obj/random/contraband,/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_11) +"abq" = (/obj/structure/bed/chair,/obj/effect/floor_decal/corner/brown{dir = 5},/obj/effect/floor_decal/corner/brown{dir = 10},/obj/effect/floor_decal/corner/beige/diagonal,/obj/structure/sign/christmas/lights{dir = 1},/obj/item/clothing/head/santa/green,/obj/item/clothing/head/santa/green,/obj/item/clothing/under/christmas/green,/obj/item/clothing/under/christmas/green,/obj/item/clothing/under/christmas/croptop/green,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "abK" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techfloor,/area/ai) "abV" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/porta_turret/ai_defense,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/techfloor,/area/ai) "abX" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/ai) @@ -41,6 +42,7 @@ "aiP" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/greengrid,/area/ai) "ajC" = (/obj/structure/cable/cyan,/obj/machinery/power/smes/buildable{charge = 5e+006; input_attempt = 1; input_level = 200000; output_level = 200000},/obj/machinery/flasher{id = "AI"; pixel_y = -24},/turf/simulated/floor/plating,/area/ai) "ajO" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/gym) +"akk" = (/obj/machinery/particle_accelerator/control_box{anchored = 1; construction_state = 1},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "akz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/sleep/vistor_room_6) "akK" = (/obj/machinery/ai_slipper{icon_state = "motion0"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/greengrid,/area/ai) "alA" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/ai) @@ -133,6 +135,7 @@ "bgB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_12) "bgE" = (/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/power/solar_control{auto_start = 2; id = "foreportsolar"; name = "Fore Port Solar Control"},/turf/simulated/floor/plating,/area/maintenance/solars/foreportsolar) "bhy" = (/obj/machinery/camera/network/engineering{c_tag = "ENG - Solar Fore Port"},/obj/item/stack/cable_coil/yellow,/turf/simulated/floor/plating,/area/maintenance/solars/foreportsolar) +"bhP" = (/obj/structure/grille,/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced,/obj/machinery/light/floortube{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "bim" = (/obj/machinery/washing_machine,/obj/effect/floor_decal/corner_steel_grid{dir = 5},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) "biM" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/plating,/area/maintenance/solars/foreportsolar) "bjg" = (/turf/simulated/wall,/area/maintenance/solars/foreportsolar) @@ -150,6 +153,7 @@ "bng" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/ai) "bnv" = (/obj/machinery/porta_turret/ai_defense,/obj/effect/floor_decal/industrial/outline/grey,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/ai_status_display{pixel_y = -32},/turf/simulated/floor/tiled/techfloor,/area/ai) "bop" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) +"boE" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "bqB" = (/obj/effect/landmark{name = "maint_pred"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) "bqJ" = (/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) "bqS" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) @@ -165,6 +169,7 @@ "bzs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_6) "bzQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_3) "bAf" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/solars/forestarboardsolar) +"bAH" = (/obj/structure/closet/emcloset{anchored = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "bBg" = (/turf/simulated/wall,/area/crew_quarters/thirddeck/vrroom) "bCU" = (/obj/structure/cable/yellow,/turf/simulated/floor/airless,/area/solar/forestarboardsolar) "bDN" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/obj/machinery/firealarm{dir = 8; pixel_x = -26},/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/sleep/vistor_room_9) @@ -185,6 +190,7 @@ "bLc" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/solars/foreportsolar) "bLU" = (/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/wood,/area/crew_quarters/sleep/vistor_room_9) "bMP" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/port) +"bNG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "bOl" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/binary/pump/on{dir = 8; target_pressure = 200},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/solars/foreportsolar) "bOE" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/engineering{name = "Fore Port Solar Access"; req_access = list(); req_one_access = list(11,24)},/turf/simulated/floor/plating,/area/maintenance/solars/foreportsolar) "bOR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) @@ -217,6 +223,7 @@ "cfs" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/meter,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; layer = 3.3; master_tag = "fore_starboard_solar_airlock"; name = "interior access button"; pixel_x = 25; pixel_y = 25; req_access = list(); req_one_access = list(11,24)},/turf/simulated/floor/plating,/area/maintenance/solars/forestarboardsolar) "cfy" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "fore_starboard_solar_inner"; locked = 1; name = "Engineering External Access"; req_access = list(11,13)},/turf/simulated/floor/plating,/area/maintenance/solars/forestarboardsolar) "cgc" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 8},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "fore_starboard_solar_pump"},/turf/simulated/floor/plating,/area/maintenance/solars/forestarboardsolar) +"cgg" = (/obj/structure/grille,/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "cgt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "chp" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "fore_starboard_solar_airlock"; layer = 3.3; pixel_y = -25; req_access = list(13); tag_airpump = "fore_starboard_solar_pump"; tag_chamber_sensor = "fore_starboard_solar_sensor"; tag_exterior_door = "fore_starboard_solar_outer"; tag_interior_door = "fore_starboard_solar_inner"},/obj/machinery/airlock_sensor{id_tag = "fore_starboard_solar_sensor"; layer = 3.3; pixel_y = 25},/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "fore_starboard_solar_pump"},/turf/simulated/floor/plating,/area/maintenance/solars/forestarboardsolar) "chr" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "fore_starboard_solar_outer"; locked = 1; name = "Engineering External Access"; req_access = list(11,13)},/turf/simulated/floor/plating,/area/maintenance/solars/forestarboardsolar) @@ -256,6 +263,7 @@ "czh" = (/obj/item/stack/cable_coil/yellow,/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) "cAd" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/structure/sign/warning/airlock{pixel_y = -32},/turf/simulated/floor/plating,/area/maintenance/solars/forestarboardsolar) "cBt" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/solars/forestarboardsolar) +"cBS" = (/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/obj/structure/closet/radiation{anchored = 1; starts_with = list(/obj/item/clothing/suit/radiation = 4, /obj/item/clothing/head/radiation = 4, /obj/item/device/geiger = 4)},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "cCe" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/solars/forestarboardsolar) "cCt" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/solars/forestarboardsolar) "cDl" = (/obj/structure/sign/securearea{icon_state = "restroom"},/turf/simulated/wall,/area/crew_quarters/toilet) @@ -319,6 +327,7 @@ "ddu" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable/cyan{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/techfloor,/area/ai/ai_upload) "def" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/bluegrid,/area/ai/ai_upload) "det" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) +"deR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "dfh" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "dfC" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/random/junk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) "dgt" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/solar/foreportsolar) @@ -393,6 +402,7 @@ "dRt" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/highsecurity{name = "Synthetic Storage Access"; req_access = list(16); req_one_access = list(16)},/turf/simulated/floor/tiled/techfloor,/area/ai/ai_cyborg_station) "dRN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/landmark/start{name = "Cyborg"},/turf/simulated/floor/tiled/techfloor,/area/ai/ai_cyborg_station) "dSr" = (/obj/machinery/washing_machine,/obj/effect/floor_decal/corner_steel_grid{dir = 5},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) +"dSM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "dSN" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark/start{name = "Cyborg"},/turf/simulated/floor/tiled/techfloor,/area/ai/ai_cyborg_station) "dSP" = (/obj/effect/floor_decal/carpet,/obj/effect/floor_decal/carpet{dir = 8},/obj/effect/floor_decal/carpet{dir = 10},/turf/simulated/floor/carpet/retro_red,/area/crew_quarters/cafeteria) "dSS" = (/obj/effect/effect/snow,/obj/effect/floor_decal/spline/fancy{dir = 8},/obj/structure/event/present,/turf/simulated/floor/outdoors/snow{outdoors = 0},/area/crew_quarters/cafeteria) @@ -437,6 +447,7 @@ "eeV" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/cmo/quarters) "efi" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/hor/quarters) "ega" = (/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/hor/quarters) +"egb" = (/obj/structure/grille,/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "ehd" = (/obj/random/junk,/turf/simulated/floor/carpet/oracarpet,/area/maintenance/thirddeck/dormsatmos) "ehe" = (/obj/machinery/button/remote/airlock{id = "Dorms11"; name = "Bolt Control"; pixel_x = -30; specialfunctions = 4},/obj/structure/bed/chair/comfy/brown{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_11) "ehj" = (/obj/random/action_figure,/turf/simulated/floor/carpet/oracarpet,/area/maintenance/thirddeck/dormsatmos) @@ -444,6 +455,7 @@ "eiK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/meter,/obj/random/mob/mouse,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) "ejh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) "ekj" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) +"ekp" = (/obj/machinery/door/blast/regular{id = "palabvent"; name = "PA Lab Blast Door"},/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "ekP" = (/obj/machinery/computer/security/telescreen/entertainment{layer = 4; pixel_y = -32},/obj/structure/coatrack,/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_2) "ele" = (/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,/obj/machinery/light/small{dir = 8},/obj/structure/catwalk,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) "elx" = (/obj/structure/closet/secure_closet/hop2,/obj/machinery/keycard_auth{pixel_x = -26},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hop/quarters) @@ -493,6 +505,7 @@ "ezD" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/central) "ezK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/ai_status_display{pixel_y = 32},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "eAr" = (/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped/stokcube,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) +"eAz" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/grey/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "eBi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "eBy" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36; pixel_y = -6},/obj/machinery/button/windowtint{id = "cmoquarters"; pixel_x = -36; pixel_y = 6},/turf/simulated/floor/carpet/blue,/area/crew_quarters/heads/sc/cmo/quarters) "eCs" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/blue,/area/crew_quarters/heads/sc/cmo/quarters) @@ -551,6 +564,7 @@ "fam" = (/obj/effect/wingrille_spawn/reinforced/polarized{id = "hopquarters"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/hop/quarters) "fau" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/command{id_tag = "hopquarters"; name = "Head of Personnel Quarters"; req_access = list(57)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/heads/sc/hop/quarters) "faF" = (/turf/simulated/wall,/area/crew_quarters/heads/sc/hop/quarters) +"faI" = (/obj/machinery/light,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/grey/border,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "faZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Command Substation"; req_one_access = list(11,19,24)},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor,/area/maintenance/substation/command) "fbj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "fbn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/wall,/area/maintenance/substation/command) @@ -599,6 +613,7 @@ "fnn" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/port) "foz" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/port) "fpl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/port) +"fqD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "frh" = (/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Port Hallway 1"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/port) "frz" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/port) "frG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/port) @@ -617,6 +632,7 @@ "fxz" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/starboard) "fyg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) "fyw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) +"fyI" = (/obj/item/stack/rods,/obj/structure/lattice,/obj/structure/grille/broken,/turf/space,/area/space) "fzr" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) "fzQ" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/event/present,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) "fzX" = (/obj/structure/closet/emcloset,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) @@ -625,6 +641,7 @@ "fAM" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) "fBA" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) "fBR" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) +"fCi" = (/obj/structure/grille,/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced,/obj/machinery/light/floortube{dir = 8},/obj/machinery/camera/network/research{c_tag = "SCI - Particle Accelerator 3"; dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "fCn" = (/obj/machinery/alarm{dir = 1; frequency = 1441; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/sleep/vistor_room_3) "fCW" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) "fCX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) @@ -674,9 +691,11 @@ "fUa" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "fUE" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "fUH" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/heads/sc/restroom) +"fUI" = (/turf/simulated/wall/r_lead,/area/rnd/research/particleaccelerator) "fUM" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/central) "fUN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "fVO" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsatmos) +"fVU" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_lead,/area/rnd/research/particleaccelerator) "fWg" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "fWz" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "fWL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) @@ -787,6 +806,7 @@ "hcC" = (/obj/effect/wingrille_spawn/reinforced/polarized{id = "bsquarters"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/bs) "hcP" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads/sc/bs) "hdM" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) +"heB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/bed/chair/office/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "hfi" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) "hfm" = (/turf/simulated/wall,/area/hallway/primary/thirddeck/starboard) "hfA" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 8},/turf/simulated/shuttle/wall,/area/shuttle/escape_pod8/station) @@ -802,6 +822,7 @@ "hkY" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "escape_pod_7_berth_hatch"; locked = 1; name = "Escape Pod 7"; req_access = list(13)},/turf/simulated/floor,/area/hallway/primary/thirddeck/port) "hln" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{frequency = 1380; id_tag = "escape_pod_7_berth"; pixel_x = -25; pixel_y = 30; tag_door = "escape_pod_7_berth_hatch"},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/port) "hlx" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/port) +"hlI" = (/obj/structure/fans/hardlight/colorable{desc = "Retains air, blocks radiation, allows passage."; light_color = "#243550"; name = "hardlight radiation shield"; rad_resistance = 200},/obj/machinery/door/window/brigdoor/northright{name = "Particle Focus door"; req_access = list(7)},/obj/machinery/button/remote/blast_door{dir = 8; id = "palabvent"; name = "Emergency Vent Control"; pixel_x = 25; req_access = list(7)},/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "hlY" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/heads/sc/restroom) "hmi" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/heads/sc/restroom) "hml" = (/obj/structure/sink{pixel_y = 16},/obj/structure/mirror{pixel_y = 32},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/heads/sc/restroom) @@ -892,6 +913,7 @@ "ihn" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "ihC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "iiZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) +"ijq" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "ijw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "iki" = (/obj/structure/table/rack,/obj/item/device/tvcamera,/obj/item/device/tvcamera,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "ikQ" = (/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/vending/snack{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/gym) @@ -899,6 +921,7 @@ "ios" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "ipu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "irZ" = (/obj/structure/sign/directions/gym,/turf/simulated/wall,/area/crew_quarters/seconddeck/gym) +"isJ" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "itj" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "iuZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "ivn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) @@ -917,6 +940,7 @@ "iBn" = (/obj/structure/closet/lawcloset,/obj/machinery/keycard_auth{desc = "This device is used to trigger station functions, which require more than one ID card to authenticate. This one has a small note taped to it. The note reads: I know the secrearies don't have access to these by default, but I am putting it here anyway, on the off chance that one is given the proper clearance and needs to use it. Better safe than sorry. - CE Sivaad Veiter"; name = "Oddly Placed Keycard Authentication Device"; pixel_x = 26},/turf/simulated/floor/carpet/blue,/area/crew_quarters/heads/sc/bs) "iBE" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/corner/orange/diagonal,/obj/effect/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria) "iCa" = (/obj/structure/fitness/punchingbag,/turf/simulated/floor/boxing/gym,/area/crew_quarters/seconddeck/gym) +"iCR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "iDw" = (/turf/simulated/wall,/area/maintenance/thirddeck/aftstarboard) "iDQ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) "iEb" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "d3_port_dorms_airlock"; name = "interior access button"; pixel_x = -25; pixel_y = 26; req_access = null},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) @@ -931,6 +955,7 @@ "iIX" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) "iJc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "iJD" = (/obj/machinery/light{dir = 8},/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_9) +"iJW" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "iKs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "iKC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/station_map{dir = 1; pixel_y = -32},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "iKR" = (/obj/structure/table/standard,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/random/action_figure,/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_8) @@ -985,6 +1010,7 @@ "jiY" = (/obj/item/clothing/suit/cultrobes/alt{armor = list("melee"=5,"bullet"=5,"laser"=5,"energy"=10,"bomb"=25,"bio"=10,"rad"=0)},/turf/simulated/floor/wood/sif/broken,/area/maintenance/thirddeck/aftstarboard) "jjg" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/light_construct{dir = 8},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/maintenance/thirddeck/aftport) "jjl" = (/obj/structure/closet/emcloset,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) +"jjx" = (/obj/machinery/power/thermoregulator/southerncross{pixel_y = 30},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/emitter{anchored = 1; state = 2},/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "jjB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/sink{pixel_y = 16},/obj/structure/mirror{pixel_y = 32},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/sleep/vistor_room_3) "jjF" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/maintenance/thirddeck/aftport) "jjK" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) @@ -1000,6 +1026,7 @@ "jpj" = (/obj/machinery/alarm{pixel_y = 22},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "jqa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) "jqd" = (/obj/machinery/vending/snack{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) +"jqk" = (/obj/machinery/light{dir = 8},/turf/simulated/open,/area/rnd/research/particleaccelerator) "jqO" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/glass_command{id_tag = "sbridgedoor"; name = "Bridge"; req_access = list(19)},/turf/simulated/floor/tiled/steel_grid,/area/bridge) "jra" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/glass_command{id_tag = "sbridgedoor"; name = "Bridge"; req_access = list(19)},/turf/simulated/floor/tiled/steel_grid,/area/bridge) "jtv" = (/obj/structure/table/wooden_reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/weapon/storage/box/matches,/obj/item/clothing/mask/smokable/cigarette/cigar,/obj/item/weapon/reagent_containers/food/drinks/flask{pixel_x = 8},/obj/random_multi/single_item/captains_spare_id,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/sd) @@ -1008,6 +1035,7 @@ "jub" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/sd) "jul" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/sd) "jun" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Bathroom"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/heads/sc/sd) +"jux" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "jvv" = (/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_6) "jvU" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_y = -30},/obj/effect/shuttle_landmark/southern_cross/escape_pod7/station,/turf/simulated/shuttle/floor,/area/shuttle/escape_pod7/station) "jwk" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/yellowdouble,/turf/simulated/floor/carpet/blue,/area/crew_quarters/sleep/vistor_room_3) @@ -1026,6 +1054,7 @@ "jGu" = (/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/wood/sif,/area/maintenance/thirddeck/aftstarboard) "jGz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/gym) "jGG" = (/obj/structure/bed/chair/oldsofa/right{dir = 1},/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftport) +"jHg" = (/obj/item/device/geiger/wall/south,/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "jHs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "jHD" = (/obj/structure/bed/chair/oldsofa/left{dir = 1},/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftport) "jHY" = (/obj/effect/floor_decal/spline/fancy/wood/corner{dir = 4},/obj/item/weapon/handcuffs/legcuffs/fuzzy,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftport) @@ -1107,6 +1136,7 @@ "kvb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "kvs" = (/turf/simulated/floor/wood/broken,/area/maintenance/thirddeck/dormsatmos) "kwc" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) +"kwm" = (/obj/machinery/particle_smasher,/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "kxk" = (/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Stairwell"; dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "kxK" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "kzd" = (/obj/structure/flora/pottedplant/xmas{pixel_y = 11},/turf/simulated/floor/wood,/area/bridge/meeting_room) @@ -1116,6 +1146,7 @@ "kAA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/bridge) "kAB" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/bridge) "kAS" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/command{name = "Station Director's Quarters"; req_access = list(20)},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/sd) +"kBp" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/binary/passive_gate{name = "PA Chamber pressure regulator"},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "kCd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) "kDx" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsatmos) "kEc" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/catwalk,/obj/random/trash,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) @@ -1124,7 +1155,7 @@ "kFY" = (/obj/machinery/chemical_dispenser/bar_alc{dir = 4; pixel_x = -5},/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) "kGh" = (/obj/structure/windoor_assembly,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) "kGY" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/maintenance/substation/dorms) -"kHk" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/carpet{dir = 8},/obj/effect/floor_decal/carpet{dir = 1},/obj/effect/floor_decal/carpet{dir = 9; pixel_y = 0},/turf/simulated/floor/carpet,/area/crew_quarters/seconddeck/gym) +"kHk" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/carpet{dir = 8},/obj/effect/floor_decal/carpet{dir = 1},/obj/effect/floor_decal/carpet{dir = 9},/turf/simulated/floor/carpet,/area/crew_quarters/seconddeck/gym) "kHP" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "kHW" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Command Secretary"},/turf/simulated/floor/wood,/area/bridge/meeting_room) "kII" = (/obj/structure/table/marble,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) @@ -1142,6 +1173,7 @@ "kPn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aft) "kQk" = (/obj/machinery/fitness/punching_bag/clown,/turf/simulated/floor/boxing/gym,/area/crew_quarters/seconddeck/gym) "kQo" = (/obj/machinery/hologram/holopad,/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/bridge/meeting_room) +"kQJ" = (/obj/structure/particle_accelerator/particle_emitter/center{anchored = 1; construction_state = 1; dir = 4},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "kRw" = (/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/bridge/meeting_room) "kSx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_6) "kTm" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/highsecurity{name = "AI Upload Access"; req_access = list(16); req_one_access = list(16)},/turf/simulated/floor/tiled/techfloor,/area/ai/ai_upload_foyer) @@ -1149,6 +1181,7 @@ "kTz" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/effect/wingrille_spawn/reinforced/polarized{id = "bridge_center"},/turf/simulated/floor/plating,/area/bridge) "kTF" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/sleep/vistor_room_12) "kTK" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access = list(19)},/turf/simulated/floor/tiled/steel_grid,/area/bridge) +"kTO" = (/obj/structure/particle_accelerator/fuel_chamber{anchored = 1; construction_state = 1; dir = 4},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "kUR" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/wingrille_spawn/reinforced/polarized{id = "bridge_center"},/turf/simulated/floor/plating,/area/bridge) "kVg" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/blast/regular{density = 0; dir = 8; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/effect/wingrille_spawn/reinforced/polarized{id = "bridge_center"},/turf/simulated/floor/plating,/area/bridge) "kWg" = (/obj/item/weapon/pack/cardemon,/obj/structure/table,/turf/simulated/floor/carpet/oracarpet,/area/maintenance/thirddeck/dormsatmos) @@ -1206,6 +1239,7 @@ "lAw" = (/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/sleep/vistor_room_9) "lAx" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "lBH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/ai_status_display{pixel_x = 32},/turf/simulated/floor/tiled,/area/bridge) +"lBL" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/grey/border,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "lCg" = (/obj/structure/filingcabinet,/obj/machinery/ai_status_display{pixel_x = -32},/turf/simulated/floor/wood,/area/crew_quarters/heads/sc/sd) "lCh" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/heads/sc/sd) "lCG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/heads/sc/sd) @@ -1230,6 +1264,7 @@ "lOq" = (/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/wood,/area/crew_quarters/cafeteria) "lOz" = (/obj/structure/loot_pile/mecha/hoverpod,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "lOB" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) +"lPC" = (/obj/structure/particle_accelerator/end_cap{anchored = 1; construction_state = 1; dir = 4},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "lPN" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/command{name = "Conference Room"; req_access = list(19)},/turf/simulated/floor/wood,/area/bridge/meeting_room) "lQt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/bridge) "lRi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/bridge) @@ -1241,6 +1276,7 @@ "lTV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/bridge) "lTW" = (/obj/structure/table/rack,/obj/structure/window/reinforced,/obj/item/weapon/tank/jetpack/oxygen,/obj/item/clothing/mask/gas,/obj/structure/window/reinforced{dir = 8; health = null},/obj/structure/window/reinforced{dir = 4},/obj/item/clothing/suit/space/void/captain,/obj/item/clothing/head/helmet/space/void/captain,/obj/machinery/door/window/holowindoor{dir = 1; req_access = list(20)},/turf/simulated/floor/wood,/area/crew_quarters/heads/sc/sd) "lUe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/window/southleft{name = "Director's Desk Door"; req_access = list(20)},/turf/simulated/floor/wood,/area/crew_quarters/heads/sc/sd) +"lUl" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "lUt" = (/obj/machinery/bookbinder,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "lUD" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/starboard) "lUS" = (/obj/structure/table/wooden_reinforced,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/blue,/obj/item/device/megaphone,/obj/item/weapon/pen/multi,/turf/simulated/floor/wood,/area/crew_quarters/heads/sc/sd) @@ -1255,6 +1291,7 @@ "lZF" = (/obj/effect/effect/snow,/obj/structure/flora/tree/pine/xmas/presents,/turf/simulated/floor/outdoors/snow{outdoors = 0},/area/crew_quarters/cafeteria) "lZW" = (/obj/item/stack/material/marble{amount = 25},/turf/simulated/floor/tiled,/area/maintenance/thirddeck/aftport) "maG" = (/obj/structure/table/standard,/obj/item/weapon/lipstick/random,/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_11) +"maM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "mbQ" = (/obj/structure/sign/directions/gym{dir = 1},/turf/simulated/wall,/area/crew_quarters/toilet) "mcQ" = (/obj/effect/decal/remains/human,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) "mdc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/sleep/vistor_room_12) @@ -1271,6 +1308,7 @@ "mhi" = (/obj/item/weapon/implant/dud,/obj/structure/table/steel,/obj/item/weapon/implant/sizecontrol,/obj/item/weapon/implant/dud,/obj/item/clothing/under/rank/geneticist,/obj/item/weapon/handcuffs/cable/white,/obj/item/clothing/suit/storage/toggle/labcoat,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) "mhn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/bridge) "mhC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/bridge) +"mhK" = (/obj/structure/particle_accelerator/particle_emitter/left{anchored = 1; construction_state = 1; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "miC" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) "miE" = (/obj/structure/table/steel,/obj/item/weapon/folder/blue,/obj/item/device/starcaster_news,/obj/item/device/starcaster_news,/obj/item/device/starcaster_news,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "miH" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/yellow,/obj/item/device/flashlight,/obj/item/device/flashlight{pixel_x = 2; pixel_y = 2},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 8},/obj/item/device/radio{pixel_x = -5; pixel_y = -5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/tiled/dark,/area/bridge) @@ -1317,6 +1355,7 @@ "mDE" = (/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/plating,/area/maintenance/thirddeck/aftport) "mEk" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_one_access = list(19)},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/turf/simulated/floor/plating,/area/bridge/meeting_room) "mEG" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) +"mEY" = (/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "mFG" = (/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/wood,/area/bridge/meeting_room) "mFN" = (/obj/machinery/vending/loadout/clothing,/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) "mFO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/wood,/area/bridge/meeting_room) @@ -1328,6 +1367,7 @@ "mKs" = (/turf/simulated/floor/tiled,/area/bridge) "mKx" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/heads/sc/restroom) "mKL" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/bridge) +"mKT" = (/obj/structure/particle_accelerator/particle_emitter/right{anchored = 1; construction_state = 1; dir = 4},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "mLT" = (/obj/item/toy/sif{pixel_y = 10},/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/bridge) "mMR" = (/obj/item/toy/figure/station{pixel_y = 10},/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/bridge) "mMV" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/bridge) @@ -1376,6 +1416,7 @@ "niM" = (/obj/structure/table/woodentable,/obj/item/device/tape/random,/obj/item/device/taperecorder,/obj/item/toy/xmastree,/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/sd) "njj" = (/obj/structure/table/woodentable,/obj/machinery/recharger,/obj/item/weapon/storage/secure/safe{pixel_x = 5; pixel_y = -26},/turf/simulated/floor/wood,/area/crew_quarters/heads/sc/sd) "njv" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) +"njz" = (/obj/machinery/door/window/brigdoor/southright{name = "Particle Focus door"; req_access = list(7)},/obj/structure/fans/hardlight/colorable{desc = "Retains air, blocks radiation, allows passage."; light_color = "#243550"; name = "hardlight radiation shield"; rad_resistance = 200},/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "njY" = (/turf/simulated/wall/r_wall,/area/maintenance/solars/aftstarboardsolar) "nkg" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/solars/aftstarboardsolar) "nkF" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/smes/buildable{RCon_tag = "Solar - Aft Port"; input_attempt = 1; input_level = 150000; output_level = 100000},/turf/simulated/floor/plating,/area/maintenance/solars/aftportsolar) @@ -1421,6 +1462,7 @@ "nGx" = (/obj/machinery/alarm{pixel_y = 22},/obj/machinery/power/terminal{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/solars/aftstarboardsolar) "nHA" = (/obj/structure/bed/chair/wood,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "nIu" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/structure/sign/warning/airlock{pixel_y = 32},/turf/simulated/floor/plating,/area/maintenance/solars/aftstarboardsolar) +"nJi" = (/obj/structure/grille,/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced,/obj/machinery/light/floortube{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "nKZ" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/maintenance/solars/aftstarboardsolar) "nLH" = (/obj/structure/bed/chair/bay/chair/padded/red/bignest,/obj/item/toy/plushie/teshari/strix,/turf/simulated/floor/carpet/oracarpet,/area/maintenance/thirddeck/dormsatmos) "nLS" = (/obj/machinery/vending/foodfast{desc = "Not sure how they're united but man is this grilled food delicious! Though it seems to just be a lot of unhealthy fast food..."},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) @@ -1458,7 +1500,9 @@ "oaL" = (/obj/structure/sign/warning/high_voltage,/turf/simulated/wall/r_wall,/area/crew_quarters/heads/sc/sd) "obC" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/blast/regular{density = 0; dir = 8; icon_state = "pdoor0"; id = "directorblast"; name = "Blast Doors"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/sd) "obF" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/aftdoorm) +"obU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump{dir = 8},/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "ocl" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green,/obj/machinery/door/blast/regular{density = 0; dir = 8; icon_state = "pdoor0"; id = "directorblast"; name = "Blast Doors"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/sd) +"ocq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "odB" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/blast/regular{density = 0; dir = 8; icon_state = "pdoor0"; id = "directorblast"; name = "Blast Doors"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/sd) "odE" = (/obj/effect/floor_decal/corner/orange/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria) "oeX" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/blast/regular{density = 0; dir = 8; icon_state = "pdoor0"; id = "directorblast"; name = "Blast Doors"; opacity = 0},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/heads/sc/sd) @@ -1495,6 +1539,7 @@ "osR" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/reinforced/airless,/area/thirddeck/roof) "ouE" = (/obj/structure/sign/warning/high_voltage{pixel_y = 32},/turf/simulated/floor/reinforced/airless,/area/thirddeck/roof) "ouV" = (/obj/structure/ladder,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) +"ouY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/grey/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "owk" = (/obj/random/trash,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) "owK" = (/obj/structure/salvageable/console_os,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) "owX" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) @@ -1554,6 +1599,7 @@ "oYU" = (/obj/effect/floor_decal/corner/orange/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria) "oZi" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/machinery/door/firedoor/border_only,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/aftstarboardcentral) "oZK" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/cosmos,/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/sleep/vistor_room_12) +"pac" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "pbl" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 1},/obj/machinery/firealarm{layer = 3.3; pixel_y = 26},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftstarboardcentral) "pbI" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftstarboardcentral) "pcr" = (/obj/machinery/door/airlock{id_tag = "Dorms6"; name = "Room 6"},/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/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/sleep/vistor_room_6) @@ -1570,6 +1616,7 @@ "pkH" = (/obj/structure/sign/directions/eva{dir = 1; pixel_y = -3},/obj/structure/sign/directions/command{dir = 1; pixel_y = 3},/turf/simulated/floor/reinforced/airless,/area/thirddeck/roof) "pkQ" = (/obj/structure/closet/crate,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/obj/random/maintenance/medical,/turf/simulated/floor/wood,/area/maintenance/thirddeck/dormsatmos) "pld" = (/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/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/stationgateway) +"pmm" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "pmn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/stationgateway) "pmD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/stationgateway) "pmN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/stationgateway) @@ -1611,6 +1658,7 @@ "pES" = (/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Station Gateway"; dir = 1},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/stationgateway) "pFO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/sleep/vistor_room_1) "pGp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/stationgateway) +"pGt" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/item/device/geiger/wall/west,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/grey/bordercorner{dir = 8},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "pGF" = (/obj/structure/salvageable/server_os,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "pGV" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/flora/pottedplant/drooping{pixel_x = 1; pixel_y = 10},/obj/structure/table/bench/wooden,/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/stationgateway) "pGW" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/hallway/primary/thirddeck/stationgateway) @@ -1653,19 +1701,22 @@ "qcT" = (/obj/structure/catwalk,/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "qdj" = (/obj/structure/bed/chair/bay/chair/padded/red/smallnest,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) "qdZ" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) +"qeo" = (/obj/machinery/light,/obj/structure/closet/hydrant{pixel_x = -32},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/grey/border{dir = 10},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "qew" = (/obj/effect/floor_decal/corner_techfloor_gray{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/thirddeck/vrroom) "qff" = (/obj/machinery/computer/arcade,/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Port Civ Bar 2"},/obj/effect/floor_decal/carpet{dir = 1},/turf/simulated/floor/carpet/retro_red,/area/crew_quarters/cafeteria) "qfg" = (/obj/machinery/button/remote/blast_door{id = "heads_meeting"; name = "Security Shutters"; pixel_x = -26},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"qhW" = (/obj/structure/table/reinforced,/obj/machinery/alarm{dir = 4; pixel_x = -22; req_one_access = list(24,11,7)},/obj/machinery/recharger,/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/grey/border{dir = 9},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "qik" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) "qja" = (/obj/effect/floor_decal/steeldecal/steel_decals_central6,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/seconddeck/gym) "qjx" = (/obj/machinery/computer/arcade,/obj/effect/floor_decal/carpet{dir = 4},/obj/effect/floor_decal/carpet{dir = 1},/obj/effect/floor_decal/carpet{dir = 5},/turf/simulated/floor/carpet/retro_red,/area/crew_quarters/cafeteria) "qjy" = (/obj/structure/sign/directions/ladder_down{name = "\improper Down One Deck"; pixel_y = -6},/obj/structure/sign/directions/eva,/obj/structure/sign/directions/security{pixel_y = 6},/turf/simulated/floor/reinforced/airless,/area/thirddeck/roof) -"qjG" = (/obj/machinery/computer/arcade,/obj/effect/floor_decal/carpet{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/carpet{dir = 8},/obj/effect/floor_decal/carpet{dir = 9; pixel_y = 0},/turf/simulated/floor/carpet/retro_red,/area/crew_quarters/cafeteria) +"qjG" = (/obj/machinery/computer/arcade,/obj/effect/floor_decal/carpet{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/carpet{dir = 8},/obj/effect/floor_decal/carpet{dir = 9},/turf/simulated/floor/carpet/retro_red,/area/crew_quarters/cafeteria) "qjP" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aft) "qkf" = (/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Aft Civ Hallway 1"},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/aft) "qkA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aft) "qld" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "qlf" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/solar{id = "forestarboardsolar"; name = "Starboard Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/solar/forestarboardsolar) +"qlN" = (/obj/machinery/shield_diffuser,/obj/machinery/door/blast/regular{id = "palabvent"; name = "PA Lab Blast Door"},/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "qmc" = (/obj/structure/table/woodentable,/obj/item/device/starcaster_news,/obj/effect/floor_decal/carpet,/turf/simulated/floor/carpet,/area/crew_quarters/seconddeck/gym) "qmA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "qmU" = (/obj/machinery/button/remote/airlock{id = "Dorms5"; name = "Bolt Control"; pixel_y = -30; specialfunctions = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_5) @@ -1680,6 +1731,7 @@ "qrB" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftportcentral) "qtx" = (/obj/machinery/vending/wallmed1{name = "Emergency NanoMed"; pixel_y = 28},/turf/simulated/floor/boxing/gym,/area/crew_quarters/seconddeck/gym) "qtS" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "d3_starboard_dorms_inner"; locked = 1; name = "Internal Airlock Access"; req_access = list(13)},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) +"quu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "quN" = (/turf/simulated/wall,/area/maintenance/substation/dorms) "qvB" = (/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},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/toilet) "qwl" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) @@ -1718,7 +1770,7 @@ "qMf" = (/obj/machinery/door/airlock{id_tag = "Dorms8"; name = "Room 8"},/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/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/sleep/vistor_room_8) "qMu" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/gym) "qNG" = (/obj/structure/windoor_assembly{dir = 4},/obj/item/tape/engineering,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) -"qQg" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/corner_steel_grid/full,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) +"qQg" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/corner_steel_grid/full,/obj/structure/sign/christmas/lights{dir = 1},/obj/item/clothing/suit/storage/hooded/wintercoat/christmasred,/obj/item/clothing/suit/storage/hooded/wintercoat/christmasred,/obj/item/clothing/shoes/boots/winter/christmasred,/obj/item/clothing/shoes/boots/winter/christmasred,/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) "qQv" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) "qQC" = (/obj/machinery/door/firedoor/multi_tile/glass,/obj/machinery/door/airlock/multi_tile/glass{name = "Gym"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/seconddeck/gym) "qRa" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) @@ -1741,6 +1793,7 @@ "rbj" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 8},/obj/structure/railing,/turf/simulated/open,/area/hallway/primary/thirddeck/aft) "rbp" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/stack/cable_coil/yellow,/obj/item/stack/cable_coil/yellow,/obj/item/stack/cable_coil/yellow,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/solars/aftportsolar) "rbz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aft) +"rbB" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "rbF" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/obj/machinery/vending/fitness{dir = 8; pixel_x = -5},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/gym) "rcR" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/aftdoorm) "rcT" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftstarboardcentral) @@ -1757,12 +1810,13 @@ "rhH" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "rhR" = (/obj/structure/sign/warning/secure_area,/turf/simulated/wall/r_wall,/area/hallway/primary/thirddeck/central) "riY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) +"rjA" = (/obj/structure/table/reinforced,/obj/machinery/light/floortube{dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/item/bodybag/cryobag{pixel_x = 6},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 5},/obj/item/weapon/reagent_containers/hypospray/autoinjector/rad{pixel_y = -3},/obj/item/weapon/reagent_containers/hypospray/autoinjector/rad{pixel_y = 3},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "rjS" = (/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) "rlC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "rmf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_5) "rmj" = (/turf/simulated/wall,/area/maintenance/thirddeck/dormsatmos) "rmQ" = (/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/floor/wood/alt/parquet,/area/crew_quarters/thirddeck/vrroom) -"rng" = (/obj/machinery/vr_sleeper{icon_state = "body_scanner_0"},/turf/simulated/floor/tiled/milspec/raised,/area/crew_quarters/thirddeck/vrroom) +"rng" = (/obj/machinery/vr_sleeper,/turf/simulated/floor/tiled/milspec/raised,/area/crew_quarters/thirddeck/vrroom) "rnG" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 4; layer = 3},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/thirddeck/vrroom) "rnN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/button/windowtint{id = "vrroom"; pixel_x = 26; pixel_y = 11},/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/machinery/light_switch{dir = 8; name = "light switch "; pixel_x = 26; pixel_y = -11},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/thirddeck/vrroom) "roG" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/effect/floor_decal/corner_techfloor_gray{dir = 5},/obj/structure/table/hardwoodtable,/obj/item/weapon/paper_bin,/obj/item/weapon/folder/white,/obj/item/weapon/pen{pixel_y = -3},/obj/item/weapon/pen,/obj/item/weapon/tape_roll{pixel_x = -9; pixel_y = 14},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/thirddeck/vrroom) @@ -1770,6 +1824,7 @@ "rpp" = (/obj/random/junk,/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/sleep/vistor_room_12) "rpL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "rpR" = (/obj/item/device/flashlight/lamp,/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsatmos) +"rqh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "rqw" = (/turf/simulated/wall{can_open = 1; desc = "A huge chunk of metal used to seperate rooms. There are scratch marks along the floor."},/area/maintenance/thirddeck/dormsstarboard) "rqQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria) "rqT" = (/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/steel_grid,/area/crew_quarters/cafeteria) @@ -1786,7 +1841,7 @@ "ryK" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/boxing{name = "yoga mat"},/area/crew_quarters/seconddeck/gym) "rzo" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/wall/r_wall,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "rzY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) -"rCL" = (/obj/structure/cryofeed{dir = 4; pixel_x = -31; pixel_y = 0},/obj/machinery/vr_sleeper{icon_state = "body_scanner_0"},/turf/simulated/floor/tiled/milspec/raised,/area/crew_quarters/thirddeck/vrroom) +"rCL" = (/obj/structure/cryofeed{dir = 4; pixel_x = -31},/obj/machinery/vr_sleeper,/turf/simulated/floor/tiled/milspec/raised,/area/crew_quarters/thirddeck/vrroom) "rDw" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/solar/aftportsolar) "rEL" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/boxing{name = "yoga mat"},/area/crew_quarters/seconddeck/gym) "rGf" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space) @@ -1801,7 +1856,7 @@ "rLC" = (/obj/structure/disposalpipe/segment,/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/tiled,/area/crew_quarters/seconddeck/gym) "rMh" = (/obj/structure/window/reinforced/tinted/frosted{dir = 8},/obj/effect/floor_decal/spline/plain{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 8},/obj/item/weapon/tape_roll{pixel_x = 4; pixel_y = 4},/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/gym) "rMA" = (/obj/structure/bed/chair/comfy/black{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_1) -"rNC" = (/obj/structure/bed/chair,/obj/effect/floor_decal/corner/brown{dir = 5},/obj/effect/floor_decal/corner/brown{dir = 10},/obj/effect/floor_decal/corner/beige/diagonal,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) +"rNC" = (/obj/structure/bed/chair,/obj/effect/floor_decal/corner/brown{dir = 5},/obj/effect/floor_decal/corner/brown{dir = 10},/obj/effect/floor_decal/corner/beige/diagonal,/obj/structure/sign/christmas/lights{dir = 1},/obj/item/clothing/head/santa,/obj/item/clothing/head/santa,/obj/item/clothing/under/christmas/red,/obj/item/clothing/under/christmas/red,/obj/item/clothing/under/christmas/croptop/red,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "rNN" = (/obj/structure/bed/chair/bay/chair/padded/red/smallnest,/turf/simulated/floor/wood,/area/maintenance/thirddeck/dormsatmos) "rOA" = (/obj/structure/catwalk,/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) "rQi" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/toilet) @@ -1817,6 +1872,7 @@ "rUF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/aft) "rUK" = (/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 2; name = "Cafeteria"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/cafeteria) "rVl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aft) +"rVm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "rVR" = (/obj/structure/table/bench/wooden,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/sleep/vistor_room_2) "rWM" = (/turf/simulated/wall/r_wall,/area/crew_quarters/thirddeck/vrroom) "rXX" = (/obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped/stokcube,/obj/random/trash,/obj/machinery/light_construct/small,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) @@ -1852,6 +1908,7 @@ "smo" = (/obj/structure/catwalk,/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) "smy" = (/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/vending/cola{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/seconddeck/gym) "smF" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) +"smS" = (/obj/structure/cable/green{d1 = 32; d2 = 4; icon_state = "32-4"},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 4},/obj/machinery/door/window/brigdoor/eastright{name = "Particle Accelerator door"; req_access = list(7)},/obj/structure/disposalpipe/down{dir = 4},/turf/simulated/open,/area/rnd/research/particleaccelerator) "soZ" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "spk" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/seconddeck/gym) "spz" = (/obj/structure/railing{dir = 1},/obj/machinery/light{dir = 1; layer = 3},/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/open,/area/crew_quarters/seconddeck/gym) @@ -1916,11 +1973,11 @@ "sTq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftportcentral) "sTu" = (/obj/machinery/fitness/heavy/lifter,/turf/simulated/floor/boxing/gym,/area/crew_quarters/seconddeck/gym) "sUf" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/crew_quarters/cafeteria) -"sUk" = (/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - VR Lobby"; dir = 1},/obj/machinery/vr_sleeper{icon_state = "body_scanner_0"},/turf/simulated/floor/tiled/milspec/raised,/area/crew_quarters/thirddeck/vrroom) +"sUk" = (/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - VR Lobby"; dir = 1},/obj/machinery/vr_sleeper,/turf/simulated/floor/tiled/milspec/raised,/area/crew_quarters/thirddeck/vrroom) "sUG" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/wood/alt/parquet,/area/crew_quarters/thirddeck/vrroom) "sUX" = (/obj/effect/floor_decal/corner_techfloor_gray{dir = 10},/obj/effect/floor_decal/corner_techfloor_gray{dir = 9},/obj/structure/table/hardwoodtable,/obj/item/device/paicard/typeb,/obj/item/toy/xmastree,/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/thirddeck/vrroom) "sVv" = (/obj/item/toy/figure/geneticist,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) -"sVK" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/floor_decal/corner_techfloor_gray{dir = 10},/obj/structure/table/rack/shelf,/obj/item/weapon/towel/random{pixel_x = -5; pixel_y = -5},/obj/item/weapon/towel/random{pixel_x = 6; pixel_y = -5},/obj/item/weapon/towel/random{pixel_x = -5},/obj/item/weapon/towel/random{pixel_x = 6; pixel_y = 0},/obj/item/weapon/towel/random{pixel_x = -5; pixel_y = 5},/obj/item/weapon/towel/random{pixel_x = 6; pixel_y = 5},/obj/item/weapon/towel/random{pixel_x = -5; pixel_y = -5},/obj/item/weapon/towel/random{pixel_x = 6; pixel_y = -5},/obj/item/weapon/towel/random{pixel_x = -5},/obj/item/weapon/towel/random{pixel_x = 6; pixel_y = 0},/obj/item/weapon/towel/random{pixel_x = -5; pixel_y = 5},/obj/item/weapon/towel/random{pixel_x = 6; pixel_y = 5},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/thirddeck/vrroom) +"sVK" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/floor_decal/corner_techfloor_gray{dir = 10},/obj/structure/table/rack/shelf,/obj/item/weapon/towel/random{pixel_x = -5; pixel_y = -5},/obj/item/weapon/towel/random{pixel_x = 6; pixel_y = -5},/obj/item/weapon/towel/random{pixel_x = -5},/obj/item/weapon/towel/random{pixel_x = 6},/obj/item/weapon/towel/random{pixel_x = -5; pixel_y = 5},/obj/item/weapon/towel/random{pixel_x = 6; pixel_y = 5},/obj/item/weapon/towel/random{pixel_x = -5; pixel_y = -5},/obj/item/weapon/towel/random{pixel_x = 6; pixel_y = -5},/obj/item/weapon/towel/random{pixel_x = -5},/obj/item/weapon/towel/random{pixel_x = 6},/obj/item/weapon/towel/random{pixel_x = -5; pixel_y = 5},/obj/item/weapon/towel/random{pixel_x = 6; pixel_y = 5},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/thirddeck/vrroom) "sVR" = (/obj/effect/effect/snow,/obj/effect/floor_decal/spline/fancy{dir = 4},/turf/simulated/floor/outdoors/snow{outdoors = 0},/area/crew_quarters/cafeteria) "sVX" = (/obj/machinery/light{dir = 4},/obj/machinery/light_switch{pixel_x = 36; pixel_y = -6},/obj/effect/floor_decal/corner/orange/diagonal,/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria) "sWb" = (/obj/random/tech_supply,/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) @@ -1967,6 +2024,7 @@ "tnz" = (/turf/simulated/wall,/area/medical/first_aid_station/thirddeck) "tnF" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "tpf" = (/turf/simulated/wall,/area/crew_quarters/toilet) +"tpU" = (/obj/structure/table/reinforced,/obj/machinery/camera/network/research{c_tag = "SCI - Particle Accelerator 1"},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/stack/cable_coil/random,/obj/item/device/multitool,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "tqh" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/substation/dorms) "tsf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/machinery/meter,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) "ttw" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/effect/floor_decal/corner/orange/diagonal,/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria) @@ -1981,6 +2039,7 @@ "txq" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftportcentral) "tyt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/aft) "tzt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aft) +"tzP" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall,/area/rnd/research/particleaccelerator) "tAb" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/turf/simulated/open,/area/hallway/primary/thirddeck/aft) "tAX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aft) "tBw" = (/turf/simulated/wall/r_wall,/area/crew_quarters/toilet) @@ -1989,6 +2048,7 @@ "tCS" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/bed/roller,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/thirddeck) "tDd" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/sleep_console{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/thirddeck) "tDp" = (/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/sleeper{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/thirddeck) +"tDY" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "tEm" = (/obj/structure/table/rack/shelf/steel,/obj/random/tool,/obj/random/tool,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/technology_scanner,/turf/simulated/floor/tiled/techmaint,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) "tEC" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/closet/secure_closet/medical_wall{name = "defibrillator closet"; pixel_y = 31},/obj/item/device/defib_kit/loaded,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/thirddeck) "tFI" = (/obj/machinery/vending/loadout/uniform,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/toilet) @@ -2045,7 +2105,7 @@ "ucA" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/thirddeck) "ucG" = (/obj/machinery/door/airlock{name = "Unisex Showers"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/toilet) "udk" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "d3_starboard_dorms_inner"; locked = 1; name = "Internal Airlock Access"; req_access = list(13)},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) -"udn" = (/obj/machinery/disposal/wall{dir = 4; pixel_x = -37; pixel_y = 0},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/toilet) +"udn" = (/obj/machinery/disposal/wall{dir = 4; pixel_x = -37},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/toilet) "udT" = (/obj/machinery/newscaster{pixel_y = 30},/turf/simulated/floor/wood,/area/bridge/meeting_room) "uee" = (/turf/simulated/floor/tiled/freezer,/area/crew_quarters/toilet) "uen" = (/obj/machinery/door/firedoor/border_only,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) @@ -2082,6 +2142,7 @@ "usq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) "uss" = (/obj/random/junk,/turf/simulated/floor/carpet/bcarpet,/area/crew_quarters/sleep/vistor_room_9) "utQ" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/machinery/light{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aft) +"uul" = (/turf/simulated/floor/reinforced,/area/rnd/research/particleaccelerator) "uuq" = (/obj/structure/railing{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/open,/area/hallway/primary/thirddeck/aft) "uwA" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/corner/blue/bordercorner,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aft) "uxE" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsatmos) @@ -2146,14 +2207,15 @@ "uZX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_1) "vae" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "vag" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) +"vao" = (/obj/machinery/camera/network/research{c_tag = "SCI - Particle Accelerator 2"; dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/grey/border,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "vaD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/effect/floor_decal/corner/beige/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "vbb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "vbK" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "vcl" = (/turf/simulated/wall/r_wall,/area/hallway/primary/thirddeck/aftportcentral) "vdi" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "vdm" = (/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/structure/closet/lasertag/red,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) -"veo" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) -"vez" = (/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Aft Civ Dorms 6"},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/event/present,/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) +"veo" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/sign/christmas/lights{dir = 1},/obj/item/clothing/suit/storage/hooded/wintercoat/christmasgreen,/obj/item/clothing/suit/storage/hooded/wintercoat/christmasgreen,/obj/item/clothing/shoes/boots/winter/christmasgreen,/obj/item/clothing/shoes/boots/winter/christmasgreen,/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) +"vez" = (/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Aft Civ Dorms 6"},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/structure/sign/christmas/lights{dir = 1},/obj/item/clothing/accessory/scarf/christmas,/obj/item/clothing/accessory/scarf/christmas,/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/holidaypriest,/obj/item/clothing/suit/holidaypriest,/obj/item/clothing/suit/space/santa,/obj/item/clothing/suit/space/santa,/obj/item/clothing/head/helmet/space/santahat,/obj/item/clothing/head/helmet/space/santahat,/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) "vfw" = (/obj/machinery/lapvend,/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) "vfQ" = (/obj/machinery/gear_painter{dir = 1},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/thirddeck/aftdoorm) "vhe" = (/obj/structure/catwalk,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) @@ -2250,6 +2312,7 @@ "vYr" = (/obj/structure/catwalk,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) "vYC" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; layer = 3.3; master_tag = "aft_port_solar_airlock"; name = "interior access button"; pixel_x = -25; pixel_y = 25; req_access = list(); req_one_access = list(11,24)},/turf/simulated/floor/plating,/area/maintenance/solars/aftportsolar) "vZb" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/airless,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) +"vZm" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "wai" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_1) "wap" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1379; id_tag = "d3_port_dorms_pump"},/obj/machinery/airlock_sensor{id_tag = "d3_port_dorms_sensor"; pixel_y = 25},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) "wbl" = (/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "d3_port_dorms_inner"; locked = 1; name = "Internal Airlock Access"; req_access = list(13)},/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsport{name = "Third Deck Aft Port Maintenance"}) @@ -2296,6 +2359,7 @@ "wuJ" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_10) "wvf" = (/obj/structure/sign/directions/eva,/obj/structure/sign/directions/engineering{pixel_y = 6},/obj/structure/sign/directions/ladder_down{name = "\improper Down One Deck"; pixel_y = -6},/turf/simulated/floor/reinforced/airless,/area/thirddeck/roof) "wvs" = (/obj/random/junk,/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/sleep/vistor_room_5) +"wvJ" = (/turf/simulated/wall/r_wall,/area/rnd/research/particleaccelerator) "wvZ" = (/obj/structure/table/standard,/obj/machinery/firealarm{layer = 3.3; pixel_y = 26},/obj/random/coin,/obj/random/snack,/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_10) "wwo" = (/obj/structure/toilet,/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/toilet) "wwM" = (/obj/structure/table/standard,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/random/maintenance/engineering,/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_10) @@ -2305,6 +2369,7 @@ "wyH" = (/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_10) "wzy" = (/turf/simulated/wall,/area/crew_quarters/cafeteria) "wzA" = (/turf/simulated/wall/r_wall,/area/maintenance/thirddeck/dormsaft{name = "Third Deck Aft Maintenance"}) +"wzX" = (/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/grey/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "wAH" = (/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/sleep/vistor_room_10) "wAN" = (/obj/effect/floor_decal/corner/orange/diagonal,/obj/machinery/light{dir = 8},/obj/structure/sign/securearea{desc = "VR-Room under construction, not all of it's features have been implemented yet."; icon_state = "atmos_waste"; name = "A warning sign which reads 'UNDER CONSTRUCTION'."; pixel_x = -32},/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria) "wAW" = (/obj/structure/table/bench/wooden,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/carpet/sblucarpet,/area/crew_quarters/sleep/vistor_room_8) @@ -2320,6 +2385,7 @@ "wFm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/sleep/vistor_room_4) "wFq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_4) "wGk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/bench/standard,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftportcentral) +"wGL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/grey/bordercorner{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "wGX" = (/obj/structure/table/woodentable,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/sleep/vistor_room_4) "wHk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/sleep/vistor_room_1) "wHS" = (/obj/random/junk,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/sleep/vistor_room_7) @@ -2350,6 +2416,7 @@ "wRm" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/wall{dir = 1; pixel_y = -35},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_1) "wRo" = (/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/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "wSi" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/structure/window/basic{dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/sleep/vistor_room_6) +"wSp" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "wSC" = (/obj/structure/table/standard,/obj/machinery/computer/security/telescreen/entertainment{layer = 4; pixel_y = -32},/obj/item/clothing/head/pelt/black,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_1) "wSI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_1) "wSU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/beige/border{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) @@ -2398,7 +2465,7 @@ "xnt" = (/obj/effect/decal/cleanable/generic,/obj/item/weapon/implanter,/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) "xob" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/sleep/vistor_room_7) "xon" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/corner/beige/border{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) -"xoK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/disposal/wall{dir = 8; pixel_x = 35; pixel_y = 0},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_6) +"xoK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/disposal/wall{dir = 8; pixel_x = 35},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/vistor_room_6) "xpa" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/camera/network/civilian{c_tag = "CIV - Library Office"},/turf/simulated/floor/plating,/area/maintenance/substation/dorms) "xpl" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/sleep/vistor_room_10) "xpu" = (/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) @@ -2437,6 +2504,7 @@ "xDN" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/beige/border{dir = 4},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/event/present,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "xEs" = (/obj/structure/sink{pixel_y = 16},/obj/structure/mirror{pixel_y = 32},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/sleep/vistor_room_11) "xEB" = (/obj/structure/railing,/obj/effect/floor_decal/spline/plain,/turf/simulated/open,/area/crew_quarters/cafeteria) +"xFd" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "xFT" = (/obj/structure/curtain/open/shower,/obj/structure/window/basic,/obj/machinery/shower{pixel_y = 16},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/sleep/vistor_room_11) "xGf" = (/turf/simulated/wall/r_wall,/area/crew_quarters/sleep/vistor_room_11) "xGh" = (/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = null},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) @@ -2498,6 +2566,7 @@ "ybj" = (/turf/simulated/wall,/area/crew_quarters/sleep/vistor_room_11) "ybA" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/substation/dorms) "ybV" = (/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsatmos) +"ycm" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -22},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/grey/border,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "ycN" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/sleep/vistor_room_11) "ydi" = (/obj/effect/floor_decal/corner/orange/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/table/woodentable,/obj/item/weapon/paper{desc = ""; info = "Pain sustained in Virtual Reality will be sustained in the real world."; name = "VR Pod Disclaimer"},/turf/simulated/floor/tiled,/area/crew_quarters/cafeteria) "ydk" = (/obj/effect/decal/cleanable/greenglow,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsstarboard) @@ -2523,6 +2592,7 @@ "ykB" = (/obj/item/weapon/packageWrap,/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/thirddeck/dormsatmos) "ykL" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/corner/beige/border{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) "ykM" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/sleep/vistor_room_5) +"ylp" = (/obj/structure/particle_accelerator/power_box{anchored = 1; construction_state = 1; dir = 4},/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/rnd/research/particleaccelerator) "ylw" = (/turf/simulated/wall,/area/crew_quarters/sleep/vistor_room_8) "ylA" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/sleep/vistor_room_8) "ylL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/corner/beige/border{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/aftdoorm) @@ -2627,16 +2697,16 @@ apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcap apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcrfSapcapcapcapcapcaqjapcaqjapcapcjhgjhgjhgjhgaexafcafxjhgaexafcafxjhgaexafcafxjhgaexafcafxjhgaexafcafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgaaiaakjhgjhgjhgjhgjhgfXnfXnagdahpaieaiPajCxBrakKalAanhfXnfXnjhgjhgjhgjhgjhgaakaaijhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfaoCbFIjhgqlfaoCbFIjhgqlfaoCbFIjhgqlfaoCbFIjhgqlfaoCbFIjhgjhgjhgapcjhgapcapcapcaqjjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcepgepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapctHbapcaqjapcapcapcapcapcaqjwvfjhgjhgjhgjhgjhgjhgjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgaakjhgjhgjhgjhgfXnfXnfXnaryasbatXauRauRauRauXacYavYfXnfXnfXnjhgjhgjhgjhgaakjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcepgepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgepgaqjaqjapcapcvvIvvIvvIvvIjhgjhgjhgjhgjhgjhgjhgjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgawyfXnfXnazvaAfaAAaBeaBsaBAaBWaFnaFqaFBaFTfXnfXnaHxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcaqjtHbepgepgapcapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWiGWiGWiGWiGWiGWiGWjhgjhgjhgjhgjhgjhgjhgfXnfXnfXnaryasbatXauRaIPauRauXacYavYfXnfXnfXnjhgjhgjhgjhgjhgjhgjhgaIVaIVaIVaIVaIVaIVaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgaqjaqjaqjaqjapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgepgtHbaqjaqjaqjaqjapcaqjapcapcapcapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgjhgjhgjhgjhgjhgaJqaKjaKjaKjaKjaKmaKLaMhaMsaMZiGWjhgjhgjhgjhgjhgaNxaNHaNHaOOaOOaTyaTKaUtauRauRauRakKaVjaVvfXnfXnjhgjhgjhgjhgjhgjhgjhgjhgaIVaWgaWsaXoaYxaZQbbVbbVbbVbbVbddjhgjhgjhgjhgjhgjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapchtnapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcaqjapcaqjapcapcapcapcapcaqjapcapcapcapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgbdCjhgbdGbdGbdGaJqbgEbhybiMbjgbjzbjHaadbkmbkCiGWjhgjhgjhgjhgjhgbkJjhgjhgfXnfXnfXnblkbltbmcbmKbmcbngbnvfXnfXnfXnjhgjhgjhgjhgjhgjhgjhgjhgaIVbopaanbqBbqJbqSbvrbvAbwZbxLbddbAfbAfbAfjhgjhgjhgjhgbCUjhgjhgjhgbCUjhgjhgjhgbCUjhgjhgjhgbCUjhgjhgjhgbCUjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgapcaqjapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgbDSbDUbDUbDUbETbDUbDUbDUbETbDUbDUbDUbETbDUbDUbDUbETbDUbDUbDUbETbDUbDUbFhbFEbGGbGLbGQbHJbHUbLcbOlbOEbORbOSbPDbQVbRjiGWapcapcapcapcapcbTyapcapcfXnfXnfXnfXnbTWbUebUZbVQbWJfXnfXnfXnfXnapcapcbXWapcapcapcapcapcaIVbYzbZncaicaScbkcdccewcfpcfscfycgcchpchrcihciHcjucklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckockUjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapctHbapcaqjjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgwfsbdGclfclyclNcnTcpscpEbjgcqzbkmcqTcrbiGWiGWapcapcapcapcapcbTyapcapcapcapcfXnfXnfXnfXncrMfXnfXnfXnfXnapcapcapcapcbXWapcapcapcapcapcaIVaIVcuzcvIbqJcxobvrcxsczbcAdcBtcCecCtbAfjhgjhgjhgjhgcDqjhgjhgjhgcDqjhgjhgjhgcDqjhgjhgjhgcDqjhgjhgjhgcDqjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgaqjaqjjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgjhgjhgjhgjhgjhgaJqaKjaKjaKjiGWcEGcEHiGWiGWiGWapcapcapcapcapcapcbkJjhgjhgjhgcEXcEXcEXcEXfXncFpcFYcGKcEXcEXcEXjhgjhgjhgjhgapcapcapcapcapcapcaIVaIVaIVcGTcHhaIVbbVbbVbbVbddjhgjhgjhgjhgjhgjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWcITaMsiGWapcapcapcrGfapcapcjhgjhgbkJjhgjhgjhgcEXcJpcJIcKucMkcMPcNmcNDcJIcOxcEXjhgjhgjhgjhgjhgjhgapcapcrGfapcapcapcaIVcPNcPXaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgepgapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWcQEcQFiGWapcapcapcapcapcjhgjhgjhgbkJjhgjhgcQQcEXcRkcSScTwcVJcXwcXMcZBcZQcZQcEXjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcaIVbopdanaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcxeLxeLxeLapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgepgapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWdbmdcTiGWapcapcapcapcjhgjhgjhgjhgbkJjhgjhgjhgcEXddicZQddqcZQdducZQddqcZQdefcEXjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcaIVdetdfCaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcaqjvtfxeLapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqdgtafxjhgssqdgtafxjhgssqdgtafxjhgssqdgtafxjhgssqdgtafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWdbmdgLiGWapcapcapcjhgjhgjhgjhgjhgbkJjhgjhgjhgcEXdjKcZQcEXdjVdmbdmxcEXdmHdogcEXjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcaIVdpBdpFaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfdpObFIjhgqlfdpObFIjhgqlfdpObFIjhgqlfdpObFIjhgqlfdpObFIjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcapchtnaqjepgepgepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcaqjtHbepgepgapcapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWiGWiGWiGWiGWiGWiGWjhgjhgjhgjhgjhgjhgjhgfXnfXnfXnaryasbatXauRaIPauRauXacYavYfXnfXnfXnjhgjhgjhgjhgjhgjhgjhgaIVaIVaIVaIVaIVaIVaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgtzPwvJwvJwvJwvJtzPwvJfUIfUIfUIfVUaqjaqjaqjaqjapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgepgtHbaqjaqjaqjaqjapcaqjapcapcapcapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgssqaoFafxjhgjhgjhgjhgjhgjhgaJqaKjaKjaKjaKjaKmaKLaMhaMsaMZiGWjhgjhgjhgjhgjhgaNxaNHaNHaOOaOOaTyaTKaUtauRauRauRakKaVjaVvfXnfXnjhgjhgjhgjhgjhgjhgjhgjhgaIVaWgaWsaXoaYxaZQbbVbbVbbVbbVbddjhgjhgjhgjhgjhgjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgqlfawgbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgwvJqhWrjAtpUcBSiJWxFdpacboEvZmfUIapcapcapcaqjepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcaqjapcaqjapcapcapcapcapcaqjapcapcapcapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgbdCjhgbdGbdGbdGaJqbgEbhybiMbjgbjzbjHaadbkmbkCiGWjhgjhgjhgjhgjhgbkJjhgjhgfXnfXnfXnblkbltbmcbmKbmcbngbnvfXnfXnfXnjhgjhgjhgjhgjhgjhgjhgjhgaIVbopaanbqBbqJbqSbvrbvAbwZbxLbddbAfbAfbAfjhgjhgjhgjhgbCUjhgjhgjhgbCUjhgjhgjhgbCUjhgjhgjhgbCUjhgjhgjhgbCUjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgwvJeAzheBrqhocqisJlUlwSpwSpwSpfUIapcapcapcapcepgepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgapcaqjapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgbDSbDUbDUbDUbETbDUbDUbDUbETbDUbDUbDUbETbDUbDUbDUbETbDUbDUbDUbETbDUbDUbFhbFEbGGbGLbGQbHJbHUbLcbOlbOEbORbOSbPDbQVbRjiGWapcapcapcapcapcbTyapcapcfXnfXnfXnfXnbTWbUebUZbVQbWJfXnfXnfXnfXnapcapcbXWapcapcapcapcapcaIVbYzbZncaicaScbkcdccewcfpcfscfycgcchpchrcihciHcjucklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckockUjhgjhgjhgjhgjhgjhgwvJouYjuxbNGtDYmEYijqfUIfUIhlIfUIapcapcapcapcapcepgepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapctHbapcaqjjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgbdejhgjhgjhgwfsbdGclfclyclNcnTcpscpEbjgcqzbkmcqTcrbiGWiGWapcapcapcapcapcbTyapcapcapcapcfXnfXnfXnfXncrMfXnfXnfXnfXnapcapcapcapcbXWapcapcapcapcapcaIVaIVcuzcvIbqJcxobvrcxsczbcAdcBtcCecCtbAfjhgjhgjhgjhgcDqjhgjhgjhgcDqjhgjhgjhgcDqjhgjhgjhgcDqjhgjhgjhgcDqjhgjhgjhgjhgjhgjhgjhgjhgtzPwvJwvJwGLdSMpmmfqDmEYkBpfUIfUInjzfUIfUIfVUapcapcapcapcfyIapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgaqjaqjjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgjhgjhgjhgjhgjhgaJqaKjaKjaKjiGWcEGcEHiGWiGWiGWapcapcapcapcapcapcbkJjhgjhgjhgcEXcEXcEXcEXfXncFpcFYcGKcEXcEXcEXjhgjhgjhgjhgapcapcapcapcapcapcaIVaIVaIVcGTcHhaIVbbVbbVbbVbddjhgjhgjhgjhgjhgjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgjhgjhgjhgjhgjhgjhgwvJjqksmSquurVmiCRmaMmhKdeRcggnJiobUjjxuulekpapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWcITaMsiGWapcapcapcrGfapcapcjhgjhgbkJjhgjhgjhgcEXcJpcJIcKucMkcMPcNmcNDcJIcOxcEXjhgjhgjhgjhgjhgjhgapcapcrGfapcapcapcaIVcPNcPXaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgjhgjhgjhgjhgjhgjhgtzPwvJwvJpGtlPCkTOylpkQJrbBegbbhPuulkwmuulqlNapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgepgapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWcQEcQFiGWapcapcapcapcapcjhgjhgjhgbkJjhgjhgcQQcEXcRkcSScTwcVJcXwcXMcZBcZQcZQcEXjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcaIVbopdanaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgwvJwzXmEYakkbAHmKTrbBegbfCiuuljHguulekpapcapcapcapcxeLxeLxeLapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgepgapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgssqcEpafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWdbmdcTiGWapcapcapcapcjhgjhgjhgjhgbkJjhgjhgjhgcEXddicZQddqcZQdducZQddqcZQdefcEXjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcaIVdetdfCaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgqlfcHnbFIjhgjhgjhgjhgjhgjhgjhgjhgjhgwvJqeoycmvaolBLlBLfaIfUIfUIfUIfUIfUIfVUapcapcapcapcaqjvtfxeLapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgssqdgtafxjhgssqdgtafxjhgssqdgtafxjhgssqdgtafxjhgssqdgtafxjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWdbmdgLiGWapcapcapcjhgjhgjhgjhgjhgbkJjhgjhgjhgcEXdjKcZQcEXdjVdmbdmxcEXdmHdogcEXjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcaIVdpBdpFaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgqlfdpObFIjhgqlfdpObFIjhgqlfdpObFIjhgqlfdpObFIjhgqlfdpObFIjhgjhgjhgjhgjhgjhgjhgjhgjhgtzPwvJwvJwvJwvJtzPwvJfUIfUIfUIfVUapcapcapcapcapcapchtnaqjepgepgepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcaqjapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWdqbdrldrtapcapcapcjhgjhgjhgjhgjhgbkJjhgjhgdsudsudsudsudsucEXdsPcEXdvDdvDdvDdvDdvDjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcdwYdxldxFaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcapcapcaqjapcapcepgtHbapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcaqjapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWdyydyJdrtapcapcjhgjhgjhgjhgjhgjhgbkJjhgdsudsudzQdAfdBhdsudBtdCldCBdvDdFrdFxdHadvDdvDjhgjhgjhgjhgjhgjhgjhgjhgapcapcdwYdImdItaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcapcapcaqjapcapcapcepgepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcaqjapcapcapcapcjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgiGWdIzdJOdrtapcapcjhgjhgjhgjhgjhgjhgbkJjhgdsudKjdMfdMhdNqdOIdQhdQndRodRtdRNdSNdTvdTRdvDjhgjhgjhgjhgjhgjhgjhgjhgapcapcdwYdUIdUZaIVjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgjhgapcapcapcapcapcapcapcaqjapcapcapcapcepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc @@ -2687,7 +2757,7 @@ apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcap apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgapcapcapcapcxPktQktQocrPtQWtRNgAUtRVnlEeTltOStSOgdRasOtTotTrtUYtVetVTtWUtWXtXdtXEtYAtZhtZjuaQucructucAtnzudnrvnueetpfueItpfuiCtpfujutpfujUueeukQqaUummqaUapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgaqjaqjaqjaqjxPkumqekjxPkunkuobcHmuoZupJquNurAnVnurWuqxrTIusiwzyutQuuquuquwAuxLuyYuzHuAltCJuALuEbuETuEWtnzueeuFJqvBkllrKclbyuFPrHDrQiucGuImuksuItqbVuJgshVapcapcapcepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcaqjapcapcapcapcxPkqUsoltxPksvNsvNquNquNquNquNwzywzywzywzyxVftxmwzykqEuppuppkqEkqEuLrkqEnBdtnztnztnztnztnztnzuMGgkAuMGfNeuNbyeduNJrZOtFItpfuOouOouOoqaUuQFqaUaqjaqjaqjepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc -apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgapcapcapcapcwfRcKWdNIxdJoOkxPkuRFbSvwdVtbCsqklsVmFNwxUwxUwxUwxUklerNCrNCrNCpzvgdruSdcgtuSwrNCrNCrNCuSHwxUtpfmbQtpfdIEtpftpftpftpftpftpftpftBwtBwqaUuSUqaUapcapcapcepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc +apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcepgapcapcapcapcwfRcKWdNIxdJoOkxPkuRFbSvwdVtbCsqklsVmFNwxUwxUwxUwxUklerNCabqrNCpzvgdruSdcgtuSwabqrNCabquSHwxUtpfmbQtpfdIEtpftpftpftpftpftpftpftBwtBwqaUuSUqaUapcapcapcepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcxeLxeLepgapcapcapcapcxPkpBmuTKuTTuTYuUUuVPeXgeXgeXguWTeXgeXgaaMdQifbIfQwaajuYkaajuYkuYmuYruZKvaevagvaDvbbvaDvbbrQmvbKfLjtnFvdiqQgveovezueCvdmvfwvfQqaUqwlvherjSqaUapcapcapcepgepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcxeLvtfaqjaqjaqjaqjaqjxPkvhqupruprvhtxPkvicfUNmsevidmnqfEIfEIvikviXvjgvkNvlAvmBvlAvmBvogvoqvoPdyXvqWvsuvswvsIvtdvumvvyvvHvikvvMvvMvvNvwyvwHvxIvylvyuvyEvApqwlrjSqaUapcapcapcapcepgepgapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc apcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcxeLxeLepgapcaqjapcjhgxPktNVqlduprvAsxPkvAAbimvBOjtXvDkbimdSrwxUclBvDpwxUvDzvEPvFovGZvIbvIQvJcvJfvJXvKrvMdvMAvMBwxUvNsvPuwxUvPXvRgvRqvRwvSzvSIvSLvTuqaUvTErQKqRaqaUapcapcapcapcapcepgxeLxeLapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapcapc diff --git a/maps/southern_cross/southern_cross-5.dmm b/maps/southern_cross/southern_cross-5.dmm index bb5388178e..2751f5aac3 100644 --- a/maps/southern_cross/southern_cross-5.dmm +++ b/maps/southern_cross/southern_cross-5.dmm @@ -1,2794 +1,95831 @@ -"aa" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) -"ab" = (/obj/structure/table/steel,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/path/plains) -"ac" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"ad" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ae" = (/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"af" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"ag" = (/obj/machinery/conveyor{id = "mining_internal"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"ah" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"ai" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO - Gym"; dir = 1},/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"aj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"al" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"am" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"an" = (/obj/structure/closet/secure_closet/guncabinet,/obj/effect/floor_decal/corner/red{dir = 6},/obj/effect/floor_decal/corner/red{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"ao" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) -"ap" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/industrial/danger/corner{dir = 8},/obj/machinery/computer/cryopod/gateway{pixel_y = 30},/obj/machinery/newscaster{pixel_x = 29},/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) -"aq" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 4"; dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ar" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/powercell,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/camera/network/engineering_outpost{c_tag = "SUBS - Left Wing"; dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"as" = (/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"at" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"au" = (/obj/structure/closet/hydrant{pixel_x = -32},/obj/item/clothing/glasses/meson,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) -"av" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"aw" = (/obj/machinery/vending/sol{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ax" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ay" = (/obj/structure/closet/firecloset,/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"az" = (/obj/structure/table/bench/marble,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"aA" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 8},/obj/item/weapon/material/ashtray,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"aB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"aC" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"aD" = (/obj/effect/mist,/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/sauna) -"aE" = (/obj/structure/fence/cut/large,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"aF" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"aG" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"aI" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"aJ" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"aK" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"aL" = (/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"aM" = (/obj/structure/catwalk,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"aN" = (/obj/machinery/light_switch{dir = 8; pixel_x = 23; pixel_y = 12},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"aO" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/reinforced,/area/surface/outpost/main/exploration/containment) -"aP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"aQ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/exterior) -"aR" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"aS" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"aT" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/security) -"aV" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"aW" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) -"aX" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"aY" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"aZ" = (/obj/structure/closet/crate,/obj/item/weapon/tool/crowbar/red,/obj/item/frame/light,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"ba" = (/turf/simulated/wall/r_wall,/area/surface/outpost/civilian/emergency_storage) -"bb" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main5_airlock_control"; pixel_x = 26; pixel_y = -26; tag_exterior_door = "main5_airlock_exterior"; tag_interior_door = "main5_airlock_interior"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"bc" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges,/obj/effect/zone_divider,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"be" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_two) -"bf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"bg" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 8},/obj/item/weapon/mining_scanner,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/head/helmet/space/void/mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"bh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"bi" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"bj" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 4},/obj/machinery/conveyor_switch/oneway{id = "mining_north"; name = "mining conveyor"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/exterior) -"bk" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main8_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main8_airlock_control"; name = "External Access Button"; pixel_x = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_three) -"bl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"bm" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"bn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"bo" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"bp" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/engineering{name = "Engineering Outpost Substation"; req_access = list(11)},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/engineering/smes) -"bq" = (/obj/structure/fence/post{dir = 8},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"br" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/orange/border{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"bs" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/window/reinforced{dir = 8},/obj/machinery/computer/crew{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"bt" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"bu" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/vending/cigarette{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"bv" = (/turf/simulated/shuttle/wall/voidcraft,/area/surface/outpost/wall) -"bw" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic{dir = 1},/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"bx" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/table/glass,/obj/machinery/status_display{pixel_y = -32},/obj/item/weapon/material/ashtray/plastic,/obj/random/cigarettes,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"by" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/corner/blue/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"bz" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"bB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"bC" = (/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"bD" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"bE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/table/steel,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/item/weapon/extinguisher/mini,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"bF" = (/obj/structure/table/steel,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"bG" = (/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/left_three) -"bH" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/purple/border{dir = 9},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"bI" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"bK" = (/obj/item/device/universal_translator,/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"bL" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"bM" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"bN" = (/turf/simulated/wall,/area/surface/outpost/mining_main/storage) -"bO" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/dorms/dorm_1) -"bP" = (/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/surface/outside/plains/mountains) -"bQ" = (/obj/structure/boxingropeenter{dir = 8},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"bR" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"bS" = (/obj/structure/table/glass,/obj/item/device/paicard,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"bT" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"bU" = (/obj/structure/flora/tree/pine/xmas,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"bV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/monitoring) -"bW" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor,/obj/structure/bedsheetbin,/obj/effect/floor_decal/corner/white/border,/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"bX" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/structure/window/reinforced{dir = 8},/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"bY" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"bZ" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"ca" = (/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/monitoring) -"cb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{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/surface/outpost/security) -"cc" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"cd" = (/obj/structure/boxingrope{layer = 4.1},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"ce" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"cf" = (/obj/machinery/light,/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"cg" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"ch" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"ci" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"cj" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"ck" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/security) -"cl" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/gear_painter,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"cm" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/machinery/light,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"cn" = (/obj/structure/ore_box,/obj/effect/floor_decal/corner/brown{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"co" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/lapvend,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"cp" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"cq" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outpost/main/airlock/right_one) -"cr" = (/turf/simulated/wall,/area/surface/outpost/mining_main/emergencystorage) -"cs" = (/obj/structure/table/standard,/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/light{dir = 8},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = -4; pixel_y = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"ct" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"cu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"cv" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"cw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"cx" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/orangedouble,/turf/simulated/floor/carpet/oracarpet,/area/surface/outpost/main/dorms/dorm_1) -"cy" = (/obj/effect/step_trigger/teleporter/bridge/south_to_north,/obj/structure/railing{dir = 1},/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) -"cz" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet/turcarpet,/area/surface/outpost/main/dorms/dorm_3) -"cA" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"cB" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) -"cC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"cD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"cE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/corridor/right_lower) -"cF" = (/obj/effect/zone_divider,/turf/simulated/floor/water/deep,/area/surface/outside/ocean) -"cG" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/heavyduty{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"cI" = (/obj/machinery/button/remote/blast_door{id = "garage2"; name = "Garage Shutter Control"; pixel_x = 22},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outpost/main/airlock/right_one) -"cJ" = (/obj/effect/zone_divider,/turf/simulated/mineral/ignore_mapgen/sif,/area/surface/outside/plains/mountains) -"cK" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "civ1_airlock_control"; pixel_x = -26; pixel_y = 26; tag_exterior_door = "civ1_airlock_exterior"; tag_interior_door = "civ1_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"cL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"cM" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"cN" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"cO" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/storage) -"cP" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"cQ" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"cR" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/cable/heavyduty{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"cS" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/toolbox,/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"cT" = (/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) -"cU" = (/obj/machinery/mineral/equipment_vendor/survey,/obj/effect/floor_decal/corner/purple{dir = 5},/obj/effect/floor_decal/corner/purple{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"cW" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"cX" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/machinery/door/window/brigdoor/westleft{name = "Medical Supplies"; req_access = null; req_one_access = list(5,43)},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"cY" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Exploration Prep"; req_access = null; req_one_access = list(43,67)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/multi_tile/glass,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/exploration) -"cZ" = (/obj/structure/snowman{name = "Frosty"},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"da" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"db" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/orange/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/orange/bordercorner2{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"dc" = (/obj/structure/table/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"dd" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"de" = (/obj/machinery/vending/medical{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/machinery/status_display{pixel_x = -32},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Search and Rescue Port"},/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"df" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"dg" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/brown/border{dir = 10},/obj/structure/table/rack,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"dh" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"dj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"dk" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"dm" = (/obj/effect/floor_decal/corner/red{dir = 9},/obj/effect/floor_decal/corner/red{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"dn" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/white/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"do" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 4"; dir = 1; name = "MO Right Wing - Hallway Three"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"dp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet/purcarpet,/area/surface/outpost/main/dorms/dorm_2) -"dq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"dr" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"ds" = (/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"dt" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue,/obj/machinery/light_switch{pixel_x = -12; pixel_y = -22},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"du" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_4) -"dv" = (/obj/structure/dispenser/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"dw" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 4},/obj/item/weapon/storage/box/nifsofts_mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"dx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"dy" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/dorms/dorm_6) -"dA" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/greendouble,/turf/simulated/floor/carpet/turcarpet,/area/surface/outpost/main/dorms/dorm_3) -"dB" = (/obj/machinery/alarm{dir = 8; frequency = 1441; pixel_x = 22},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"dC" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "sauna_tint2"},/obj/structure/window/reinforced/polarized{dir = 4; id = "sauna_tint2"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"dE" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/smes/buildable{RCon_tag = "Outpost Parallel - Main 2"; charge = 2e+007; cur_coils = 4; input_attempt = 1; input_level = 750000; output_level = 100},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"dF" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"dG" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Laundry"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/laundry) -"dH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"dI" = (/obj/effect/overlay/snow/floor,/obj/structure/table/bench/steel,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"dJ" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"dK" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Showers"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/showers) -"dL" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"dM" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"dN" = (/obj/structure/table/rack,/obj/item/weapon/shovel,/obj/item/weapon/tool/wrench,/obj/item/weapon/pickaxe,/obj/item/weapon/tool/crowbar,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"dO" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"dP" = (/turf/simulated/wall/r_wall,/area/surface/outpost/civilian/smes) -"dQ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/maintenance_hatch{name = "Reactor Room Internal Access"; req_one_access = list(11)},/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/reactor_smes) -"dR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"dS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"dT" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 8},/obj/machinery/meter,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"dU" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"dV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"dW" = (/obj/structure/table/standard,/obj/machinery/light{dir = 4},/obj/item/weapon/dice/d20,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"dX" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"dY" = (/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/reactor_smes) -"dZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/storage) -"ea" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"eb" = (/obj/structure/fence/corner{dir = 10},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"ec" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"ed" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/exploration) -"ef" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 6"; dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"eg" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/regular{pixel_x = -5; pixel_y = 5},/obj/item/weapon/storage/firstaid/regular{pixel_x = -5; pixel_y = 5},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = -5},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = -5},/obj/item/weapon/storage/firstaid/regular{pixel_x = -5; pixel_y = -5},/obj/item/weapon/storage/firstaid/regular{pixel_x = -5; pixel_y = -5},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"eh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Emergency Storage"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/emergency_storage/one) -"ej" = (/obj/machinery/vending/loadout/loadout_misc,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Laundry 1"; dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"ek" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"el" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/effect/overlay/snow/floor/edges{dir = 6},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"em" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"en" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/machinery/door/firedoor/glass/hidden{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"eo" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ep" = (/obj/structure/table/bench/marble,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"eq" = (/obj/structure/table/glass,/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"er" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"es" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"et" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/machinery/computer/guestpass{pixel_y = 28},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"eu" = (/turf/simulated/wall,/area/surface/outpost/mining_main/tools) -"ev" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{id = "EngineReactor"; rad_resistance = 150},/turf/simulated/floor/reinforced,/area/surface/outpost/engineering/reactor_smes) -"ew" = (/obj/machinery/space_heater,/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"ex" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"ez" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"eB" = (/obj/machinery/conveyor{id = "mining_north"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/exterior) -"eC" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"eD" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/vending/giftvendor,/obj/structure/sign/christmas/lights{dir = 8},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"eE" = (/obj/effect/floor_decal/techfloor/orange{dir = 9},/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"eF" = (/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"eG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"eH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"eI" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"eJ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"eK" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"eL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"eM" = (/obj/effect/map_effect/portal/line/side_a,/turf/simulated/wall/solidrock,/area/surface/outside/plains/mountains) -"eN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"eO" = (/obj/effect/floor_decal/industrial/loading{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/refinery) -"eP" = (/turf/simulated/wall,/area/surface/outpost/mining_main) -"eQ" = (/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"eR" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) -"eS" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_north) -"eT" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"eU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"eV" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) -"eW" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; operating = 0; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"eX" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) -"eY" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"fa" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 10},/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"fb" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_one) -"fc" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance_hatch{name = "Outpost SMES Room"; req_one_access = list(11)},/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/reactor_smes) -"fd" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"fe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ff" = (/obj/effect/shuttle_landmark{base_area = /area/surface/outside/plains/normal; base_turf = /turf/simulated/floor/outdoors/snow/sif/planetuse; landmark_tag = "outpost_nw"; name = "Northwest Outpost Perimiter"},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/normal) -"fg" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/orange/border{dir = 10},/obj/machinery/light{dir = 8},/obj/item/weapon/storage/box/wormcan/sickly{pixel_x = -3; pixel_y = 3},/obj/item/weapon/storage/box/wormcan/sickly{pixel_x = 3},/obj/machinery/camera/network/civilian{c_tag = "CO - Fishing 2"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"fi" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"fj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"fk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"fl" = (/obj/item/weapon/banner/virgov,/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) -"fm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"fn" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"fo" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"fp" = (/turf/simulated/floor/water/shoreline,/area/surface/outside/ocean) -"fq" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Locker Room"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/showers) -"fr" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"fs" = (/obj/structure/table/glass,/obj/item/clothing/shoes/swimmingfins,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"ft" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"fu" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/monitoring) -"fv" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"fw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"fx" = (/turf/simulated/floor/tiled,/area/surface/outpost/security) -"fy" = (/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"fz" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"fA" = (/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"fB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"fC" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"fD" = (/obj/machinery/mineral/input,/obj/structure/plasticflaps/mining,/obj/machinery/conveyor{dir = 8; id = "mining_external"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"fE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/surface/outpost/mining_main/exterior) -"fF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"fG" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"fH" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock Access 3"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outside/plains/outpost) -"fI" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Airlock"; dir = 9; name = "Engineering_Outpost"; network = list("Engineering")},/obj/structure/sign/christmas/wreath{dir = 8},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"fJ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/dust{dir = 5},/obj/effect/floor_decal/industrial/warning/dust{dir = 10},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"fK" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"fL" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outpost/mining_main/exterior) -"fM" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"fN" = (/obj/effect/floor_decal/stairs{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/gym) -"fO" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/orange/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"fP" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "sec1_airlock_control"; name = "Internal Access Button"; pixel_x = 5; pixel_y = 26; req_one_access = list(1)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "sec1_airlock_interior"; locked = 1; name = "Security Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/security) -"fQ" = (/turf/simulated/wall,/area/surface/outside/path/plains) -"fS" = (/obj/machinery/mineral/processing_unit,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"fT" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main3_airlock_control"; name = "External Access Button"},/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_south) -"fU" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"fV" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"fY" = (/obj/structure/table/rack,/obj/item/weapon/shovel,/obj/item/weapon/tool/wrench,/obj/item/weapon/pickaxe,/obj/item/weapon/tool/crowbar,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/brown/border{dir = 6},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"fZ" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/outline,/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"ga" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/exploration) -"gb" = (/turf/simulated/floor/reinforced,/area/surface/outpost/main/exploration/containment) -"gc" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"gd" = (/obj/machinery/light/small{dir = 1},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"ge" = (/obj/item/clothing/suit/caution,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"gf" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"gg" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"gh" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 1},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"gj" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/search_and_rescue) -"gk" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/corridor/left_upper) -"gl" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/orange{dir = 9},/obj/effect/floor_decal/corner/orange{dir = 6},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"gm" = (/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/obj/machinery/mineral/output,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"gn" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"go" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room) -"gp" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 28},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"gq" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"gr" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"gs" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/structure/table/standard,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"gt" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"gu" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"gw" = (/obj/machinery/fusion_fuel_compressor,/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Fuel Storage"; dir = 6; name = "Engineering_Outpost"; network = list("Engineering")},/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"gx" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/path/plains) -"gy" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; frequency = 1438; id = "rust_cooling_in"; name = "Coolant Injector"; pixel_y = 1; power_rating = 30000; use_power = 1; volume_rate = 700},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"gz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"gB" = (/obj/machinery/button/windowtint{id = "sauna_tint1"; pixel_x = -5; pixel_y = 22},/obj/machinery/button/windowtint{id = "sauna_tint2"; pixel_x = 6; pixel_y = 22},/obj/effect/floor_decal/spline/fancy/wood/corner{dir = 8},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"gC" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"gD" = (/turf/simulated/floor/water/shoreline{dir = 9},/area/surface/outside/ocean) -"gE" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"gG" = (/turf/unsimulated/wall/planetary/sif,/area/surface/outside/plains/mountains) -"gH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"gI" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) -"gJ" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"gK" = (/obj/structure/sign/electricshock,/turf/simulated/wall,/area/surface/outpost/main/gen_room/smes_left) -"gL" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"gM" = (/obj/structure/table/bench/steel,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"gN" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"gO" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"gP" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/orange/border{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"gQ" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"gR" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"gS" = (/obj/structure/closet/crate/freezer/rations,/obj/effect/floor_decal/industrial/outline,/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) -"gT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"gV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"gW" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"gX" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"gZ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"ha" = (/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"hb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"hc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_6) -"hd" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/purple/border{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"he" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/table/rack,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock 1"; dir = 4},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_one) -"hf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"hg" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"hh" = (/obj/structure/closet/secure_closet/guncabinet{req_access = newlist(); req_one_access = list(43,67)},/obj/effect/floor_decal/corner/purple{dir = 5},/obj/effect/floor_decal/corner/purple{dir = 10},/obj/item/weapon/gun/energy/locked/frontier,/obj/item/weapon/gun/energy/locked/frontier,/obj/item/weapon/gun/energy/locked/frontier,/obj/item/weapon/gun/energy/locked/frontier,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"hi" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"hk" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"hl" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main7_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main7_airlock_control"; name = "External Access Button"; pixel_y = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_two) -"hm" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/fitness/punching_bag/clown,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/corner/black{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"hn" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"ho" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/structure/flora/pottedplant/xmas,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"hq" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/tools) -"hr" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "civ2_airlock_control"; name = "Internal Access Button"; pixel_x = 26; pixel_y = 5},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "civ2_airlock_interior"; locked = 1; name = "Civilian Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/civilian/sauna) -"hs" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/machinery/camera/network/civilian{c_tag = "CO - Airlock Access 2"},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"ht" = (/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"hu" = (/obj/machinery/disposal,/obj/machinery/light_construct{dir = 4},/obj/effect/floor_decal/corner/red{dir = 9},/obj/effect/floor_decal/corner/red{dir = 6},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"hv" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/path/plains) -"hw" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_three) -"hx" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/powercell,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"hy" = (/obj/structure/cable/blue,/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Shuttle Landing"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"hA" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/machinery/camera/network/security{c_tag = "SO - Airlock Access"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"hB" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic{dir = 1},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_one) -"hC" = (/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) -"hD" = (/obj/machinery/door/blast/shutters{dir = 8; id = "production1"; name = "Production Shutters"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/mining_main/refinery) -"hE" = (/obj/effect/landmark/event_spawn/dronepod_landing,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"hF" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/black,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"hG" = (/obj/effect/step_trigger/teleporter/bridge/east_to_west,/obj/structure/railing{dir = 8},/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) -"hH" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/overlay/snow/floor/edges{dir = 6},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"hI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/exploration/containment) -"hJ" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"hK" = (/turf/simulated/floor/outdoors/snow,/area/surface/outside/plains/outpost) -"hL" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"hM" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"hN" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"hO" = (/turf/simulated/floor/water/shoreline{dir = 8},/area/surface/outside/ocean) -"hP" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"hQ" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/symbol/lo{pixel_x = -32},/obj/structure/bed/chair,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"hR" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"hS" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Tool Storage"; req_one_access = list(48)},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/tools) -"hT" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 10},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"hU" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"hV" = (/obj/structure/fence/corner{dir = 4},/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"hW" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_two) -"hX" = (/obj/structure/table/rack,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/window/basic{dir = 4},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic,/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_three) -"hY" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/effect/overlay/snow/floor/edges,/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/tools) -"hZ" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"ib" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/emergency_storage/two) -"ic" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/left_three) -"id" = (/obj/effect/floor_decal/borderfloor,/obj/structure/closet/wardrobe/pjs,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"ie" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/right_lower) -"if" = (/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) -"ig" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outside/plains/outpost) -"ih" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/light{dir = 4},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/obj/item/weapon/pickaxe,/obj/item/device/gps/mining,/obj/item/clothing/head/hardhat/orange,/obj/machinery/vending/wallmed1{pixel_x = 25},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"ii" = (/obj/machinery/teleport/hub,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/teleporter) -"ij" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) -"il" = (/obj/structure/fence/corner,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/outpost) -"im" = (/obj/machinery/conveyor{dir = 4; id = "mining_internal"},/obj/machinery/mineral/output,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"in" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"io" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"ip" = (/obj/effect/shuttle_landmark{landmark_tag = "response_ship_planet"; name = "Sif Surface East"},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/normal) -"iq" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room) -"ir" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"is" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"it" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"iu" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"iw" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ix" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"iy" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"iz" = (/obj/machinery/light/small{dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"iA" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/tools) -"iC" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"iD" = (/obj/machinery/power/port_gen/pacman,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"iE" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"iF" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/grass/sif/forest/planetuse,/area/surface/outside/plains/normal) -"iG" = (/obj/effect/overlay/snow/floor,/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"iH" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/reactor_smes) -"iI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_three) -"iJ" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/mob/living/simple_mob/animal/passive/mouse/mining,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"iK" = (/obj/structure/table/woodentable,/obj/structure/flora/pottedplant/small,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"iL" = (/obj/effect/overlay/snow/floor,/obj/structure/grille,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"iM" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/left_one) -"iN" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"iO" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Central Hall"; dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"iQ" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"iR" = (/obj/structure/bed/chair{dir = 1},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"iS" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"iT" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/air_sensor{frequency = 1438; id_tag = "rustengine_sensor"; output = 63},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"iU" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "ENG_Outpost_airlock_control"; pixel_x = 26; pixel_y = 26; tag_exterior_door = "ENG_Outpost_airlock_exterior"; tag_interior_door = "ENG_Outpost_airlock_interior"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"iV" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/right_lower) -"iW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"iX" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"iY" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"iZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"ja" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"jb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"jc" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"jd" = (/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"je" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_engineering{name = "Reactor Monitoring Room"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/engineering/monitoring) -"jf" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"jg" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/security) -"ji" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/civilian/sauna) -"jj" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"jk" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"jl" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"jm" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"jn" = (/obj/item/stack/material/wood,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"jo" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"jp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"jq" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"jr" = (/obj/item/weapon/reagent_containers/glass/bucket/wood,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"js" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"jt" = (/obj/machinery/door/firedoor/glass/hidden{dir = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"ju" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "mining2_airlock_exterior"; locked = 1; name = "Mining Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "mining2_airlock_control"; name = "External Access Button"; pixel_x = -26; req_one_access = list(48,10)},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/mining_main/tools) -"jv" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 4},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"jw" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 4},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/clothing/mask/gas,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_two) -"jx" = (/obj/effect/floor_decal/industrial/outline/red,/obj/machinery/light,/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/landing_north) -"jy" = (/obj/machinery/computer/guestpass{pixel_y = 28},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "sec1_airlock_control"; pixel_x = 26; pixel_y = 26; req_one_access = list(1); tag_exterior_door = "sec1_airlock_exterior"; tag_interior_door = "sec1_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"jz" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"jA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Teleporter Hallway"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"jC" = (/obj/item/weapon/stool/padded,/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"jD" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"jE" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_one) -"jF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"jG" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"jH" = (/obj/structure/sign/warning/caution{desc = "This appears to be a sign warning people that the other side is dangerous. It also says that NanoTrasen cannot guarantee your safety beyond this point."; name = "\improper WARNING: NO ACCESS"},/turf/simulated/shuttle/wall/voidcraft,/area/surface/outpost/wall) -"jI" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"jJ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"jK" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/light_switch{pixel_x = -21; pixel_y = -11},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"jL" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"jM" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/box/donkpockets,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"jN" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_south) -"jO" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"jQ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"jR" = (/obj/machinery/vending/foodasian{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"jS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"jT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"jU" = (/obj/item/weapon/stock_parts/motor,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"jV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"jW" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"jX" = (/obj/effect/step_trigger/teleporter/bridge/north_to_south,/obj/structure/railing,/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) -"jY" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"jZ" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/overlay/snow/floor/edges{dir = 9},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"ka" = (/obj/structure/closet/athletic_mixed,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"kb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/multi_tile/metal{name = "Fauna Containment"; req_one_access = list(1,43)},/obj/machinery/door/firedoor/multi_tile/glass,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/exploration/containment) -"kc" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"kd" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"ke" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"kf" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/white/border{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"kg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"kh" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"ki" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/exterior) -"kj" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/vending/cigarette{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/structure/sign/christmas/lights{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"kk" = (/obj/effect/floor_decal/borderfloor,/obj/structure/table/standard,/obj/item/clothing/under/shorts/blue,/obj/item/clothing/gloves/boxing/blue,/obj/effect/floor_decal/corner/black{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"kl" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/bluedouble,/turf/simulated/floor/carpet/blue,/area/surface/outpost/main/dorms/dorm_5) -"km" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/light,/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_y = -30},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"kn" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 4},/obj/item/weapon/mining_scanner,/obj/machinery/status_display{pixel_y = 32},/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/head/helmet/space/void/mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"ko" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/corner/purple/border{dir = 6},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"kp" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"kq" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/box/matches,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"ks" = (/obj/structure/closet/hydrant{pixel_x = -32},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) -"ku" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Teleporter Hallway"; dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"kv" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_south) -"kw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"kx" = (/turf/simulated/wall,/area/surface/outpost/main/gen_room/smes_right) -"ky" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/path/plains) -"kz" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/industrial/danger/corner{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/teleporter) -"kA" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/light,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"kB" = (/obj/structure/table/bench/standard,/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"kC" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main7_airlock_control"; name = "Internal Access Button"; pixel_x = 6; pixel_y = -26},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main7_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_two) -"kD" = (/obj/structure/table/bench/marble,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"kE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -26},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"kF" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"kG" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"kH" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/red/border{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"kI" = (/obj/structure/table/steel,/obj/random/junk,/obj/random/tool,/obj/machinery/camera/network/engineering_outpost{c_tag = "SUBS - Main Outpost"; dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"kJ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/black{dir = 5},/obj/structure/reagent_dispensers/water_cooler/full,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"kK" = (/obj/machinery/sleep_console{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/search_and_rescue) -"kL" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/smes) -"kM" = (/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"kN" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"kO" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"kP" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_right) -"kQ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"kR" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"kS" = (/obj/machinery/conveyor{id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"kU" = (/obj/machinery/mineral/input,/obj/machinery/light/small{dir = 4},/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"kV" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"kW" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/highsecurity{name = "Teleporter Access"; req_access = newlist(); req_one_access = list(17)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/teleporter) -"kX" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/heater/sauna{dir = 8; icon_state = "heater_1"; use_power = 1},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/civilian/sauna) -"kY" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"kZ" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"la" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"lb" = (/obj/structure/toilet,/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) -"lc" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/monitoring) -"ld" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_1) -"le" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"lf" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"lg" = (/obj/machinery/power/generator{anchored = 1; dir = 8},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"lh" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/reinforced,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock 3"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_three) -"li" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/effect/floor_decal/corner/red/border,/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"lj" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/mining_main) -"lk" = (/obj/item/weapon/stool/padded,/obj/machinery/camera/network/civilian{c_tag = "CO - Pool 2"; dir = 4},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"ll" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"lm" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main8_airlock_control"; name = "Internal Access Button"; pixel_x = -26; pixel_y = -6},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main8_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_three) -"ln" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"lo" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"lp" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"lq" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/gym) -"lr" = (/obj/machinery/vending/snack{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 2"; dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ls" = (/obj/machinery/vending/loadout,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"lt" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"lu" = (/obj/item/clothing/head/hardhat/orange,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"lv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"lw" = (/obj/effect/landmark/event_spawn/dronepod_landing,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/normal) -"lx" = (/obj/structure/table/marble,/obj/item/device/starcaster_news,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"ly" = (/obj/structure/toilet{dir = 1},/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) -"lz" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"lA" = (/turf/simulated/wall/dungeon{icon = 'icons/obj/doors/shuttledoors.dmi'; icon_state = "door_locked"; name = "Wall Gate"},/area/surface/outpost/wall) -"lB" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"lC" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{rad_resistance = 150},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"lD" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet/purcarpet,/area/surface/outpost/main/dorms/dorm_2) -"lE" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"lF" = (/obj/machinery/light{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/sign/christmas/lights{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"lG" = (/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"lH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"lI" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/border_only,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"lJ" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"lK" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"lL" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"lM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"lN" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"lO" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"lP" = (/turf/simulated/wall,/area/surface/outpost/mining_main/cave) -"lQ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"lR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"lS" = (/obj/machinery/door/firedoor/glass/hidden{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"lT" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 4},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_three) -"lU" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"lV" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/camera/network/main_outpost{c_tag = "ATV Garage 2"; dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"lW" = (/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/atmos_room) -"lX" = (/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes/buildable{RCon_tag = "Outpost Parallel - Main 1"; charge = 2e+007; cur_coils = 4; input_attempt = 1; input_level = 750000; output_level = 750000},/obj/structure/cable,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"lY" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"lZ" = (/obj/effect/overlay/snow/floor,/obj/machinery/vending/cola,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"ma" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"mb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"mc" = (/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/left_two) -"md" = (/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"mf" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"mh" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"mi" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"mj" = (/obj/effect/floor_decal/corner/brown{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/light,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"mk" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"ml" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"mm" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"mn" = (/obj/structure/boxingrope{dir = 1},/obj/structure/boxingrope{dir = 4},/obj/structure/boxingrope{dir = 6},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"mo" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) -"mp" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"mq" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"mr" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"ms" = (/obj/structure/ore_box,/obj/effect/floor_decal/corner/brown/full{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"mt" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"mu" = (/obj/item/weapon/bikehorn/rubberducky,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"mv" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"mw" = (/obj/machinery/door/firedoor/glass/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"mx" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/obj/machinery/light,/obj/structure/closet/secure_closet/pilot,/obj/item/device/cataloguer/compact,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"my" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"mz" = (/obj/structure/table/standard,/obj/item/weapon/soap/syndie,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) -"mA" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) -"mB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"mC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/purcarpet,/area/surface/outpost/main/dorms/dorm_2) -"mD" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"mE" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"mF" = (/obj/machinery/vending/fishing{dir = 8},/obj/effect/floor_decal/corner/orange{dir = 6},/obj/effect/floor_decal/corner/orange{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"mG" = (/obj/machinery/light,/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"mH" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"mI" = (/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/tools) -"mJ" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/exploration/containment) -"mK" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"mL" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/table/glass,/obj/machinery/light,/obj/item/device/communicator,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"mM" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"mN" = (/obj/structure/table/rack,/obj/item/weapon/material/fishing_net,/obj/item/weapon/material/fishing_net,/obj/item/weapon/material/fishing_net,/obj/item/weapon/material/fishing_net,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"mO" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) -"mP" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"mQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"mR" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 1},/obj/effect/zone_divider,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"mS" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "civ1_airlock_exterior"; locked = 1; name = "Civilian Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "civ1_airlock_control"; name = "External Access Button"; pixel_x = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/civilian/fishing) -"mT" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"mU" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) -"mV" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"mW" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/porta_turret/industrial/teleport_defense,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/teleporter) -"mX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"mY" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/catwalk,/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/camera/emp_proof{c_tag = "SUBS - Eng Outpost"; dir = 4; name = "Engineering_Outpost"; network = list("Engineering Outpost")},/obj/machinery/light_switch{pixel_x = -11; pixel_y = 21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/smes) -"na" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"nc" = (/obj/structure/closet/emcloset,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"nd" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"ne" = (/obj/effect/zone_divider,/turf/simulated/floor/water/shoreline{dir = 8},/area/surface/outside/ocean) -"nf" = (/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Auxiliary Room"; dir = 10; name = "Engineering_Outpost"; network = list("Engineering")},/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"ng" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"nh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"ni" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"nj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"nk" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"nl" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"nm" = (/obj/structure/table/rack/shelf,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/item/weapon/gun/energy/locked/phasegun/rifle{pixel_y = 3},/obj/item/weapon/gun/energy/locked/phasegun/rifle{pixel_y = -4},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/camera/network/mining{c_tag = "PO - Mining Hallway 1"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"nn" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"no" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"np" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/tools) -"nq" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outpost/main/airlock/right_two) -"nr" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ns" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"nt" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"nu" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"nv" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"nw" = (/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"nx" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"ny" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/heavyduty{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"nz" = (/obj/effect/floor_decal/borderfloor/cee,/obj/effect/floor_decal/industrial/danger/cee,/obj/machinery/door/window/brigdoor/westleft{name = "Containment Pen"; req_access = newlist(); req_one_access = list(43,1)},/obj/machinery/door/window/brigdoor/eastright{name = "Containment Pen"; req_access = newlist(); req_one_access = list(43,1)},/obj/machinery/door/blast/regular/open{id = "pen"; name = "Containment Lockdown Blast Doors"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"nA" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{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/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"nC" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"nD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"nE" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/browndouble,/turf/simulated/floor/carpet/bcarpet,/area/surface/outpost/main/dorms/dorm_4) -"nF" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small,/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"nG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"nH" = (/obj/structure/fence{dir = 8},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"nI" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall,/area/surface/outpost/security/smes) -"nJ" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/phoronglass,/obj/fiftyspawner/rglass,/obj/fiftyspawner/rods,/obj/fiftyspawner/steel,/obj/machinery/camera/network/engineering_outpost{c_tag = "ENG - Mining Outpost Power 1"; dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"nK" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"nL" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/left_lower) -"nM" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"nN" = (/obj/machinery/power/port_gen/pacman,/obj/machinery/camera/network/engineering_outpost{c_tag = "ENG - Mining Outpost Power 2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"nO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/corner/brown{dir = 5},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"nP" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"nQ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"nR" = (/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Engineering Outpost"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/obj/structure/cable/blue,/turf/simulated/floor/plating,/area/surface/outpost/engineering/smes) -"nS" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) -"nT" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/reactor_smes) -"nU" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light/small{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_left) -"nV" = (/turf/simulated/wall/r_wall,/area/surface/outpost/civilian/fishing) -"nW" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"nX" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"nY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/monitoring) -"nZ" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"oa" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue/border,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"ob" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"oc" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/camera/network/main_outpost{c_tag = "ATV Garage 1"; dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"od" = (/obj/structure/table,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"oe" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"of" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 5},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"og" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"oh" = (/obj/machinery/hologram/holopad,/obj/machinery/vending/wallmed1{name = "Emergency NanoMed"; pixel_y = 28},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"oi" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"oj" = (/obj/structure/table/standard,/obj/item/weapon/soap/deluxe,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) -"ok" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ol" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"om" = (/obj/structure/closet/secure_closet/explorer,/obj/item/clothing/mask/gas/half,/obj/item/device/cataloguer,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"on" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"oo" = (/obj/structure/closet/secure_closet/explorer,/obj/item/weapon/pickaxe,/obj/machinery/light{dir = 1},/obj/item/device/cataloguer,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"op" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"oq" = (/obj/effect/overlay/snow/floor,/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"os" = (/obj/structure/table/standard,/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/random/soap,/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"ot" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"ou" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_three) -"ow" = (/obj/structure/flora/pottedplant/xmas,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"ox" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"oy" = (/obj/machinery/light,/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"oz" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"oA" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/heavyduty{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"oB" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) -"oC" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/orange/border{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"oD" = (/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/monitoring) -"oE" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/obj/structure/catwalk,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/path/plains) -"oF" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/machinery/computer/timeclock/premade/north,/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"oH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"oI" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "mining1_airlock_control"; name = "Internal Access Button"; pixel_x = 5; pixel_y = -26; req_one_access = list(48)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "mining1_airlock_interior"; locked = 1; name = "Mining Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/mining_main/storage) -"oJ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/blue/bordercorner2,/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"oL" = (/obj/structure/ore_box,/obj/effect/floor_decal/corner/brown/full{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"oM" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/corridor) -"oN" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"oO" = (/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"oP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"oQ" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/light,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"oR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/left_one) -"oS" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"oT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet,/area/surface/outpost/main/dorms/dorm_6) -"oU" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"oV" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"oX" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"oY" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"oZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"pa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/oracarpet,/area/surface/outpost/main/dorms/dorm_1) -"pb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"pc" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/item/weapon/storage/laundry_basket,/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"pd" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/search_and_rescue) -"pe" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"pf" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"pg" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"ph" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"pi" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 8},/obj/item/weapon/lipstick/random,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"pj" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"pk" = (/obj/effect/floor_decal/spline/plain{dir = 9},/obj/item/weapon/beach_ball,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"pl" = (/obj/effect/overlay/snow/floor,/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/monitoring) -"pm" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) -"pn" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock Access 2"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"po" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) -"pp" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"pq" = (/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"pr" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"ps" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"pt" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"pu" = (/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"pv" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"pw" = (/obj/structure/fence/end{dir = 4},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"px" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"py" = (/obj/structure/closet/crate,/obj/item/stack/material/phoron{amount = 25},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"pz" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/lapvend{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"pA" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"pB" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) -"pC" = (/turf/simulated/mineral/ignore_mapgen/sif,/area/surface/outside/plains/mountains) -"pD" = (/obj/structure/table/rack/shelf,/obj/effect/floor_decal/corner/purple{dir = 10},/obj/effect/floor_decal/corner/purple{dir = 5},/obj/item/weapon/tank/oxygen{pixel_x = -2; pixel_y = 3},/obj/item/weapon/tank/oxygen{pixel_x = 1; pixel_y = -5},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"pE" = (/obj/structure/stasis_cage,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/exploration/containment) -"pF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"pG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"pH" = (/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"pI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) -"pJ" = (/obj/effect/decal/cleanable/dirt,/obj/vehicle/train/engine/quadbike{dir = 2},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"pK" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) -"pL" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"pM" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/civilian/fishing) -"pN" = (/turf/simulated/wall,/area/surface/outpost/main/search_and_rescue) -"pO" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_one) -"pP" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"pQ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"pR" = (/obj/structure/closet,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/orange/border{dir = 1},/obj/item/clothing/gloves/duty,/obj/item/clothing/gloves/duty,/obj/item/clothing/under/serviceoveralls,/obj/item/clothing/under/serviceoveralls,/obj/item/clothing/accessory/storage/webbing,/obj/item/clothing/accessory/storage/webbing,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"pS" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/sauna) -"pT" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"pU" = (/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"pV" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust/corner,/obj/structure/cable/heavyduty{icon_state = "2-4"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"pW" = (/turf/simulated/floor/water/shoreline/corner{dir = 1},/area/surface/outside/ocean) -"pX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"pY" = (/obj/item/stack/flag/green{pixel_x = -4},/obj/item/stack/flag/red,/obj/item/stack/flag/yellow{pixel_x = 4},/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/brown/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"pZ" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"qa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"qb" = (/obj/machinery/status_display{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{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/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"qc" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"qd" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 5; tag_north = 2; tag_south = 1; tag_west = 6},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"qe" = (/obj/effect/floor_decal/borderfloor,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"qf" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 1},/obj/machinery/atmospherics/unary/heat_exchanger{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"qg" = (/turf/simulated/wall,/area/surface/outpost/main/bar) -"qh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"qi" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"qj" = (/obj/machinery/computer/timeclock/premade/east,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"qk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Reactor Room Access"; dir = 10; name = "Engineering_Outpost"; network = list("Engineering")},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/monitoring) -"ql" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/structure/closet/secure_closet/medical_wall{name = "O- Blood Locker"; pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/visible,/obj/item/weapon/reagent_containers/blood/OPlus,/obj/item/weapon/reagent_containers/blood/OPlus,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"qm" = (/obj/structure/table/bench/standard,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"qn" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"qo" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 8},/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_two) -"qp" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/obj/structure/coatrack,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"qq" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"qr" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"qs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{name = "Reactor Auxiliary Room"; req_one_access = list(11)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{d1 = 9; d2 = 10; icon_state = "9-10"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"qt" = (/obj/structure/flora/pottedplant/dead,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"qu" = (/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2,/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"qv" = (/obj/machinery/mineral/stacking_machine,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"qw" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/maintenance_hatch{name = "Outpost SMES Room"; req_one_access = list(11)},/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/reactor_smes) -"qx" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"qy" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"qz" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"qA" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"qB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"qC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"qD" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"qE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"qF" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"qG" = (/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) -"qH" = (/obj/structure/table/glass,/obj/item/weapon/inflatable_duck,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"qI" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"qJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"qK" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"qL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"qM" = (/obj/item/modular_computer/console/preset/security,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/red/border{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"qN" = (/turf/simulated/wall,/area/surface/outpost/civilian/smes) -"qO" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"qP" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Locker Room"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/showers) -"qQ" = (/obj/machinery/cryopod/robot/door/gateway,/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"qR" = (/obj/structure/table/bench/wooden,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"qT" = (/turf/simulated/wall,/area/surface/outpost/main/exploration) -"qU" = (/obj/machinery/conveyor_switch{id = "mining_external"},/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"qV" = (/turf/simulated/wall,/area/surface/outpost/main/corridor/left_lower) -"qW" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/small{dir = 4},/obj/machinery/power/thermoregulator,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"qX" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"qY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"qZ" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock Access 2"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"ra" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"rb" = (/obj/structure/table/rack/shelf/steel,/obj/item/stack/material/lead{amount = 30},/obj/fiftyspawner/plastic,/obj/fiftyspawner/plasteel,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/item/stack/material/copper{amount = 25},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"rc" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"rd" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/regular,/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/orange/border{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"re" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"rf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/steel_reinforced,/obj/machinery/microwave{pixel_x = -2; pixel_y = 5},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"rg" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main5_airlock_control"; name = "Internal Access Button"; pixel_x = 5; pixel_y = -26},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main5_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outside/plains/outpost) -"rh" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Construction Area"},/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/corridor/right_lower) -"ri" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"rj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/multi_tile/glass,/obj/machinery/door/airlock/multi_tile/glass{name = "Construction Area"},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/corridor/left_upper) -"rk" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"rl" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) -"rm" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"rn" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"ro" = (/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Civilian"; charge = 500000; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"rq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"rr" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "civ2_airlock_exterior"; locked = 1; name = "Civilian Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "civ2_airlock_control"; name = "External Access Button"; pixel_x = 26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/civilian/sauna) -"rt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"ru" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/sauna) -"rv" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"rw" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"ry" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"rz" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"rA" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"rB" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"rC" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"rD" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/engineering/monitoring) -"rE" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock Access 1"},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"rF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"rG" = (/obj/machinery/vending/fitness{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"rH" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/storage) -"rI" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/exploration) -"rK" = (/obj/structure/table/standard,/obj/item/weapon/soap/deluxe,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) -"rL" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 2; tag_north = 5; tag_west = 1; use_power = 0},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"rM" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/uxstorage) -"rN" = (/obj/structure/closet/lasertag/red,/obj/item/stack/flag/red,/obj/machinery/light,/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"rO" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"rP" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_one) -"rQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"rR" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"rS" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/tcomm) -"rT" = (/obj/structure/table/steel,/obj/random/tech_supply,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"rU" = (/obj/machinery/vending/loadout/clothing,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"rV" = (/turf/simulated/wall/solidrock,/area/surface/outpost/wall) -"rW" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/item/weapon/cell/high,/turf/simulated/floor/tiled/dark,/area/surface/outpost/mining_main) -"rX" = (/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"rY" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/exterior) -"rZ" = (/obj/structure/table/rack,/obj/item/stack/cable_coil/silver,/obj/item/stack/cable_coil/silver,/obj/item/stack/cable_coil/silver,/obj/item/stack/cable_coil/silver,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"sa" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"sb" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/machinery/camera/network/main_outpost{c_tag = "MO - Custodial Closet"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"sc" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"sd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"se" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"sf" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 8},/obj/machinery/button/remote/blast_door{id = "production1"; name = "Production Shutters"; pixel_x = -20; pixel_y = -10; req_one_access = list(48)},/turf/simulated/floor/tiled/dark,/area/surface/outpost/mining_main/refinery) -"sg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"sh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Outpost Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/corridor/left_lower) -"si" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/landing_north) -"sj" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"sk" = (/obj/structure/table/steel,/obj/random/tool,/obj/random/tool,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"sl" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"sm" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"sn" = (/obj/structure/table/rack/shelf,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/item/device/gps/mining{pixel_x = -5},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/item/device/gps/mining{pixel_x = 5},/obj/item/device/gps/mining{pixel_x = -5},/obj/item/device/gps/mining{pixel_x = 5},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"so" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"sp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"sq" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"sr" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/brown/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"ss" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"st" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"su" = (/obj/effect/floor_decal/stairs{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/sauna) -"sv" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction/yjunction{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"sw" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/search_and_rescue) -"sx" = (/obj/structure/closet/secure_closet/sar,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/item/roller/adv,/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"sy" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"sz" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 3"; dir = 4},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"sA" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 8; id = "production1"; name = "Production Shutters"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/mining_main/refinery) -"sB" = (/obj/structure/table/marble,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"sC" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/storage) -"sD" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/blast/shutters{dir = 8; id = "garage2"; name = "Garage Shutters"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/right_one) -"sE" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"sF" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"sG" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"sH" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"sI" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"sJ" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"sK" = (/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/vending/coffee{dir = 4},/obj/structure/sign/christmas/lights{dir = 8},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"sL" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) -"sM" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"sN" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_two) -"sO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/turcarpet,/area/surface/outpost/main/dorms/dorm_3) -"sP" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"sQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Central Hall"; dir = 1},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"sR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"sS" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/heavyduty,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"sT" = (/obj/structure/table/marble,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"sU" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"sV" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{dir = 4; id = "EngineReactor"; rad_resistance = 150},/turf/simulated/floor/reinforced,/area/surface/outpost/engineering/reactor_smes) -"sW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_5) -"sX" = (/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"sY" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"ta" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"tb" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Reactor Room East"; dir = 4; name = "Reactor_Room"; network = list("Engine")},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"tc" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"td" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic{dir = 1},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_one) -"te" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_left) -"tf" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 9},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"tg" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 9},/obj/structure/table/glass,/obj/machinery/recharger,/obj/item/weapon/tool/screwdriver,/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"th" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ti" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/civilian/fishing) -"tj" = (/turf/simulated/wall,/area/surface/outpost/civilian/pool) -"tk" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/machinery/camera/network/mining{c_tag = "PO - Airlock Access 1"; dir = 8},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"tl" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"tm" = (/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) -"tn" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"to" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/surface/outside/plains/normal) -"tp" = (/obj/effect/floor_decal/steeldecal/steel_decals_central6,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/landing_south) -"tq" = (/obj/structure/catwalk,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"tr" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ts" = (/obj/effect/zone_divider,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"tt" = (/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"tu" = (/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"tv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"tw" = (/obj/item/weapon/banner/nt,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/normal) -"tx" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"ty" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"tz" = (/obj/machinery/door/airlock/glass_security{name = "Master at Arms"},/obj/machinery/door/firedoor/glass,/obj/item/tape/engineering,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{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/steel_grid,/area/surface/outpost/security/maa) -"tA" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm1"; name = "Door Lock Control"; pixel_y = -25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"tB" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"tC" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"tD" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"tE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"tF" = (/obj/structure/catwalk,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"tG" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/computer/general_air_control/supermatter_core{input_tag = "rust_cooling_in"; name = "Engine Cooling Control"; output_tag = "rust_cooling_out"; sensors = list("rustengine_sensor"="Engine Temperature")},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/reactor_smes) -"tH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/blue,/area/surface/outpost/main/dorms/dorm_5) -"tI" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"tJ" = (/obj/structure/boxingrope{dir = 8},/obj/structure/boxingrope,/obj/structure/boxingrope{dir = 9; layer = 4.1},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"tK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"tL" = (/obj/machinery/power/emitter/gyrotron/anchored{dir = 1; id = "Reactor Gyrotron"; id_tag = "Reactor Gyrotron"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"tM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/right_two) -"tN" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"tO" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"tP" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"tQ" = (/obj/structure/table/bench/wooden,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"tR" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"tS" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"tT" = (/obj/structure/plasticflaps/mining,/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"tU" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/power/hydromagnetic_trap,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"tV" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/structure/reagent_dispensers/watertank,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"tW" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"tX" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/structure/flora/pottedplant/bamboo,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"tY" = (/turf/simulated/floor/water/shoreline/corner{dir = 8},/area/surface/outside/ocean) -"tZ" = (/obj/machinery/conveyor{dir = 4; id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"ua" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/stairs{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/sauna) -"ub" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/closet/toolcloset,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"uc" = (/obj/structure/closet/secure_closet/guncabinet/phase{name = "phase weapon cabinet"; req_access = newlist(); req_one_access = list(43,67)},/obj/item/clothing/accessory/holster/hip,/obj/effect/floor_decal/corner/purple{dir = 5},/obj/effect/floor_decal/corner/purple{dir = 10},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Exploration Prep"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"ud" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/fusion_fuel_injector/mapped{dir = 8; id_tag = "Reactor Fuel Injectors"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"ue" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/landing_north) -"uf" = (/obj/structure/table/standard,/obj/machinery/light{dir = 8},/obj/item/device/starcaster_news,/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"ug" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/border_only,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"uh" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/right_three) -"ui" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/bar) -"uj" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/machinery/turretid/stun{check_records = 0; control_area = "\improper Main Outpost Teleporter"; name = "Main Outpost Teleporter turret control"; pixel_y = 24; req_access = list(19)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"uk" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/multi_tile/glass,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ul" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"um" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/machinery/button/windowtint{id = "dorm_tint5"; pixel_x = -22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"un" = (/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"up" = (/obj/machinery/light/small{brightness_color = "#DA0205"; brightness_power = 1; brightness_range = 5; dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 6},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"uq" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) -"ur" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"us" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/refinery) -"ut" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"uu" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light/small{dir = 1},/obj/machinery/camera/network/telecom{c_tag = "Tcoms - Main Outpost"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"uv" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/engineering{name = "SMES Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/security/smes) -"uw" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/security) -"ux" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"uy" = (/obj/structure/closet/secure_closet/personal,/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"uz" = (/obj/structure/bed/chair{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"uA" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"uB" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/fusion_fuel_injector/mapped{dir = 8; id_tag = "Reactor Fuel Injectors"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"uC" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"uD" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"uE" = (/turf/simulated/floor/water,/area/surface/outside/lake/romsele) -"uF" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall,/area/surface/outpost/main/gen_room) -"uG" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"uH" = (/obj/structure/snowman/borg,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"uJ" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"uK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"uL" = (/obj/effect/floor_decal/techfloor/orange{dir = 6},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"uM" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"uN" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"uO" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{id = "EngineReactor"; rad_resistance = 150},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"uP" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/obj/machinery/meter,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"uQ" = (/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/corner/brown{dir = 5},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"uR" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/spline/fancy/wood,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"uS" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/orange/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"uT" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"uU" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/junction{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_left) -"uV" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"uW" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"uX" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"uY" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"uZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"vb" = (/turf/simulated/wall,/area/surface/outpost/main/showers) -"vc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Showers"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/showers) -"vd" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"ve" = (/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) -"vf" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/right_upper) -"vg" = (/turf/simulated/wall/r_wall,/area/surface/outpost/security) -"vh" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/purple/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 4},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"vi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"vj" = (/obj/effect/engine_setup/pump_max,/obj/machinery/atmospherics/binary/pump/high_power,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"vk" = (/obj/machinery/light,/obj/effect/landmark{name = "JoinLateSifPlains"},/obj/effect/landmark/start{name = "Outsider"},/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) -"vl" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_three) -"vm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"vn" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"vo" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/storage) -"vp" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main) -"vq" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_two) -"vr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"vs" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"vt" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"vv" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/restroom) -"vw" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"vx" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main4_airlock_control"; name = "External Access Button"},/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_north) -"vy" = (/obj/effect/floor_decal/borderfloor,/obj/structure/table/standard,/obj/item/clothing/under/shorts/red,/obj/item/clothing/gloves/boxing,/obj/effect/floor_decal/corner/black{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"vz" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera/network/mining{c_tag = "PO - Mining Production Room"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"vA" = (/obj/machinery/mineral/output,/obj/machinery/conveyor{id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"vB" = (/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/mountains) -"vC" = (/obj/machinery/atmospherics/unary/heat_exchanger{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"vD" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"vE" = (/obj/structure/table/steel,/obj/structure/closet/secure_closet/medical_wall/pills{pixel_y = 32},/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -22; pixel_y = 12},/obj/random/medical/pillbottle,/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"vF" = (/obj/structure/table,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"vG" = (/obj/structure/boxingrope{dir = 1},/obj/structure/boxingrope{dir = 8},/obj/structure/boxingrope{dir = 9},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"vH" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) -"vI" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/orange/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"vJ" = (/obj/structure/toilet{dir = 1},/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) -"vK" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"vM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 1"; dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"vN" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"vO" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"vP" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust,/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"vQ" = (/obj/structure/bed/chair{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"vR" = (/obj/structure/boxingrope{dir = 1},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"vT" = (/obj/random/trash,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"vU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"vV" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"vW" = (/obj/machinery/vending/cola{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"vY" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"vZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"wa" = (/obj/machinery/light_construct,/obj/structure/table/reinforced,/obj/item/weapon/storage/box/donut/empty,/turf/simulated/floor/holofloor/tiled/dark,/area/surface/outpost/security/maa) -"wb" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/fishing) -"wc" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"wd" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"we" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"wf" = (/obj/machinery/conveyor{dir = 8; id = "mining_external"},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/mining_main/refinery) -"wg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"wh" = (/turf/simulated/wall,/area/surface/outpost/main/gym) -"wi" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"wj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"wk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"wl" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Long Range Teleporter Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) -"wm" = (/obj/machinery/vending/coffee{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"wn" = (/obj/structure/table/standard,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/random_multi/single_item/hand_tele,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"wo" = (/obj/effect/floor_decal/borderfloor/corner,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"wp" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main6_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main6_airlock_control"; name = "External Access Button"; pixel_x = 26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_one) -"wq" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"wr" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"ws" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/left_three) -"wt" = (/obj/structure/closet/athletic_mixed,/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"wu" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 8},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"wv" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"ww" = (/obj/structure/dispenser/oxygen,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"wx" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"wy" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"wz" = (/obj/item/weapon/stool/padded,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"wA" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"wC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"wD" = (/obj/structure/table/woodentable,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"wE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/corner/purple/bordercorner2,/obj/structure/table/rack,/obj/item/weapon/weldingtool,/obj/item/weapon/weldingtool,/obj/item/clothing/head/welding,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"wG" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/corridor/left_lower) -"wH" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/button/remote/blast_door{id = "garage2"; name = "Garage Shutter Control"; pixel_x = -6; pixel_y = -22},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"wI" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main2_airlock_control"; name = "Internal Access Button"; pixel_x = -26; pixel_y = -6},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main2_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/right_one) -"wJ" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"wK" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "ENG_Outpost_airlock_control"; name = "External Access Button"; pixel_y = 26; req_one_access = list(10)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "ENG_Outpost_airlock_exterior"; locked = 1; name = "Engineering Outpost External"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/engineering/monitoring) -"wL" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"wM" = (/turf/simulated/floor/plating{icon_state = "asteroidplating2"},/area/surface/outpost/mining_main/exterior) -"wN" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"wO" = (/obj/item/weapon/towel{color = "#00FFFF"; name = "cyan towel"; pixel_x = 2; pixel_y = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) -"wP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Foyeur"; dir = 10; name = "Engineering Outpost"; network = list("Engineering")},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/machinery/light_switch{pixel_x = -21; pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"wQ" = (/obj/structure/table/bench/standard,/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"wS" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"wT" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -25},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"wU" = (/obj/structure/toilet,/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) -"wV" = (/obj/structure/closet/secure_closet{name = "hunting locker"; req_one_access = list(1,43)},/obj/item/weapon/gun/energy/netgun,/obj/item/weapon/beartrap/hunting,/obj/item/weapon/material/knife/tacknife/survival,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/item/clothing/shoes/boots/jungle,/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Containment Pen"; dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"wW" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"wX" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"wY" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/reactor_smes) -"wZ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"xa" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"xb" = (/obj/machinery/vending/fishing{dir = 8},/obj/effect/floor_decal/corner/orange{dir = 6},/obj/effect/floor_decal/corner/orange{dir = 9},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"xd" = (/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"xe" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"xh" = (/turf/simulated/floor/water/shoreline{dir = 6},/area/surface/outside/ocean) -"xi" = (/turf/simulated/wall/r_wall,/area/surface/outpost/security/smes) -"xk" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "mining1_airlock_control"; name = "External Access Button"; pixel_y = -26; req_one_access = list(48)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "mining1_airlock_exterior"; locked = 1; name = "Mining Outpost External"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/mining_main/storage) -"xl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"xm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_1) -"xn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"xo" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"xp" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"xq" = (/turf/simulated/floor/wood{outdoors = 1},/area/surface/outside/path/plains) -"xr" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"xs" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"xt" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"xv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock 3"},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/left_three) -"xw" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/effect/floor_decal/corner/purple/border{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"xx" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"xy" = (/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Reactor Room South"; dir = 4; name = "Reactor_Room"; network = list("Engine")},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"xz" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"xA" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/landmark/start{name = "Explorer"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"xB" = (/obj/effect/floor_decal/industrial/loading{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/obj/machinery/mineral/input,/obj/structure/sign/warning/moving_parts{pixel_y = 32},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/refinery) -"xC" = (/obj/item/stack/material/wood,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"xD" = (/obj/machinery/mineral/input,/obj/machinery/conveyor{id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"xE" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"xF" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust{dir = 5},/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"xG" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/search_and_rescue) -"xH" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_south) -"xI" = (/obj/machinery/telecomms/relay/preset/southerncross/cave,/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"xJ" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"xK" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"xL" = (/turf/simulated/floor/water,/area/surface/outside/ocean) -"xM" = (/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/junction/yjunction,/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"xN" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) -"xO" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"xP" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) -"xQ" = (/obj/structure/fence/end,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"xR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Central Hall"},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"xS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) -"xT" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"xU" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = -5; pixel_y = 4},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = 5; pixel_y = 2},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"xV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"xW" = (/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"xX" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/fishing) -"xY" = (/obj/structure/table/glass,/obj/item/inflatable{pixel_x = 6; pixel_y = 6},/obj/item/inflatable{pixel_x = 2; pixel_y = 2},/obj/item/inflatable{pixel_x = -2; pixel_y = -3},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"xZ" = (/obj/structure/table/bench/standard,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/dark,/area/surface/outpost/security/maa) -"ya" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"yb" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"yc" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"yd" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/gateway) -"ye" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_alc,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"yg" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"yh" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"yi" = (/obj/structure/table/bench/wooden,/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"yj" = (/turf/simulated/floor/outdoors/grass/sif/forest/planetuse,/area/surface/outside/plains/normal) -"yk" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"yl" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) -"ym" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) -"yn" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/blue{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/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"yo" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/structure/dogbed,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"yp" = (/obj/structure/fence{dir = 8},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"yq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"yr" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"ys" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_two) -"yt" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 2; d2 = 9; icon_state = "2-9"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"yu" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_three) -"yv" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"yx" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 8},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_three) -"yy" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"yz" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"yA" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/rack,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock 2"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_two) -"yB" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 8; start_pressure = 4559.63},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"yC" = (/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/light_switch{pixel_x = -21; pixel_y = -21},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"yD" = (/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"yE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"yF" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/space) -"yG" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"yH" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plating{icon_state = "asteroidplating2"},/area/surface/outpost/mining_main/exterior) -"yI" = (/obj/machinery/atmospherics/pipe/tank/phoron{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"yJ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_two) -"yK" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"yL" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/dorms/dorm_5) -"yM" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"yN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"yO" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{d2 = 2; icon_state = "0-2"},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/path/plains) -"yP" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main1_airlock_control"; pixel_x = -26; pixel_y = -26; tag_exterior_door = "main1_airlock_exterior"; tag_interior_door = "main1_airlock_interior"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"yQ" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main) -"yR" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"yS" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"yT" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/normal) -"yV" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/window/basic,/obj/structure/window/basic{dir = 4},/obj/item/weapon/mining_scanner,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/head/helmet/space/void/mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"yW" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"yX" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/monitoring) -"yY" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"yZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"za" = (/turf/simulated/floor/water/shoreline{dir = 4},/area/surface/outside/ocean) -"zb" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/atmos_room) -"zc" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/obj/random/soap,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) -"zd" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/portable_atmospherics/powered/scrubber,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"ze" = (/obj/machinery/telecomms/relay/preset/southerncross/skylands,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"zf" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"zg" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/mountains) -"zh" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"zi" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/white/border{dir = 5},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"zj" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"zk" = (/obj/machinery/mineral/unloading_machine,/obj/structure/plasticflaps/mining,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/exterior) -"zl" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"zm" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/table/glass,/obj/machinery/newscaster{pixel_x = -30},/obj/item/weapon/reagent_containers/food/drinks/britcup,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"zn" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"zo" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"zp" = (/obj/structure/bed/chair,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"zq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{pixel_y = 24},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"zr" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"zs" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/structure/coatrack,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"zt" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"zu" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"zv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"zw" = (/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/normal) -"zx" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"zz" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"zB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"zC" = (/obj/effect/shuttle_landmark{base_area = /area/surface/outside/plains/normal; base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse; landmark_tag = "outpost_s"; name = "South of Outpost"},/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"zD" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "dorm_tint6"},/obj/structure/window/reinforced/polarized{dir = 8; id = "dorm_tint6"},/turf/simulated/floor/plating,/area/surface/outpost/main/dorms/dorm_6) -"zE" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/machinery/recharger,/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/structure/table/reinforced,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/item/weapon/tool/wrench,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"zF" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"zG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"zH" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"zI" = (/obj/structure/catwalk,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance_hatch{name = "Fuel Storage Room"; req_one_access = list(11)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"zJ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"zK" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_one) -"zL" = (/obj/structure/table/steel,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"zM" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "civ1_airlock_control"; name = "Internal Access Button"; pixel_x = -26; pixel_y = 5},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "civ1_airlock_interior"; locked = 1; name = "Civilian Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/civilian/fishing) -"zN" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"zO" = (/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"zP" = (/obj/structure/table/steel,/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light/small{dir = 4},/obj/item/weapon/storage/toolbox/electrical,/obj/item/clothing/shoes/galoshes,/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"zQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"zR" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "dorm_tint5"},/obj/structure/window/reinforced/polarized{dir = 8; id = "dorm_tint5"},/turf/simulated/floor/plating,/area/surface/outpost/main/dorms/dorm_5) -"zS" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/dorms/dorm_4) -"zV" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"zW" = (/obj/machinery/vending/snack{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"zX" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic{dir = 1},/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"zY" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/purpledouble,/turf/simulated/floor/carpet/purcarpet,/area/surface/outpost/main/dorms/dorm_2) -"zZ" = (/obj/structure/fence/corner{dir = 9},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"Aa" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/left_two) -"Ac" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Ad" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Ae" = (/obj/machinery/light,/obj/item/weapon/book/manual/rust_engine,/obj/structure/table/steel_reinforced,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Af" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Ag" = (/obj/structure/bed/chair{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Ah" = (/obj/structure/table/woodentable,/obj/item/weapon/deck/cards,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"Ai" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Aj" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"Ak" = (/obj/effect/map_effect/portal/line/side_a,/obj/effect/map_effect/perma_light/concentrated,/turf/simulated/floor/plating{icon_state = "asteroidplating2"},/area/surface/outpost/mining_main/exterior) -"Al" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_north) -"Am" = (/obj/effect/overlay/snow/floor,/obj/machinery/disposal,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"An" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Ao" = (/turf/simulated/floor/water,/area/surface/outside/river/faxalven) -"Ap" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges,/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Aq" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Ar" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/backup_kit{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/box/cdeathalarm_kit,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"As" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/smes) -"At" = (/turf/simulated/wall/r_wall,/area/surface/outside/plains/outpost) -"Au" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Av" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/structure/flora/pottedplant/xmas,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Aw" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/powercell,/obj/machinery/camera/network/engineering_outpost{c_tag = "SUBS - Right Wing"; dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"Ax" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 5},/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"Ay" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Az" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main6_airlock_control"; pixel_x = 26; pixel_y = 26; tag_exterior_door = "main6_airlock_exterior"; tag_interior_door = "main6_airlock_interior"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"AA" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"AB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"AC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"AD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"AE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"AF" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal,/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"AG" = (/obj/structure/table/steel,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light/small{dir = 4},/obj/structure/cable/blue,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"AH" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"AI" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"AJ" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/paleblue/border{dir = 6},/obj/item/weapon/tool/wrench,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"AK" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/extinguisher_cabinet{pixel_x = -25},/turf/simulated/floor/tiled/dark,/area/surface/outpost/mining_main/refinery) -"AL" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/path/plains) -"AM" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"AN" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/overlay/snow/floor/edges{dir = 10},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"AO" = (/obj/effect/floor_decal/borderfloor/full,/obj/effect/floor_decal/industrial/danger/full,/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/shieldwallgen{anchored = 1; req_access = list(1,43); state = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"AP" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/item/glass_jar,/obj/structure/table/reinforced,/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"AQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"AR" = (/obj/structure/table/steel,/obj/random/tool,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"AS" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"AT" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"AU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"AV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"AW" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/tcomm) -"AX" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main) -"AY" = (/obj/effect/landmark/start{name = "Search and Rescue"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"AZ" = (/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Ba" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"Bb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Bc" = (/obj/structure/catwalk,/obj/machinery/power/terminal,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"Bd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Be" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"Bf" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Bg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Bh" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) -"Bi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Bj" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Bk" = (/obj/effect/overlay/snow/floor,/obj/structure/table/bench/steel,/obj/machinery/light{dir = 1},/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"Bl" = (/turf/simulated/wall,/area/surface/outpost/main/emergency_storage/one) -"Bm" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_5) -"Bn" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"Bo" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Bp" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Bq" = (/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Br" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/stairs{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/fishing) -"Bs" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Bt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/effect/floor_decal/borderfloor/corner,/obj/item/weapon/extinguisher/mini,/obj/effect/floor_decal/corner/yellow/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Bu" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/fitness/punching_bag/clown,/obj/effect/floor_decal/corner/black{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Bv" = (/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/smes) -"Bw" = (/obj/structure/boxingrope{dir = 4},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"Bx" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"BA" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"BB" = (/obj/machinery/telecomms/relay/preset/southerncross/planet,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"BC" = (/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"BD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"BE" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/sauna) -"BF" = (/obj/effect/floor_decal/spline/fancy/wood/corner,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"BG" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/machinery/light,/obj/machinery/camera/network/main_outpost{c_tag = "MO - Landing South Airlock"; dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"BH" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/machinery/camera/network/civilian{c_tag = "CO - Airlock Access 1"},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"BI" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Landing North Airlock Access"},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"BJ" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/obj/structure/cable/blue{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/monotile,/area/surface/outpost/civilian/sauna) -"BK" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/tools) -"BL" = (/obj/structure/table/woodentable,/obj/item/toy/bouquet,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"BM" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"BN" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/ender{icon_state = "1-2"; id = "surface_cave"},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/exterior) -"BO" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) -"BP" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"BQ" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/path/plains) -"BR" = (/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/corner_steel_grid{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"BS" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"BT" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_north) -"BU" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) -"BV" = (/obj/machinery/alarm{dir = 8; frequency = 1441; pixel_x = 22},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"BW" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/newscaster{pixel_x = -30},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"BX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"BY" = (/obj/structure/table/steel,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"BZ" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Cb" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main3_airlock_exterior"; locked = 1; name = "Landing South External"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/landing_south) -"Cc" = (/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Search and Rescue Starboard"; dir = 8},/obj/structure/window/reinforced{health = 1e+006; req_access = list(5)},/obj/structure/table/rack,/obj/item/weapon/storage/belt/medical/emt,/obj/item/weapon/storage/belt/medical/emt,/obj/item/weapon/storage/belt/medical/emt,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/brigdoor/southleft{dir = 8; name = "EMT Supplies"; req_access = list(5); req_one_access = list(5,43)},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Cd" = (/obj/effect/floor_decal/steeldecal/steel_decals_central6,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/landing_north) -"Ce" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Cf" = (/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) -"Cg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"Ch" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/maintenance_hatch{name = "Reactor Room External Access"; req_one_access = list(11)},/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/monitoring) -"Ci" = (/obj/effect/map_effect/portal/line/side_a,/turf/simulated/floor/water{outdoors = 0},/area/surface/outside/plains/mountains) -"Ck" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"Cl" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/fusion_core/mapped{id_tag = "Outpost Fusion Core"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"Cm" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Cn" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/laundry) -"Co" = (/obj/effect/floor_decal/techfloor/orange,/obj/effect/landmark{name = "JoinLateGateway"},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"Cp" = (/obj/structure/toilet{dir = 8},/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"Cq" = (/obj/machinery/mech_recharger,/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) -"Cr" = (/obj/structure/closet/crate{name = "Tritium Storage"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/item/weapon/fuel_assembly/tritium,/obj/item/weapon/fuel_assembly/tritium,/obj/item/weapon/fuel_assembly/tritium,/obj/machinery/light_switch{pixel_x = -11; pixel_y = 21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"Cs" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/table/glass,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Cu" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/auxiliary_storage) -"Cv" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Cw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Cx" = (/obj/effect/floor_decal/corner/red{dir = 6},/obj/effect/floor_decal/corner/red{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"Cy" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 5"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"Cz" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"CA" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"CB" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 7; tag_north = 2; tag_south = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"CC" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"CD" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"CE" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{name = "Emergency Storage"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/civilian/emergency_storage) -"CF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"CG" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"CH" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/visible/supply,/obj/machinery/atmospherics/pipe/manifold4w/visible/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"CI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"CM" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"CN" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"CO" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) -"CP" = (/obj/structure/closet/l3closet/janitor,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/corner/purple/border{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"CQ" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust,/obj/machinery/light/small{dir = 8},/obj/structure/cable/heavyduty{icon_state = "2-4"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/storage) -"CR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"CT" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/right_one) -"CU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"CW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"CX" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"CY" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"CZ" = (/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outside/plains/outpost) -"Da" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) -"Db" = (/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Dc" = (/turf/simulated/wall,/area/surface/outpost/mining_main/exterior) -"Dd" = (/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"De" = (/obj/machinery/mineral/unloading_machine,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"Df" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Dh" = (/obj/structure/fence{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Di" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Dj" = (/obj/machinery/atmospherics/unary/cryo_cell{layer = 3.3},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"Dk" = (/obj/structure/closet,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/orange/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/orange/bordercorner2{dir = 5},/obj/item/weapon/storage/backpack/dufflebag,/obj/item/clothing/shoes/boots/winter/climbing,/obj/item/clothing/shoes/boots/winter/climbing,/obj/machinery/camera/network/civilian{c_tag = "CO - Fishing 1"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Dl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/closet/secure_closet/engineering_electrical,/obj/machinery/light{dir = 8},/obj/random/maintenance/engineering,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Dn" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_three) -"Do" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"Dp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/catwalk,/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"Dq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"Dr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Ds" = (/obj/effect/map_effect/portal/master/side_a/plains_to_caves,/turf/simulated/wall/solidrock,/area/surface/outside/plains/mountains) -"Dt" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Du" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"Dv" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_6) -"Dw" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Dx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "SMES Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gen_room/smes_left) -"Dz" = (/obj/structure/closet/jcloset,/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"DA" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/door/firedoor/glass/hidden,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"DB" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"DC" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"DD" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/vending/loadout/gadget,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"DE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"DG" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 1},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"DH" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"DI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"DJ" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"DK" = (/obj/machinery/conveyor{id = "mining_internal"},/obj/machinery/mineral/output,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"DL" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/random/maintenance/engineering,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"DM" = (/obj/structure/closet/lasertag/blue,/obj/item/stack/flag/blue,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"DN" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/bottle/wine,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"DO" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"DP" = (/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) -"DQ" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/normal) -"DT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"DU" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"DW" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost SMES Room"; dir = 10; name = "Engineering_Outpost"; network = list("Engineering")},/obj/machinery/light_switch{pixel_x = -21; pixel_y = -11},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/reactor_smes) -"DX" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"DY" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) -"DZ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Ea" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atm{pixel_y = 30},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Eb" = (/obj/structure/fence,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"Ec" = (/obj/effect/step_trigger/teleporter/bridge/north_to_south,/obj/structure/railing,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"Ed" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/civilian/fishing) -"Ee" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/reinforced,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_three) -"Ef" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Eg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/surface/outpost/main/dorms/dorm_6) -"Eh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Ei" = (/obj/structure/table/steel,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/multitool,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) -"Ej" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/auxiliary_storage) -"Ek" = (/turf/simulated/floor/holofloor/tiled/dark,/area/surface/outpost/security/maa) -"El" = (/obj/effect/floor_decal/corner/brown{dir = 9},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"Em" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"En" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/orange/bordercorner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Eo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"Ep" = (/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/left_one) -"Eq" = (/obj/effect/overlay/snow/floor,/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_south) -"Er" = (/obj/machinery/telecomms/relay/preset/southerncross/wild,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"Es" = (/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Et" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/reddouble,/turf/simulated/floor/carpet,/area/surface/outpost/main/dorms/dorm_6) -"Eu" = (/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/exterior) -"Ev" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/purple/border{dir = 6},/obj/machinery/washing_machine,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Ew" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Ex" = (/obj/effect/landmark{name = "bluespacerift"},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/path/plains) -"Ey" = (/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"Ez" = (/obj/structure/bed/chair,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"EA" = (/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"EB" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"EC" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ED" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"EE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"EF" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"EG" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/construction_area) -"EH" = (/obj/structure/table/woodentable,/obj/item/weapon/material/kitchen/utensil/fork/plastic{pixel_x = 7},/obj/item/weapon/reagent_containers/food/snacks/pastatomato,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"EI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"EJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/maintenance_hatch{name = "Reactor Room Internal Access"; req_one_access = list(11)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/reactor_smes) -"EK" = (/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"EL" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"EM" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"EN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"EO" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"EP" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/effect/overlay/snow/floor,/obj/effect/zone_divider,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"EQ" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/corridor/right_lower) -"ER" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"ES" = (/obj/machinery/teleport/station,/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/teleporter) -"ET" = (/obj/machinery/light{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"EU" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"EV" = (/obj/effect/overlay/snow/floor,/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/sauna) -"EW" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"EX" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"EY" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/structure/table/standard,/obj/random/action_figure,/obj/item/weapon/coin/silver,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"EZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Fa" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Fb" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"Fc" = (/obj/machinery/conveyor{dir = 4; id = "mining_north"},/obj/machinery/mineral/input,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/mining_main/exterior) -"Fd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Fe" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"Ff" = (/obj/machinery/cablelayer,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Fg" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"Fi" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Fj" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Fk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"Fl" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/gym) -"Fm" = (/obj/structure/closet/secure_closet{name = "hunting locker"; req_one_access = list(1,43)},/obj/item/weapon/gun/energy/netgun,/obj/item/weapon/beartrap/hunting,/obj/item/weapon/material/knife/tacknife/survival,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/item/clothing/shoes/boots/jungle,/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"Fn" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"Fo" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Fp" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Fq" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm6"; name = "Door Lock Control"; pixel_y = 25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"Fr" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_one) -"Fs" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/h_chocolate,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"Ft" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_one) -"Fu" = (/obj/structure/closet/crate,/obj/effect/floor_decal/corner/brown/full,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"Fv" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Fy" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Laundry 2"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Fz" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"FA" = (/obj/item/weapon/banner/nt,/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) -"FB" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"FC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"FD" = (/obj/effect/step_trigger/teleporter/bridge/north_to_south,/obj/structure/railing,/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) -"FE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"FF" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main7_airlock_control"; pixel_x = 26; pixel_y = -26; tag_exterior_door = "main7_airlock_exterior"; tag_interior_door = "main7_airlock_interior"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"FH" = (/obj/machinery/light{dir = 4},/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) -"FI" = (/obj/structure/table/reinforced,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/item/device/gps/security,/turf/simulated/floor/holofloor/tiled/dark,/area/surface/outpost/security/maa) -"FJ" = (/obj/structure/toilet{dir = 1},/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) -"FK" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/refinery) -"FL" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_3) -"FM" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"FN" = (/obj/structure/closet/firecloset,/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"FO" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/symbol/em{pixel_x = 32},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"FP" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/brown/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"FQ" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/door/firedoor/glass/hidden,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"FR" = (/turf/simulated/wall/r_wall,/area/surface/outpost/civilian/pool) -"FS" = (/obj/structure/table/steel,/obj/random/junk,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"FU" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_north) -"FV" = (/obj/structure/boxingrope{dir = 8},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"FW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"FX" = (/obj/item/weapon/banner/nt,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"FY" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_right) -"FZ" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/structure/disposalpipe/segment,/obj/random/powercell,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Ga" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/refinery) -"Gb" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"Gc" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Gd" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_one) -"Ge" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Gf" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "civ2_airlock_control"; pixel_x = 26; pixel_y = 26; tag_exterior_door = "civ2_airlock_exterior"; tag_interior_door = "civ2_airlock_interior"},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"Gg" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Gh" = (/obj/random/trash,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"Gi" = (/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Left Wing"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"Gj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"Gk" = (/obj/structure/snowman/spider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"Gl" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/powercell,/obj/machinery/camera/network/engineering_outpost{c_tag = "SUBS - Security Checkpoint"},/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"Gm" = (/obj/structure/undies_wardrobe,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Gn" = (/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Gp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"Gq" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_north) -"Gr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Gs" = (/obj/effect/zone_divider,/turf/simulated/floor/water,/area/surface/outside/ocean) -"Gt" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"Gu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Gv" = (/turf/simulated/floor/water/shoreline/corner{dir = 4},/area/surface/outside/ocean) -"Gw" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/status_display{pixel_y = 32},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Gx" = (/obj/structure/table/steel,/obj/machinery/light/small{dir = 4},/obj/item/weapon/storage/toolbox/electrical,/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"Gy" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Gz" = (/obj/structure/ore_box,/obj/effect/floor_decal/corner/brown{dir = 9},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"GA" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 10},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"GB" = (/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"GC" = (/obj/machinery/mech_recharger,/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) -"GD" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/white/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"GE" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/path/plains) -"GF" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"GG" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"GH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"GI" = (/obj/machinery/power/terminal{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/reactor_smes) -"GJ" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/right_two) -"GK" = (/obj/effect/floor_decal/stairs{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/fishing) -"GL" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_access_hatch"; locked = 1; name = "Reactor Core"; rad_resistance = 150; req_access = list(11)},/turf/simulated/floor/reinforced,/area/surface/outpost/engineering/reactor_smes) -"GM" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"GN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"GO" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/closet/secure_closet/engineering_welding,/obj/random/maintenance/engineering,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"GP" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/tools) -"GQ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"GR" = (/obj/effect/landmark/event_spawn/dronepod_landing,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/normal) -"GS" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"GT" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Mining Storage"; req_one_access = list(48)},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/uxstorage) -"GU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"GV" = (/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"GW" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"GX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"GY" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/item/device/flashlight/lamp,/obj/effect/floor_decal/corner/red/border{dir = 10},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_y = -30},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"GZ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"Ha" = (/obj/effect/step_trigger/teleporter/bridge/east_to_west,/obj/structure/railing{dir = 8},/turf/simulated/floor/water,/area/surface/outside/river/faxalven) -"Hb" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/security) -"Hc" = (/obj/machinery/pipedispenser/disposal,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Hd" = (/obj/structure/closet/wardrobe/black,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"He" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Hf" = (/obj/structure/closet/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/suit/radiation,/obj/item/clothing/suit/radiation,/obj/item/device/geiger,/obj/item/device/geiger,/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) -"Hg" = (/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/right_two) -"Hh" = (/turf/simulated/wall,/area/surface/outpost/main/gen_room/smes_left) -"Hi" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Hj" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"Hk" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Hl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Hm" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Hn" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"Ho" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/tools) -"Hp" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"Hq" = (/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Hr" = (/obj/effect/overlay/snow/floor,/obj/structure/symbol/gu{pixel_x = -32},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Hs" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"Ht" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Hu" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/fishing) -"Hv" = (/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Hw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"Hx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_2) -"Hy" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"Hz" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/gen_room/smes_right) -"HA" = (/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"HB" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/teleporter) -"HC" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"HD" = (/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/right_one) -"HE" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_one) -"HF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 8},/obj/structure/cable/yellow{d1 = 6; d2 = 8; icon_state = "6-8"},/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"HG" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/white/border{dir = 10},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"HH" = (/obj/structure/curtain/open/shower,/obj/machinery/shower{dir = 8; pixel_x = -5},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"HI" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"HK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"HL" = (/obj/machinery/shower,/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) -"HM" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/door/firedoor/glass/hidden{dir = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"HN" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 2"; dir = 4; name = "security camera"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"HO" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"HP" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_two) -"HQ" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"HR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"HS" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/overlay/snow/floor/edges{dir = 8},/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"HU" = (/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"HV" = (/obj/effect/zone_divider,/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) -"HW" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"HX" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"HY" = (/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) -"HZ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/heavyduty{icon_state = "2-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Ib" = (/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/storage) -"Ic" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Id" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/overlay/snow/floor/edges{dir = 9},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Ie" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/civilian/fishing) -"If" = (/obj/machinery/door/airlock{id_tag = "dorm1"; name = "Dorm 1"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_1) -"Ig" = (/turf/simulated/floor/water/deep,/area/surface/outside/ocean) -"Ih" = (/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Ii" = (/obj/machinery/mech_recharger,/turf/simulated/floor/tiled/dark,/area/surface/outpost/mining_main) -"Ij" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"Ik" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/machinery/door/firedoor/glass/hidden{dir = 2},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Il" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Im" = (/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Mining"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"In" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Io" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/space) -"Ip" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/exploration) -"Iq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Ir" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_south) -"Is" = (/obj/item/weapon/towel{color = "#90ee90"; name = "green towel"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) -"It" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"Iu" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm2"; name = "Door Lock Control"; pixel_y = 25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"Iv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"Iw" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Ix" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/exploration/containment) -"Iy" = (/obj/machinery/mineral/processing_unit_console,/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/refinery) -"Iz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"IA" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"IC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"ID" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main4_airlock_exterior"; locked = 1; name = "Landing North External"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/landing_north) -"IE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/tools) -"IF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_3) -"IG" = (/obj/effect/overmap/visitable/planet/Sif,/turf/simulated/mineral/sif,/area/surface/outside/plains/mountains) -"IH" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"II" = (/obj/machinery/sleeper{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/search_and_rescue) -"IJ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"IK" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 8},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/clothing/mask/gas,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_two) -"IM" = (/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/spline/fancy/wood,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"IN" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Laundry"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/multi_tile/glass,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/laundry) -"IO" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"IP" = (/obj/structure/closet/secure_closet/guncabinet/phase{req_one_access = null},/obj/item/clothing/accessory/holster/hip,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/red/border{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"IQ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/left_lower) -"IR" = (/obj/structure/closet/secure_closet/explorer,/obj/item/clothing/accessory/holster/hip,/obj/item/device/cataloguer,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"IS" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"IT" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"IU" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"IV" = (/obj/effect/floor_decal/steeldecal/steel_decals_central4,/obj/machinery/conveyor_switch/oneway{id = "mining_internal"; name = "mining conveyor"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"IW" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"IX" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main2_airlock_control"; pixel_x = -26; pixel_y = -26; tag_exterior_door = "main2_airlock_exterior"; tag_interior_door = "main2_airlock_interior"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"IY" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 5},/obj/machinery/button/remote/blast_door{id = "production1"; name = "Production Shutters"; pixel_x = 22; req_one_access = list(48)},/obj/item/weapon/hand_labeler,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"IZ" = (/obj/effect/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Ja" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 9},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Jb" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera/network/engineering_outpost{c_tag = "SUBS - Civilian"; dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"Jc" = (/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/paleblue/border{dir = 10},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Jd" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/white/border{dir = 10},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Teleporter"; dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"Je" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_three) -"Jf" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/hologram/holopad,/obj/machinery/light/spot,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Jg" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_one) -"Jh" = (/obj/machinery/door/airlock{id_tag = "dorm2"; name = "Dorm 2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_2) -"Ji" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Jj" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"Jk" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "SMES Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/civilian/smes) -"Jl" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Jm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Jn" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"Jo" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main3_airlock_interior"; locked = 1; name = "Landing South Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/landing_south) -"Jq" = (/turf/simulated/wall,/area/surface/outpost/main/corridor) -"Js" = (/obj/structure/table/steel,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/recharger,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Jt" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Ju" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Jv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Jw" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/security) -"Jx" = (/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/sauna) -"Jy" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "mining2_airlock_control"; pixel_x = -26; pixel_y = -26; req_one_access = list(48,10); tag_exterior_door = "mining2_airlock_exterior"; tag_interior_door = "mining2_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"Jz" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"JA" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"JB" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Teleporter"; dir = 5},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"JC" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"JD" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"JE" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) -"JF" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"JG" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic{dir = 1},/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"JH" = (/obj/structure/sign/warning/caution{desc = "This appears to be a sign warning people that the other side is dangerous. It also says that NanoTrasen cannot guarantee your safety beyond this point."; name = "\improper WARNING: NO ACCESS"},/turf/simulated/shuttle/wall/voidcraft/hard_corner,/area/surface/outpost/wall) -"JI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"JJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"JK" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/reactor_smes) -"JL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"JM" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"JN" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"JO" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/corner/brown{dir = 8},/obj/machinery/camera/network/mining{c_tag = "PO - Mining Storage"; dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"JP" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_two) -"JQ" = (/obj/effect/step_trigger/teleporter/bridge/south_to_north,/obj/structure/railing{dir = 1},/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) -"JR" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/overlay/snow/floor/edges{dir = 8},/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"JS" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"JT" = (/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"JU" = (/obj/structure/table/standard,/obj/item/weapon/soap,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) -"JV" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 8},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"JW" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 10},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_right) -"JX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/bcarpet,/area/surface/outpost/main/dorms/dorm_4) -"JY" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"JZ" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges,/obj/effect/zone_divider,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Ka" = (/turf/simulated/floor/water/shoreline{dir = 10},/area/surface/outside/ocean) -"Kb" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/laundry) -"Kd" = (/turf/simulated/floor/water/shoreline/corner,/area/surface/outside/ocean) -"Ke" = (/turf/simulated/wall/r_wall,/area/surface/outpost/civilian/sauna) -"Kf" = (/obj/structure/table/steel,/obj/random/junk,/obj/random/maintenance/engineering,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"Kg" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Kh" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = -4; pixel_y = 6},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = 5; pixel_y = 6},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/civilian/sauna) -"Ki" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"Kj" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Kk" = (/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Kl" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Km" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Kn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"Ko" = (/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Kp" = (/obj/effect/landmark/start{name = "Explorer"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Kq" = (/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Kr" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Reactor Room External Access"; req_one_access = list(11)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/atmos_room) -"Ks" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Kt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/landing_south) -"Ku" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/gateway) -"Kv" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"Kw" = (/obj/effect/step_trigger/teleporter/bridge/west_to_east,/obj/structure/railing{dir = 4},/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) -"Kx" = (/obj/structure/table/standard,/obj/machinery/recharger,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Ky" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/gateway) -"Kz" = (/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/wreath,/obj/structure/flora/pottedplant/xmas,/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"KA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"KB" = (/turf/simulated/shuttle/wall/voidcraft/hard_corner,/area/surface/outpost/wall) -"KC" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"KD" = (/obj/structure/table/bench/standard,/obj/item/device/radio/intercom/department/security{dir = 1; pixel_y = 21},/turf/simulated/floor/tiled/dark,/area/surface/outpost/security/maa) -"KE" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/effect/overlay/snow/floor,/obj/effect/zone_divider,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"KF" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"KG" = (/obj/structure/table/rack/shelf,/turf/simulated/floor/holofloor/tiled/dark,/area/surface/outpost/security/maa) -"KH" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"KI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/oracarpet,/area/surface/outpost/main/dorms/dorm_1) -"KK" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"KL" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"KM" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"KN" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/multi_tile/glass,/obj/machinery/door/airlock/multi_tile/glass{name = "Production Area"; req_one_access = list(48)},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main) -"KO" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"KP" = (/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/atmos_room) -"KQ" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"KR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"KS" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"KT" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"KU" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{name = "Emergency Storage"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/mining_main/emergencystorage) -"KV" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/button/windowtint{id = "dorm_tint6"; pixel_x = -22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"KW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/power/terminal,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"KX" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"KY" = (/obj/machinery/iv_drip,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"KZ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"La" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"Lb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Lc" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"Ld" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/engine{dir = 1; external_pressure_bound = 100; external_pressure_bound_default = 0; frequency = 1438; icon_state = "map_vent_in"; id_tag = "rust_cooling_out"; initialize_directions = 1; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"Le" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/orange/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/orange/bordercorner2{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Lf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"Lg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Lh" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"Li" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"Lj" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Lk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Ll" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/tools) -"Lm" = (/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) -"Ln" = (/obj/machinery/status_display{pixel_y = 32},/obj/structure/boxingrope{dir = 1},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"Lo" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Lp" = (/obj/structure/table/steel,/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light/small{dir = 1},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"Lq" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/radproof{dir = 4; rad_resistance = 150},/turf/simulated/floor/plating,/area/surface/outpost/engineering/monitoring) -"Lr" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"Ls" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Lt" = (/obj/structure/closet/crate,/obj/effect/floor_decal/corner/brown{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"Lu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/engineering{name = "Atmos Room"; req_one_access = list(12)},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/mining_main/tools) -"Lv" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet/bcarpet,/area/surface/outpost/main/dorms/dorm_4) -"Lw" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/monitoring) -"Lx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Ly" = (/obj/structure/fence/end{dir = 8},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"Lz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"LA" = (/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"LC" = (/obj/structure/sign/electricshock,/turf/simulated/wall,/area/surface/outpost/main/gen_room/smes_right) -"LD" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/rack,/obj/machinery/light{dir = 4},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"LE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/right_one) -"LF" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "sauna_tint1"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"LG" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"LH" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"LI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"LJ" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"LK" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main6_airlock_control"; name = "Internal Access Button"; pixel_x = 26; pixel_y = 5},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main6_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_one) -"LL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"LM" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"LN" = (/turf/simulated/wall,/area/surface/outpost/civilian/emergency_storage) -"LO" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/vending/fitness{dir = 1},/obj/machinery/light,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"LP" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/obj/structure/flora/pottedplant/flower,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"LQ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"LR" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"LS" = (/obj/effect/step_trigger/teleporter/bridge/west_to_east,/obj/structure/railing{dir = 4},/turf/simulated/floor/water,/area/surface/outside/river/faxalven) -"LT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"LU" = (/obj/structure/cable/blue,/obj/machinery/power/apc{dir = 8; name = "west bump"; operating = 0; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"LV" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Long Range Teleporter Access"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) -"LW" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"LX" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"LY" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"LZ" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Ma" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/corridor/right_upper) -"Mb" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"Mc" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Me" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/toxin{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/toxin{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/fire{pixel_x = -5; pixel_y = 5},/obj/item/weapon/storage/firstaid/fire{pixel_x = -5; pixel_y = 5},/obj/item/weapon/storage/firstaid/o2{pixel_x = 5; pixel_y = -5},/obj/item/weapon/storage/firstaid/o2{pixel_x = 5; pixel_y = -5},/obj/item/weapon/storage/firstaid/adv{pixel_x = -5; pixel_y = -5},/obj/item/weapon/storage/firstaid/adv{pixel_x = -5; pixel_y = -5},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Mf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Mg" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/right_lower) -"Mh" = (/turf/simulated/floor/water/shoreline{dir = 5},/area/surface/outside/ocean) -"Mi" = (/obj/structure/table/steel,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Mj" = (/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"Mk" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Ml" = (/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Mm" = (/obj/structure/table/bench/standard,/obj/item/device/radio/intercom/department/medbay{pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"Mn" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Mo" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Mp" = (/obj/machinery/status_display{pixel_y = 32},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Mq" = (/obj/item/clothing/under/bathrobe,/obj/item/clothing/under/bathrobe,/obj/item/clothing/under/bathrobe,/obj/structure/closet/cabinet,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"Mr" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"Ms" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Mt" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"Mu" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light_construct{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"Mv" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Mx" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/engineering{name = "SMES Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gen_room/smes_right) -"My" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Gym"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/gym) -"Mz" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"MA" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"MB" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/machinery/door/window/brigdoor/westleft{name = "Medical Supplies"; req_access = null; req_one_access = list(5,43)},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"MC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"MD" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/effect/overlay/snow/floor,/obj/effect/zone_divider,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"ME" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/laundry) -"MF" = (/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"MG" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) -"MH" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"MI" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair,/obj/structure/sign/christmas/lights{dir = 8},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"MJ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"MK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"ML" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/refinery) -"MM" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/corner/orange{dir = 9},/obj/effect/floor_decal/corner/orange{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"MN" = (/turf/simulated/wall,/area/surface/outpost/main/laundry) -"MO" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"MP" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"MQ" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"MR" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"MT" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{dir = 4; rad_resistance = 150},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/monitoring) -"MU" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/structure/table/standard,/obj/machinery/photocopier/faxmachine{department = "Outpost Laundry"},/obj/effect/floor_decal/corner/white/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"MV" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/pool) -"MW" = (/obj/structure/table/steel,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = -22},/obj/structure/cable/blue,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"MX" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"MY" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"MZ" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light_construct{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Na" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/outpost) -"Nb" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"Nc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/highsecurity{name = "Telecommunication Hub"; req_one_access = list(61)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/tcomm) -"Nd" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Ne" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"Nf" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Nh" = (/obj/machinery/camera/network/civilian{c_tag = "CO - Sauna"; dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"Ni" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_one) -"Nj" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/disposalpipe/segment,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"Nk" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 3"; dir = 4},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Nm" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Nn" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/civilian/fishing) -"No" = (/obj/effect/floor_decal/corner/purple{dir = 10},/obj/effect/floor_decal/corner/purple{dir = 5},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/industrial/outline,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"Np" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Nq" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Nr" = (/obj/machinery/alarm{dir = 8; frequency = 1441; pixel_x = 22},/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Ns" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Nt" = (/obj/machinery/light{dir = 4},/obj/machinery/alarm{dir = 8; frequency = 1441; pixel_x = 22},/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Nu" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm5"; name = "Door Lock Control"; pixel_y = -25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"Nv" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Nw" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_three) -"Nx" = (/obj/structure/table/steel,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Ny" = (/obj/effect/overlay/snow/floor,/obj/machinery/vending/snack,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"Nz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_4) -"NA" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/machinery/door/firedoor/glass/hidden{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"NB" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_two) -"NC" = (/obj/effect/overlay/snow/floor,/obj/structure/ore_box,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"NE" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm4"; name = "Door Lock Control"; pixel_y = 25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"NF" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"NG" = (/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/right_three) -"NH" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"NI" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"NJ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"NK" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/junction{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"NL" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/powercell,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"NM" = (/obj/structure/fence/end{dir = 1},/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"NN" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust{dir = 6},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/refinery) -"NO" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/janitor) -"NP" = (/obj/structure/closet/emcloset,/obj/machinery/light,/obj/structure/sign/christmas/lights{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"NQ" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"NR" = (/obj/effect/map_effect/portal/line/side_a,/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/exterior) -"NU" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"NV" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_north) -"NW" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"NX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"NY" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/smes) -"NZ" = (/obj/effect/floor_decal/industrial/warning,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/light/small{dir = 1},/obj/structure/cable/yellow{d1 = 5; d2 = 6; icon_state = "5-6"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Oa" = (/obj/structure/fence,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"Ob" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Oc" = (/obj/structure/table/bench/steel,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/path/plains) -"Od" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/rack,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock 2"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_two) -"Oe" = (/obj/machinery/door/airlock{id_tag = "dorm3"; name = "Dorm 3"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_3) -"Of" = (/turf/simulated/wall/r_wall,/area/surface/outpost/security/maa) -"Oh" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/structure/closet,/obj/effect/floor_decal/corner/white/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Oi" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Oj" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"Ok" = (/obj/effect/overlay/snow/floor,/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_one) -"Ol" = (/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Om" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"On" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Oo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Op" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"Oq" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Os" = (/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) -"Ot" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Ou" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Ov" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Ow" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"Ox" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "sec1_airlock_exterior"; locked = 1; name = "Security Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "sec1_airlock_control"; name = "External Access Button"; pixel_y = 26; req_one_access = list(1)},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/security) -"Oy" = (/obj/structure/dispenser/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"OA" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_south) -"OB" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/blast/shutters{dir = 8; id = "garage1"; name = "Garage Shutters"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/right_two) -"OC" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"OD" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock Access 1"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"OE" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"OF" = (/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"OH" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main1_airlock_control"; name = "Internal Access Button"; pixel_x = -6; pixel_y = -26},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main1_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/right_two) -"OI" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main4_airlock_control"; pixel_x = -5; tag_exterior_door = "main4_airlock_exterior"; tag_interior_door = "main4_airlock_interior"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main4_airlock_control"; name = "Internal Access Button"; pixel_x = 5},/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_north) -"OJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"OK" = (/obj/effect/map_effect/portal/master/side_a/plains_to_caves/river,/turf/simulated/wall/solidrock,/area/surface/outside/plains/mountains) -"OL" = (/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"OM" = (/obj/structure/fitness/punchingbag,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"ON" = (/obj/structure/table/standard,/obj/item/stack/material/steel{amount = 10},/obj/item/weapon/storage/toolbox/mechanical,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"OO" = (/obj/item/weapon/towel{color = "#FF8C00"; name = "orange towel"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) -"OP" = (/obj/structure/showcase/sign{desc = "This appears to be a sign warning people that it is dangerous outside. Further reading suggests being properly equipped or acquiring an umbrella."; name = "WARNING: HAIL STORMS"},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"OQ" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) -"OR" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"OS" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/monitoring) -"OT" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"OU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"OV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"OW" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"OX" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 4},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"OY" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/gen_room/smes_left) -"OZ" = (/obj/random/junk,/obj/random/junk,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/surface/outpost/main/laundry) -"Pa" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/power/terminal{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"Pb" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"Pc" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "mining2_airlock_control"; name = "Internal Access Button"; pixel_x = -26; pixel_y = -6; req_one_access = list(48,10)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "mining2_airlock_interior"; locked = 1; name = "Mining Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/mining_main/tools) -"Pd" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Pe" = (/obj/machinery/door/firedoor/multi_tile/glass,/obj/machinery/door/airlock/multi_tile/metal{name = "Sauna"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/sauna) -"Pf" = (/obj/effect/floor_decal/spline/plain{dir = 9},/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) -"Pg" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/exploration/containment) -"Ph" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/closet/secure_closet/engineering_personal,/obj/machinery/light{dir = 4},/obj/random/maintenance/engineering,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Pi" = (/obj/structure/fence/cut/large,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"Pj" = (/obj/structure/table/bench/marble,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Pk" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/corridor/left_upper) -"Pl" = (/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"Pm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"Po" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 6},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Ps" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 1},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Pt" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/light,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Pu" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Pv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "SMES Access"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gen_room) -"Pw" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"Py" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/machinery/light,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Pz" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/machinery/light/small{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"PA" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 4; dir = 4; icon_state = "2-4"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/table/steel_reinforced,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/warning,/obj/item/clothing/gloves/yellow,/obj/item/device/multitool{pixel_x = 5},/obj/machinery/light{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/reactor_smes) -"PB" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"PC" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"PD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"PE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"PF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"PG" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"PJ" = (/obj/effect/floor_decal/techfloor/orange{dir = 4},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"PK" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/brown/border{dir = 10},/obj/structure/closet/crate,/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"PL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/right_three) -"PM" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"PN" = (/obj/machinery/floodlight,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"PO" = (/turf/simulated/floor/water/shoreline{dir = 1},/area/surface/outside/ocean) -"PP" = (/obj/structure/table/glass,/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"PQ" = (/obj/machinery/pipedispenser,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"PR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"PS" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"PT" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/rack,/obj/machinery/light{dir = 4},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"PU" = (/obj/effect/zone_divider,/turf/simulated/floor/water,/area/surface/outside/river/faxalven) -"PV" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"PW" = (/obj/effect/step_trigger/teleporter/bridge/east_to_west,/obj/structure/railing{dir = 8},/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) -"PX" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/teleporter) -"PY" = (/obj/structure/sign/electricshock,/turf/simulated/wall,/area/surface/outpost/civilian/smes) -"PZ" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Search and Rescue"; req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/multi_tile/glass,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/search_and_rescue) -"Qa" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Qb" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Qd" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust{dir = 6},/obj/structure/cable/heavyduty{icon_state = "1-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Qe" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{id = "EngineReactor"; rad_resistance = 150},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Qf" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) -"Qg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"Qh" = (/obj/structure/table/steel,/obj/item/weapon/storage/belt/utility/full,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/brown/border{dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"Qi" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/table/glass,/obj/item/roller{pixel_x = 8; pixel_y = 1},/obj/item/roller{pixel_x = 8; pixel_y = 9},/obj/item/roller{pixel_x = -8; pixel_y = 1},/obj/item/roller{pixel_x = -8; pixel_y = 9},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Qj" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/engineering/monitoring) -"Qk" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/button/remote/blast_door{id = "pen"; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"Ql" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Qn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Qo" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/restroom) -"Qp" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Qq" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/orange/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Qr" = (/obj/structure/fence,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"Qt" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"Qu" = (/obj/random/junk,/obj/random/junk,/obj/random/contraband,/turf/simulated/floor/plating,/area/surface/outpost/main/laundry) -"Qv" = (/obj/machinery/atmospherics/binary/pump{dir = 4; name = "Air Tank Bypass Pump"},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Qx" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/heavyduty{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/engineering/smes) -"Qy" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Qz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"QA" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"QB" = (/obj/structure/flora/pottedplant/stoutbush,/obj/machinery/camera/network/security{c_tag = "SO - Security Checkpoint"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"QC" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"QD" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock Access 3"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"QG" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 5},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/blue{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/tiled,/area/surface/outpost/security) -"QH" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"QI" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable/heavyduty{d2 = 2; dir = 4; icon_state = "0-4"},/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/firedoor/border_only,/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"QJ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/right_lower) -"QL" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"QM" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"QN" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) -"QO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/plaque,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/corridor/right_upper) -"QP" = (/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/auxiliary_storage) -"QQ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 1"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"QR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"QS" = (/obj/structure/fence,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"QT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 8; id = "production1"; name = "Production Shutters"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/mining_main/refinery) -"QU" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"QV" = (/obj/machinery/door/airlock{id_tag = "dorm5"; name = "Dorm 5"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_5) -"QW" = (/turf/simulated/wall,/area/surface/outpost/main/gateway) -"QX" = (/obj/item/weapon/stool/padded,/obj/structure/boxingrope{dir = 4},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"QY" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"QZ" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/obj/structure/dogbed,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"Ra" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main3_airlock_control"; pixel_x = -5; tag_exterior_door = "main3_airlock_exterior"; tag_interior_door = "main3_airlock_interior"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main3_airlock_control"; name = "Internal Access Button"; pixel_x = 5},/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_south) -"Rb" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/machinery/recharge_station,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Rc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"Rd" = (/obj/structure/boxingrope{dir = 4},/obj/structure/boxingrope,/obj/structure/boxingrope{dir = 6; layer = 4.1},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"Re" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Rf" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Rg" = (/obj/machinery/door/airlock{id_tag = "dorm6"; name = "Dorm 6"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_6) -"Rh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"Ri" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/door/firedoor/glass/hidden{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Rj" = (/obj/machinery/light{dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Rk" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) -"Rl" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/table/steel,/obj/item/weapon/handcuffs/fuzzy,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"Rm" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/purple/border{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Rn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Ro" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Rp" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/button/remote/blast_door{id = "garage1"; name = "Garage Shutter Control"; pixel_x = -6; pixel_y = 22},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"Rq" = (/obj/machinery/computer/gyrotron_control{id_tag = "Reactor Gyrotron"},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/obj/machinery/button/remote/blast_door/radproof{id = "EngineReactor"; name = "Reactor Blast Doors"; pixel_x = -25},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/reactor_smes) -"Rr" = (/turf/simulated/shuttle/wall/voidcraft,/area/surface/outside/lake/romsele) -"Rs" = (/obj/machinery/atmospherics/binary/pump,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Ru" = (/obj/machinery/vending/loadout/costume,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Rv" = (/obj/machinery/computer/fusion_fuel_control{id_tag = "Reactor Fuel Injectors"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/reactor_smes) -"Rw" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 4},/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_two) -"Rx" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/machinery/camera/network/main_outpost{c_tag = "MO - Landing North Airlock"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"Ry" = (/obj/item/weapon/towel{color = "#b5651d"; name = "brown towel"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) -"Rz" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 1"; dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"RA" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"RB" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light/small{dir = 8},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) -"RC" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main5_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main5_airlock_control"; name = "External Access Button"; pixel_y = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outside/plains/outpost) -"RD" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/table/glass,/obj/item/clothing/accessory/stethoscope,/obj/item/device/defib_kit/loaded,/obj/item/device/defib_kit/compact/loaded,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"RE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"RF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/landing_south) -"RG" = (/obj/machinery/vending/loadout/accessory,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"RH" = (/obj/effect/floor_decal/techfloor/orange{dir = 5},/obj/machinery/status_display{pixel_y = 32},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"RI" = (/obj/structure/table/steel,/obj/structure/closet/hydrant{pixel_y = -32},/obj/item/clothing/glasses/meson,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"RJ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"RK" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/path/plains) -"RL" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"RN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"RO" = (/obj/effect/step_trigger/teleporter/bridge/west_to_east,/obj/structure/railing{dir = 4},/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) -"RP" = (/obj/effect/decal/cleanable/dirt,/obj/vehicle/train/engine/quadbike{dir = 2},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"RQ" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/rack,/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock 1"; dir = 8},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_one) -"RS" = (/obj/structure/table/rack/shelf,/obj/item/weapon/storage/backpack/parachute{pixel_x = -6; pixel_y = 6},/obj/item/weapon/storage/backpack/parachute{pixel_x = 6; pixel_y = 6},/obj/item/weapon/storage/backpack/parachute{pixel_x = -6; pixel_y = -6},/obj/item/weapon/storage/backpack/parachute{pixel_x = 6; pixel_y = -6},/obj/effect/floor_decal/corner/purple{dir = 10},/obj/effect/floor_decal/corner/purple{dir = 5},/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"RT" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 8},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"RU" = (/obj/item/weapon/stool/padded,/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"RV" = (/obj/structure/table/glass,/obj/item/clothing/mask/snorkel,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"RW" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"RX" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_north) -"RY" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 8},/obj/structure/cable/yellow{d1 = 6; d2 = 9; icon_state = "6-9"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"RZ" = (/obj/machinery/computer/teleporter{dir = 2},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/teleporter) -"Sa" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Sb" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/uxstorage) -"Sc" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_one) -"Sd" = (/obj/machinery/vending/nifsoft_shop{dir = 4},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Se" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"Sf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/blue,/area/surface/outpost/main/dorms/dorm_5) -"Sg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Sh" = (/obj/machinery/mineral/stacking_unit_console,/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/refinery) -"Si" = (/obj/machinery/disposal,/obj/machinery/firealarm{dir = 1; pixel_y = -25},/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Sj" = (/obj/machinery/conveyor{dir = 4; id = "mining_internal"},/obj/structure/plasticflaps/mining,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"Sk" = (/obj/effect/zone_divider,/turf/simulated/shuttle/wall/voidcraft,/area/surface/outpost/wall) -"Sm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Sn" = (/obj/machinery/light,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"So" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_two) -"Sp" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Sq" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Sr" = (/obj/structure/fitness/weightlifter,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"Ss" = (/obj/structure/janitorialcart,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"Su" = (/obj/machinery/computer/secure_data,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"Sv" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"Sx" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Sy" = (/obj/machinery/fitness/heavy/lifter,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"Sz" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_south) -"SA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"SB" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"SC" = (/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"SD" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"SE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "sauna_tint2"},/obj/structure/window/reinforced/polarized{id = "sauna_tint2"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"SF" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/bottle/champagne,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"SG" = (/obj/effect/landmark{name = "JoinLateSifPlains"},/obj/effect/landmark/start{name = "Outsider"},/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) -"SH" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle/candelabra,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"SJ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/mining_main) -"SK" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/tools) -"SL" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 5"; dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"SN" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"SO" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/monitoring) -"SP" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/gym) -"SQ" = (/obj/structure/table/woodentable,/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"},/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"; pixel_y = 3},/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"; pixel_y = 6},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"SR" = (/obj/structure/dispenser{phorontanks = 0},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"SS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"ST" = (/obj/effect/floor_decal/techfloor/orange{dir = 8},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Gateway"; dir = 4},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"SU" = (/obj/effect/decal/cleanable/dirt,/obj/effect/overlay/snow/floor,/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/path/plains) -"SV" = (/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"SW" = (/obj/effect/floor_decal/industrial/outline/red,/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/landing_south) -"SX" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"SY" = (/turf/simulated/floor/water{outdoors = 0},/area/surface/outside/plains/mountains) -"SZ" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet/oracarpet,/area/surface/outpost/main/dorms/dorm_1) -"Ta" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/flora/pottedplant,/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Tc" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Te" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/dorms/dorm_3) -"Tf" = (/obj/machinery/hyperpad/centre{map_pad_id = "pad_1_away"; map_pad_link_id = "pad_1_station"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Tg" = (/obj/structure/closet/wardrobe/xenos,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/machinery/light{dir = 4},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Th" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Ti" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/brown/border{dir = 9},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 10},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Tj" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Tk" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/computer/timeclock/premade/east,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Tl" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/gen_room) -"Tm" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"To" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 1},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Tq" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/orange/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Tr" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/item/weapon/storage/fancy/markers,/obj/random/toy,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Ts" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"Tt" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/brown/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/obj/machinery/camera/network/mining{c_tag = "PO - Mining Hallway 2"; dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Tu" = (/obj/structure/table,/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Tv" = (/obj/machinery/door/airlock{id_tag = "dorm4"; name = "Dorm 4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_4) -"Tw" = (/obj/structure/table/steel,/obj/item/weapon/tool/wrench,/obj/item/weapon/tool/crowbar,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/brown/border{dir = 10},/obj/machinery/light,/obj/machinery/camera/network/mining{c_tag = "PO - Tool Storage"; dir = 4},/obj/item/device/multitool,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"Tx" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Ty" = (/obj/machinery/shower,/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) -"Tz" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/suit_cycler/mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"TA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"TB" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) -"TC" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/structure/closet/secure_closet/pilot,/obj/item/device/cataloguer/compact,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"TD" = (/obj/structure/fence{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"TE" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"TF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/closet/toolcloset,/obj/item/weapon/storage/belt,/obj/item/weapon/storage/belt,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"TG" = (/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"TH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"TI" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"TL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"TM" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"TN" = (/obj/structure/closet/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/suit/radiation,/obj/item/clothing/suit/radiation,/obj/item/device/geiger,/obj/item/device/geiger,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/corner/yellow{dir = 9},/obj/effect/floor_decal/corner/yellow{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"TO" = (/turf/simulated/wall,/area/surface/outpost/main/restroom) -"TP" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"TQ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_three) -"TR" = (/obj/structure/bed/chair,/obj/effect/landmark/start{name = "Explorer"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"TS" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/plating{icon_state = "asteroidplating2"},/area/surface/outpost/mining_main/exterior) -"TT" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main4_airlock_interior"; locked = 1; name = "Landing North Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/landing_north) -"TU" = (/obj/machinery/atmospherics/unary/freezer{icon_state = "freezer"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"TV" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"TW" = (/obj/structure/closet/secure_closet/explorer,/obj/item/device/binoculars,/obj/machinery/status_display{pixel_x = -32},/obj/item/device/cataloguer,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"TX" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_two) -"TZ" = (/obj/structure/closet/crate/secure/gear{name = "explorer crate"; req_access = list(43)},/obj/item/weapon/storage/belt/utility/full,/obj/item/weapon/storage/belt/utility/full,/obj/effect/floor_decal/industrial/outline,/obj/item/clothing/head/welding,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) -"Ua" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/light/small,/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Ub" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Uc" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"Ud" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Ue" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/heavyduty{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"Uf" = (/obj/structure/closet,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Ug" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Uh" = (/turf/simulated/wall,/area/surface/outpost/civilian/sauna) -"Ui" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/left_two) -"Uj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Uk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Ul" = (/obj/structure/table/bench/wooden,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"Um" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "mining1_airlock_control"; pixel_x = 26; pixel_y = -26; req_one_access = list(48); tag_exterior_door = "mining1_airlock_exterior"; tag_interior_door = "mining1_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Uo" = (/obj/machinery/fusion_fuel_injector/mapped{dir = 1; id_tag = "Reactor Fuel Injectors"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Up" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/heavyduty{icon_state = "1-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"Uq" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) -"Ur" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Us" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"Ut" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Uu" = (/turf/simulated/wall,/area/surface/outpost/mining_main/uxstorage) -"Uv" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"Uw" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 6},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"Ux" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/railing,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Uy" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/teleporter) -"Uz" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"UA" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_one) -"UB" = (/obj/effect/floor_decal/corner/red{dir = 6},/obj/effect/floor_decal/corner/red{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"UC" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/radproof{id = "EngineReactor"; rad_resistance = 150},/turf/simulated/floor/reinforced,/area/surface/outpost/engineering/reactor_smes) -"UD" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/power/hydromagnetic_trap,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"UE" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main2_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main2_airlock_control"; name = "External Access Button"; pixel_x = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/right_one) -"UF" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"UG" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"UH" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_one) -"UI" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"UJ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"UK" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"UL" = (/obj/structure/cable/blue,/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Security"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"UM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"UN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"UO" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"UP" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/normal) -"UQ" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Outpost Reactor Power"; name_tag = "Outpost Reactor Power"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"UR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"US" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"UT" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"UU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/closet/crate,/obj/machinery/camera/network/mining{c_tag = "PO - Mining Stocking"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"UV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"UW" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) -"UY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"UZ" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Va" = (/obj/machinery/computer/fusion_core_control{id_tag = "Outpost Fusion Core"},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Reactor Monitoring"; name = "Engineering_Outpost"; network = list("Engineering")},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/reactor_smes) -"Vb" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic{dir = 1},/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"Vc" = (/obj/structure/curtain/open/shower,/obj/machinery/shower{dir = 4; pixel_x = 5},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Vd" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Ve" = (/obj/structure/fence/cut/medium,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"Vf" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Vg" = (/turf/simulated/wall/solidrock,/area/surface/outside/plains/mountains) -"Vh" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/item/frame/extinguisher_cabinet,/obj/item/weapon/extinguisher,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"Vj" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Vk" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/storage) -"Vm" = (/obj/effect/overlay/snow/floor,/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/storage) -"Vn" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main8_airlock_control"; pixel_x = -26; pixel_y = -26; tag_exterior_door = "main8_airlock_exterior"; tag_interior_door = "main8_airlock_interior"},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"Vo" = (/obj/machinery/mineral/unloading_machine{icon_state = "unloader-corner"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"Vp" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Vq" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/monitoring) -"Vr" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Vs" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Vt" = (/obj/machinery/button/remote/blast_door/radproof{name = "Engine Monitoring Room Blast Doors"; pixel_x = 23},/obj/machinery/computer/security/engineering,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/yellow/border{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/reactor_smes) -"Vu" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Vv" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Vw" = (/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Vy" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Vz" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"VA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet/bcarpet,/area/surface/outpost/main/dorms/dorm_4) -"VB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"VC" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Landing South Airlock Access"; dir = 1},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"VD" = (/obj/effect/step_trigger/teleporter/bridge/south_to_north,/obj/structure/railing{dir = 1},/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"VE" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"VF" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 9},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_two) -"VG" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"VH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"VI" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Emergency Storage"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/emergency_storage/two) -"VJ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"VK" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) -"VL" = (/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/outpost) -"VM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"VN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"VO" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 5},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"VP" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room) -"VQ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/left_lower) -"VR" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"VS" = (/obj/item/weapon/stool/padded,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"VT" = (/obj/structure/table/steel,/obj/random/junk,/obj/random/action_figure,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"VU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/mineral/equipment_vendor{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"VV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"VW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"VX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"VY" = (/obj/item/weapon/stool/padded,/obj/machinery/camera/network/civilian{c_tag = "CO - Pool 1"; dir = 8},/obj/structure/sign/christmas/lights{dir = 1},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"VZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"Wa" = (/obj/machinery/scale,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"Wb" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/gym) -"Wc" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"We" = (/obj/structure/closet/crate{name = "Deuterium Storage"},/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"Wg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Wh" = (/obj/machinery/vending/nifsoft_shop{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Wi" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"Wj" = (/obj/machinery/vending/loadout/overwear,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Wk" = (/obj/structure/closet/secure_closet/personal,/obj/structure/sign/christmas/lights,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Wl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) -"Wm" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/table/steel,/obj/machinery/firealarm{dir = 1; pixel_y = -25},/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Wn" = (/obj/effect/zone_divider,/turf/simulated/mineral/sif,/area/surface/outside/plains/mountains) -"Wo" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"Wp" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Wq" = (/obj/structure/table/rack,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Wr" = (/obj/machinery/door/firedoor/glass,/obj/item/tape/engineering,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/restroom) -"Ws" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Wt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Wu" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_three) -"Wv" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/overlay/snow/floor/edges{dir = 8},/obj/effect/overlay/snow/floor/edges{dir = 4},/obj/effect/zone_divider,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Ww" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Wx" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/pool) -"Wy" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/machinery/camera/network/mining{c_tag = "PO - Airlock Access 2"; dir = 1},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"Wz" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "ENG_Outpost_airlock_control"; name = "Internal Access Button"; pixel_x = 5; pixel_y = 26; req_one_access = list(10)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "ENG_Outpost_airlock_interior"; locked = 1; name = "Engineering Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/engineering/monitoring) -"WA" = (/obj/structure/closet/secure_closet/sar,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/item/roller/adv,/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"WB" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) -"WC" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"WD" = (/obj/random/toolbox,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"WE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"WG" = (/obj/structure/flora/pottedplant/xmas,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"WH" = (/obj/machinery/vending/cola{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"WI" = (/obj/structure/closet/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/suit/radiation,/obj/item/clothing/suit/radiation,/obj/item/device/geiger,/obj/item/device/geiger,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"WJ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"WK" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main1_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main1_airlock_control"; name = "External Access Button"; pixel_y = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/right_two) -"WL" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 5},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"WM" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/exploration/containment) -"WN" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/industrial/danger{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/teleporter) -"WO" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm3"; name = "Door Lock Control"; pixel_y = -25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"WP" = (/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/surface/outside/plains/normal) -"WQ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/exploration) -"WR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"WS" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"WT" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/restroom) -"WU" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"WV" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/civilian/pool) -"WW" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"WX" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"WY" = (/obj/effect/zone_divider,/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) -"WZ" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Pool"},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/pool) -"Xa" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"Xb" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/sign/christmas/wreath{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Xc" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Xd" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor,/obj/item/weapon/material/ashtray/plastic,/obj/machinery/recharger,/obj/effect/floor_decal/corner/red/border,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"Xe" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Xf" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Xg" = (/obj/machinery/button/remote/blast_door{id = "garage1"; name = "Garage Shutter Control"; pixel_x = 22; req_one_access = list(48,43)},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outpost/main/airlock/right_two) -"Xh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"Xi" = (/obj/machinery/fusion_fuel_injector/mapped{dir = 8; id_tag = "Reactor Fuel Injectors"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Xj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) -"Xk" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Xl" = (/obj/effect/floor_decal/techfloor/orange{dir = 10},/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"Xm" = (/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Xn" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/bed/chair/office/light{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Xo" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Outpost Access"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Xp" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 8},/obj/item/device/gps/security,/obj/item/device/gps/security,/obj/item/device/gps/security,/obj/item/device/gps/security,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"Xq" = (/obj/structure/closet/toolcloset,/obj/item/device/flashlight/maglight,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Xr" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Xs" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Xt" = (/obj/structure/sink{pixel_y = 16},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"Xu" = (/turf/simulated/wall,/area/surface/outpost/civilian/fishing) -"Xv" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_three) -"Xw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"Xx" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"Xy" = (/obj/effect/floor_decal/borderfloor/cee{dir = 1},/obj/effect/floor_decal/industrial/danger/cee{dir = 1},/obj/machinery/door/window/brigdoor/westright{name = "Containment Pen"; req_one_access = list(43,1)},/obj/machinery/door/window/brigdoor/eastleft{name = "Containment Pen"; req_one_access = list(43,1)},/obj/machinery/door/blast/regular/open{id = "pen"; name = "Containment Lockdown Blast Doors"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"Xz" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/sign/christmas/lights{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"XA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"XB" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"XC" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet,/area/surface/outpost/main/dorms/dorm_6) -"XD" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"XE" = (/turf/simulated/mineral/sif,/area/surface/outside/plains/mountains) -"XF" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"XG" = (/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"XH" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"XI" = (/obj/structure/table/steel,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"XJ" = (/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"XK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"XL" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"XM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/turcarpet,/area/surface/outpost/main/dorms/dorm_3) -"XN" = (/turf/simulated/floor/water/deep,/area/surface/outside/lake/romsele) -"XO" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/search_and_rescue) -"XP" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet/blue,/area/surface/outpost/main/dorms/dorm_5) -"XQ" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/tools) -"XR" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"XS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Custodial Closet"; req_one_access = list(26)},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/janitor) -"XU" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/light,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"XV" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) -"XW" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"XX" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/light{dir = 8},/obj/structure/sign/christmas/wreath{dir = 4},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"XY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"XZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/security) -"Ya" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) -"Yb" = (/obj/machinery/shower,/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) -"Yc" = (/turf/simulated/wall,/area/surface/outpost/mining_main/refinery) -"Yd" = (/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"Ye" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Yf" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/structure/closet/emcloset,/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/structure/sign/christmas/lights{dir = 4},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Yg" = (/obj/machinery/washing_machine,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"Yh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/light,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Yi" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"Yj" = (/obj/effect/floor_decal/corner_steel_grid{dir = 5},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Yk" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Yl" = (/obj/item/weapon/towel{color = "#800080"; name = "purple towel"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) -"Ym" = (/obj/structure/closet/crate/secure/gear{name = "explorer crate"; req_access = list(43)},/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/firstaid/regular,/obj/effect/floor_decal/industrial/outline,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) -"Yn" = (/obj/structure/fence{dir = 8},/obj/effect/zone_divider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"Yo" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Yp" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/gateway) -"Yq" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/symbol/da{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Yr" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"Ys" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/red/border{dir = 5},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; operating = 0; pixel_y = 24},/obj/effect/decal/cleanable/blood/oil,/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"Yt" = (/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Yu" = (/obj/machinery/atmospherics/binary/pump/on,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Yv" = (/obj/machinery/light{dir = 1},/obj/structure/sign/christmas/wreath,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"Yw" = (/turf/simulated/floor/water,/area/surface/outside/plains/mountains) -"Yy" = (/obj/effect/decal/remains/ribcage,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/dirt,/area/surface/outside/plains/outpost) -"Yz" = (/turf/unsimulated/wall/planetary/sif,/area/surface/outside/river/indalsalven) -"YA" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/storage) -"YB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) -"YC" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"YD" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"YE" = (/obj/effect/floor_decal/corner/red{dir = 9},/obj/effect/floor_decal/corner/red{dir = 6},/obj/structure/table/reinforced,/obj/item/weapon/storage/box,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"YF" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"YG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"YH" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"YI" = (/obj/effect/floor_decal/steeldecal/steel_decals1,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"YJ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/computer/guestpass{pixel_y = 28},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"YK" = (/obj/effect/floor_decal/borderfloor,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/corner/purple/border,/obj/item/clothing/suit/caution,/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"YL" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"YM" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/orange/border{dir = 8},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue,/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"YO" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/showers) -"YP" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass{name = "Laundry"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/laundry) -"YQ" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"YR" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/light_switch{pixel_x = 22; pixel_y = -10},/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"YS" = (/obj/machinery/vending/fitness{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"YT" = (/obj/effect/landmark/start{name = "Search and Rescue"},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"YU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"YV" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"YW" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_2) -"YX" = (/obj/machinery/space_heater,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"YZ" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Za" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 1"; dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Zb" = (/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/fishing) -"Zc" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"Zd" = (/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Right Wing"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"Ze" = (/obj/structure/closet/secure_closet/personal,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Zf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Zg" = (/obj/structure/closet/crate,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/refinery) -"Zh" = (/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Zj" = (/obj/effect/floor_decal/industrial/outline/red,/obj/structure/sign/christmas/lights{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/storage) -"Zk" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/window/basic,/obj/structure/window/basic{dir = 8},/obj/item/weapon/mining_scanner,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/head/helmet/space/void/mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Zl" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/left_upper) -"Zm" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/effect/floor_decal/corner/purple/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 4},/obj/machinery/light_switch{pixel_x = 22; pixel_y = -10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"Zn" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Zo" = (/obj/structure/table/steel,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/light/small{dir = 4},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"Zp" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Zq" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"Zr" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Zt" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/door/firedoor/glass/hidden{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Zu" = (/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/normal) -"Zv" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/white/border{dir = 10},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/sign/christmas/lights{dir = 8},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Zx" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Zy" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/sign/christmas/lights,/turf/simulated/floor/tiled,/area/surface/outside/plains/outpost) -"Zz" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ZA" = (/obj/structure/closet/emcloset,/obj/machinery/camera/network/engineering_outpost{c_tag = "ENG - Mining Outpost Power 2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"ZB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/structure/sign/christmas/lights{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ZC" = (/obj/item/weapon/stool/padded,/obj/structure/boxingrope{dir = 8},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"ZD" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"ZE" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"ZF" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_north) -"ZG" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/civilian/pool) -"ZH" = (/obj/effect/overlay/snow/floor,/obj/structure/sign/christmas/wreath{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_two) -"ZI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"ZJ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"ZK" = (/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/smes) -"ZL" = (/obj/structure/table/bench/standard,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"ZM" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"ZN" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"ZO" = (/obj/machinery/conveyor{id = "mining_north"},/obj/machinery/mineral/output,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/exterior) -"ZP" = (/obj/random/technology_scanner,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"ZQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"ZR" = (/obj/structure/table/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/item/weapon/backup_implanter{pixel_y = -6},/obj/item/weapon/backup_implanter{pixel_y = 6},/obj/item/weapon/backup_implanter{pixel_y = 12},/obj/item/weapon/backup_implanter,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"ZS" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"ZT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"ZU" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 140; external_pressure_bound_default = 140; icon_state = "map_vent_out"; pressure_checks = 0; pressure_checks_default = 0; use_power = 1},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"ZV" = (/obj/structure/toilet,/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) -"ZW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ZX" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/terminal{dir = 4},/obj/structure/catwalk,/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/random/powercell,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/smes) -"ZY" = (/obj/machinery/washing_machine,/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"ZZ" = (/obj/machinery/newscaster{pixel_x = -30},/obj/structure/sign/christmas/wreath{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/one) +"ab" = ( +/obj/structure/table/steel, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/path/plains) +"ac" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"ad" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ae" = ( +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"af" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"ag" = ( +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"ah" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"ai" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Gym"; + dir = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"aj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"al" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"am" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"an" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"ao" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gateway) +"ap" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/machinery/computer/cryopod/gateway{ + pixel_y = 30 + }, +/obj/machinery/newscaster{ + pixel_x = 29 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gateway) +"aq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Hallway 4"; + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ar" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "SUBS - Left Wing"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"as" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"at" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"au" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/emergencystorage) +"av" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"aw" = ( +/obj/machinery/vending/sol{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ax" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ay" = ( +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"az" = ( +/obj/structure/table/bench/marble, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"aA" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/weapon/material/ashtray, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"aB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"aC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"aD" = ( +/obj/effect/mist, +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/sauna) +"aE" = ( +/obj/structure/fence/cut/large, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"aF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"aG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"aI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"aJ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"aK" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"aL" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"aM" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"aN" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 23; + pixel_y = 12 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"aO" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/main/exploration/containment) +"aP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"aQ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/exterior) +"aR" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"aS" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"aT" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security) +"aV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"aW" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/pool) +"aX" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"aY" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"aZ" = ( +/obj/structure/closet/crate, +/obj/item/weapon/tool/crowbar/red, +/obj/item/frame/light, +/obj/item/weapon/storage/box/lights/mixed, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"ba" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/civilian/emergency_storage) +"bb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main5_airlock_control"; + pixel_x = 26; + pixel_y = -26; + tag_exterior_door = "main5_airlock_exterior"; + tag_interior_door = "main5_airlock_interior" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"bc" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"be" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_two) +"bf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"bg" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/weapon/mining_scanner, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/head/helmet/space/void/mining, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"bh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"bi" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"bj" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "mining_north"; + name = "mining conveyor" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/exterior) +"bk" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main8_airlock_exterior"; + locked = 1; + name = "Main Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main8_airlock_control"; + name = "External Access Button"; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/left_three) +"bl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"bm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"bn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"bo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"bp" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Outpost Substation"; + req_access = list(11) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/engineering/smes) +"bq" = ( +/obj/structure/fence/post{ + dir = 8 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"br" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"bs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"bt" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"bu" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/vending/cigarette{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"bv" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/surface/outpost/wall) +"bw" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"bx" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/item/weapon/material/ashtray/plastic, +/obj/random/cigarettes, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"by" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"bz" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"bB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"bC" = ( +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"bD" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"bE" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/table/steel, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/item/weapon/extinguisher/mini, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"bF" = ( +/obj/structure/table/steel, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"bG" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/left_three) +"bH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"bI" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"bK" = ( +/obj/item/device/universal_translator, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"bL" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"bM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"bN" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/storage) +"bO" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/dorms/dorm_1) +"bP" = ( +/turf/simulated/floor/outdoors/rocks/sif/planetuse, +/area/surface/outside/plains/mountains) +"bQ" = ( +/obj/structure/boxingropeenter{ + dir = 8 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"bR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"bS" = ( +/obj/structure/table/glass, +/obj/item/device/paicard, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"bT" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"bU" = ( +/obj/structure/flora/tree/pine/xmas, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"bV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/monitoring) +"bW" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor, +/obj/structure/bedsheetbin, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"bX" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"bY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"bZ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"ca" = ( +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/monitoring) +"cb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + 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/surface/outpost/security) +"cc" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"cd" = ( +/obj/structure/boxingrope{ + layer = 4.1 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"ce" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"cf" = ( +/obj/machinery/light, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"cg" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"ch" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"ci" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"cj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"ck" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/security) +"cl" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/gear_painter, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"cm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/machinery/light, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"cn" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/corner/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"co" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/lapvend, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"cp" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"cq" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/main/airlock/right_one) +"cr" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/emergencystorage) +"cs" = ( +/obj/structure/table/standard, +/obj/item/weapon/towel{ + color = "#3fc0ea"; + name = "light blue towel"; + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/weapon/towel{ + color = "#3fc0ea"; + name = "light blue towel"; + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/weapon/towel{ + color = "#3fc0ea"; + name = "light blue towel"; + pixel_x = 2; + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"ct" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"cu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"cv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"cw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"cx" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/orangedouble, +/turf/simulated/floor/carpet/oracarpet, +/area/surface/outpost/main/dorms/dorm_1) +"cy" = ( +/obj/effect/step_trigger/teleporter/bridge/south_to_north, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/indalsalven) +"cz" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/surface/outpost/main/dorms/dorm_3) +"cA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"cB" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/two) +"cC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"cD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"cE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/corridor/right_lower) +"cF" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water/deep, +/area/surface/outside/ocean) +"cG" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/heavyduty{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"cI" = ( +/obj/machinery/button/remote/blast_door{ + id = "garage2"; + name = "Garage Shutter Control"; + pixel_x = 22 + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/main/airlock/right_one) +"cJ" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/ignore_mapgen/sif, +/area/surface/outside/plains/mountains) +"cK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "civ1_airlock_control"; + pixel_x = -26; + pixel_y = 26; + tag_exterior_door = "civ1_airlock_exterior"; + tag_interior_door = "civ1_airlock_interior" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"cL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"cM" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"cN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"cO" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/storage) +"cP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"cQ" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"cR" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/cable/heavyduty{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"cS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/random/toolbox, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"cT" = ( +/turf/simulated/floor/water/deep/pool, +/area/surface/outpost/civilian/pool) +"cU" = ( +/obj/machinery/mineral/equipment_vendor/survey, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"cW" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"cX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Medical Supplies"; + req_access = null; + req_one_access = list(5,43) + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"cY" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Exploration Prep"; + req_access = null; + req_one_access = list(43,67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/machinery/door/firedoor/multi_tile/glass, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/exploration) +"cZ" = ( +/obj/structure/snowman{ + name = "Frosty" + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"da" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"db" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"dc" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"dd" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"de" = ( +/obj/machinery/vending/medical{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Search and Rescue Port" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"df" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"dg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/structure/table/rack, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"dh" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"dj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"dk" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"dm" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"dn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"do" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Hallway 4"; + dir = 1; + name = "MO Right Wing - Hallway Three" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"dp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/carpet/purcarpet, +/area/surface/outpost/main/dorms/dorm_2) +"dq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"dr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"ds" = ( +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"dt" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/blue, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"du" = ( +/turf/simulated/wall, +/area/surface/outpost/main/dorms/dorm_4) +"dv" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"dw" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 4 + }, +/obj/item/weapon/storage/box/nifsofts_mining, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"dx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"dy" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/dorms/dorm_6) +"dA" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/greendouble, +/turf/simulated/floor/carpet/turcarpet, +/area/surface/outpost/main/dorms/dorm_3) +"dB" = ( +/obj/machinery/alarm{ + dir = 8; + frequency = 1441; + pixel_x = 22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"dC" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "sauna_tint2" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "sauna_tint2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"dE" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Outpost Parallel - Main 2"; + charge = 2e+007; + cur_coils = 4; + input_attempt = 1; + input_level = 750000; + output_level = 100 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"dF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"dG" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Laundry" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/laundry) +"dH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"dI" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"dJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"dK" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Showers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/showers) +"dL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"dM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"dN" = ( +/obj/structure/table/rack, +/obj/item/weapon/shovel, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/pickaxe, +/obj/item/weapon/tool/crowbar, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"dO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"dP" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/civilian/smes) +"dQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Reactor Room Internal Access"; + req_one_access = list(11) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/engineering/reactor_smes) +"dR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"dS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"dT" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/machinery/meter, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"dU" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"dV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"dW" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/weapon/dice/d20, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"dX" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"dY" = ( +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/reactor_smes) +"dZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/storage) +"ea" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"eb" = ( +/obj/structure/fence/corner{ + dir = 10 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"ec" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"ed" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/exploration) +"ef" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Hallway 6"; + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"eg" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -5; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"eh" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Emergency Storage" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/emergency_storage/one) +"ej" = ( +/obj/machinery/vending/loadout/loadout_misc, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Laundry 1"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"ek" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"el" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"em" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"en" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"eo" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ep" = ( +/obj/structure/table/bench/marble, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"eq" = ( +/obj/structure/table/glass, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"er" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"es" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"et" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/machinery/computer/guestpass{ + pixel_y = 28 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"eu" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/tools) +"ev" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/radproof{ + id = "EngineReactor"; + rad_resistance = 150 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/engineering/reactor_smes) +"ew" = ( +/obj/machinery/space_heater, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"ex" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"ey" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outpost/civilian/smes) +"ez" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"eB" = ( +/obj/machinery/conveyor{ + id = "mining_north" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/exterior) +"eC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"eD" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/vending/giftvendor, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"eE" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"eF" = ( +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"eG" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"eH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"eI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"eJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"eK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"eL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"eM" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/wall/solidrock, +/area/surface/outside/plains/mountains) +"eN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"eO" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/refinery) +"eP" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main) +"eQ" = ( +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"eR" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/emergency_storage) +"eS" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/landing_north) +"eT" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"eU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"eV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/atmos_room) +"eW" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + operating = 0; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"eX" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/emergencystorage) +"eY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"eZ" = ( +/obj/effect/overlay/snow/floor/pointy{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/pointy{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"fa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"fb" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_one) +"fc" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Outpost SMES Room"; + req_one_access = list(11) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/engineering/reactor_smes) +"fd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"fe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ff" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/surface/outside/plains/normal; + base_turf = /turf/simulated/floor/outdoors/snow/sif/planetuse; + landmark_tag = "outpost_nw"; + name = "Northwest Outpost Perimiter" + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/normal) +"fg" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/weapon/storage/box/wormcan/sickly{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/wormcan/sickly{ + pixel_x = 3 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Fishing 2"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"fi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"fj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"fk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"fl" = ( +/obj/item/weapon/banner/virgov, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"fm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"fn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"fo" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"fp" = ( +/turf/simulated/floor/water/shoreline, +/area/surface/outside/ocean) +"fq" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Locker Room" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/showers) +"fr" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"fs" = ( +/obj/structure/table/glass, +/obj/item/clothing/shoes/swimmingfins, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"ft" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"fu" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/monitoring) +"fv" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"fw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"fx" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"fy" = ( +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"fz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"fA" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"fB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"fC" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"fD" = ( +/obj/machinery/mineral/input, +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor{ + dir = 8; + id = "mining_external" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"fE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall, +/area/surface/outpost/mining_main/exterior) +"fF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"fG" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"fH" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Airlock Access 3"; + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"fI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Airlock"; + dir = 9; + name = "Engineering_Outpost"; + network = list("Engineering") + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"fJ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"fK" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"fL" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/mining_main/exterior) +"fM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"fN" = ( +/obj/effect/floor_decal/stairs{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/gym) +"fO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"fP" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "sec1_airlock_control"; + name = "Internal Access Button"; + pixel_x = 5; + pixel_y = 26; + req_one_access = list(1) + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "sec1_airlock_interior"; + locked = 1; + name = "Security Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/security) +"fQ" = ( +/turf/simulated/wall, +/area/surface/outside/path/plains) +"fS" = ( +/obj/machinery/mineral/processing_unit, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"fT" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main3_airlock_control"; + name = "External Access Button" + }, +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/landing_south) +"fU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"fV" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"fY" = ( +/obj/structure/table/rack, +/obj/item/weapon/shovel, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/pickaxe, +/obj/item/weapon/tool/crowbar, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"fZ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"ga" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/exploration) +"gb" = ( +/turf/simulated/floor/reinforced, +/area/surface/outpost/main/exploration/containment) +"gc" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"gd" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"ge" = ( +/obj/item/clothing/suit/caution, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"gf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"gg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"gh" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"gj" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/search_and_rescue) +"gk" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/corridor/left_upper) +"gl" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/corner/orange{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"gm" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/obj/machinery/mineral/output, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"gn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"go" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room) +"gp" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"gq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"gr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"gs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"gt" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"gu" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"gw" = ( +/obj/machinery/fusion_fuel_compressor, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Fuel Storage"; + dir = 6; + name = "Engineering_Outpost"; + network = list("Engineering") + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"gx" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/path/plains) +"gy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + frequency = 1438; + id = "rust_cooling_in"; + name = "Coolant Injector"; + pixel_y = 1; + power_rating = 30000; + use_power = 1; + volume_rate = 700 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"gz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"gB" = ( +/obj/machinery/button/windowtint{ + id = "sauna_tint1"; + pixel_x = -5; + pixel_y = 22 + }, +/obj/machinery/button/windowtint{ + id = "sauna_tint2"; + pixel_x = 6; + pixel_y = 22 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"gC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"gD" = ( +/turf/simulated/floor/water/shoreline{ + dir = 9 + }, +/area/surface/outside/ocean) +"gE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"gG" = ( +/turf/unsimulated/wall/planetary/sif, +/area/surface/outside/plains/mountains) +"gH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"gI" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/two) +"gJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"gK" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall, +/area/surface/outpost/main/gen_room/smes_left) +"gL" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"gM" = ( +/obj/structure/table/bench/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"gN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"gO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"gP" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"gQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"gR" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"gS" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/effect/floor_decal/industrial/outline, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/corridor/right_upper) +"gT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"gV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"gW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"gX" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"gZ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"ha" = ( +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"hb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"hc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_6) +"hd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"he" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Airlock 1"; + dir = 4 + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_one) +"hf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"hg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"hh" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = newlist(); + req_one_access = list(43,67) + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/item/weapon/gun/energy/locked/frontier, +/obj/item/weapon/gun/energy/locked/frontier, +/obj/item/weapon/gun/energy/locked/frontier, +/obj/item/weapon/gun/energy/locked/frontier, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"hi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"hk" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"hl" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main7_airlock_exterior"; + locked = 1; + name = "Main Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main7_airlock_control"; + name = "External Access Button"; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/left_two) +"hm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/fitness/punching_bag/clown, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"hn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"ho" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/structure/flora/pottedplant/xmas, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"hq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/tools) +"hr" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "civ2_airlock_control"; + name = "Internal Access Button"; + pixel_x = 26; + pixel_y = 5 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "civ2_airlock_interior"; + locked = 1; + name = "Civilian Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/civilian/sauna) +"hs" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Airlock Access 2" + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"ht" = ( +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/sign/christmas/lights, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"hu" = ( +/obj/machinery/disposal, +/obj/machinery/light_construct{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"hv" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/path/plains) +"hw" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_three) +"hx" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"hy" = ( +/obj/structure/cable/blue, +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Shuttle Landing"; + charge = 5e+006; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"hA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/machinery/camera/network/security{ + c_tag = "SO - Airlock Access"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"hB" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_one) +"hC" = ( +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"hD" = ( +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "production1"; + name = "Production Shutters" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/mining_main/refinery) +"hE" = ( +/obj/effect/landmark/event_spawn/dronepod_landing, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"hF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"hG" = ( +/obj/effect/step_trigger/teleporter/bridge/east_to_west, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/indalsalven) +"hH" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"hI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/exploration/containment) +"hJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"hK" = ( +/turf/simulated/floor/outdoors/snow, +/area/surface/outside/plains/outpost) +"hL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"hM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"hN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"hO" = ( +/turf/simulated/floor/water/shoreline{ + dir = 8 + }, +/area/surface/outside/ocean) +"hP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"hQ" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/symbol/lo{ + pixel_x = -32 + }, +/obj/structure/bed/chair, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"hR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"hS" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Tool Storage"; + req_one_access = list(48) + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/tools) +"hT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"hU" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"hV" = ( +/obj/structure/fence/corner{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"hW" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_two) +"hX" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_three) +"hY" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/overlay/snow/floor/edges, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/tools) +"hZ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"ib" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/emergency_storage/two) +"ic" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/left_three) +"id" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/closet/wardrobe/pjs, +/obj/effect/floor_decal/corner/white/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"ie" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/right_lower) +"if" = ( +/turf/simulated/floor/water/deep, +/area/surface/outside/river/indalsalven) +"ig" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"ih" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/obj/item/weapon/pickaxe, +/obj/item/device/gps/mining, +/obj/item/clothing/head/hardhat/orange, +/obj/machinery/vending/wallmed1{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"ii" = ( +/obj/machinery/teleport/hub, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/teleporter) +"ij" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/water/deep/pool, +/area/surface/outpost/civilian/pool) +"il" = ( +/obj/structure/fence/corner, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/outpost) +"im" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining_internal" + }, +/obj/machinery/mineral/output, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"in" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"io" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"ip" = ( +/obj/effect/shuttle_landmark{ + landmark_tag = "response_ship_planet"; + name = "Sif Surface East" + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/normal) +"iq" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room) +"ir" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"is" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"it" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"iu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"iv" = ( +/obj/machinery/light/floortube{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"iw" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ix" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"iy" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"iz" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"iA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/tools) +"iB" = ( +/obj/effect/overlay/snow/floor/pointy, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"iC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"iD" = ( +/obj/machinery/power/port_gen/pacman, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"iE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"iF" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outside/plains/normal) +"iG" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"iH" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/reactor_smes) +"iI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_three) +"iJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/mob/living/simple_mob/animal/passive/mouse/mining, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"iK" = ( +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant/small, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"iL" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/grille, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"iM" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/left_one) +"iN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"iO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Central Hall"; + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"iP" = ( +/obj/effect/overlay/snow/floor/pointy{ + dir = 8 + }, +/obj/effect/overlay/snow/floor/pointy, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"iQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"iR" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"iS" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"iT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/air_sensor{ + frequency = 1438; + id_tag = "rustengine_sensor"; + output = 63 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"iU" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "ENG_Outpost_airlock_control"; + pixel_x = 26; + pixel_y = 26; + tag_exterior_door = "ENG_Outpost_airlock_exterior"; + tag_interior_door = "ENG_Outpost_airlock_interior" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"iV" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/right_lower) +"iW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"iX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"iY" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"iZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"ja" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"jb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"jc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"jd" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"je" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass_engineering{ + name = "Reactor Monitoring Room" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/engineering/monitoring) +"jf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"jg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/security) +"ji" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/civilian/sauna) +"jj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"jk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"jl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"jm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"jn" = ( +/obj/item/stack/material/wood, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"jo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"jp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"jq" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"jr" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"js" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"jt" = ( +/obj/machinery/door/firedoor/glass/hidden{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"ju" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "mining2_airlock_exterior"; + locked = 1; + name = "Mining Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "mining2_airlock_control"; + name = "External Access Button"; + pixel_x = -26; + req_one_access = list(48,10) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/mining_main/tools) +"jv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"jw" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/mask/gas, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_two) +"jx" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/light, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/landing_north) +"jy" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 28 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "sec1_airlock_control"; + pixel_x = 26; + pixel_y = 26; + req_one_access = list(1); + tag_exterior_door = "sec1_airlock_exterior"; + tag_interior_door = "sec1_airlock_interior" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"jz" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"jA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Teleporter Hallway" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"jC" = ( +/obj/item/weapon/stool/padded, +/obj/structure/sign/christmas/lights, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"jD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"jE" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_one) +"jF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"jG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"jH" = ( +/obj/structure/sign/warning/caution{ + desc = "This appears to be a sign warning people that the other side is dangerous. It also says that NanoTrasen cannot guarantee your safety beyond this point."; + name = "\improper WARNING: NO ACCESS" + }, +/turf/simulated/shuttle/wall/voidcraft, +/area/surface/outpost/wall) +"jI" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"jJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"jK" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -21; + pixel_y = -11 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"jL" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"jM" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/box/donkpockets, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"jN" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/landing_south) +"jO" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"jQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"jR" = ( +/obj/machinery/vending/foodasian{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"jS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"jT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"jU" = ( +/obj/item/weapon/stock_parts/motor, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"jV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"jW" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"jX" = ( +/obj/effect/step_trigger/teleporter/bridge/north_to_south, +/obj/structure/railing, +/turf/simulated/floor/water, +/area/surface/outside/river/indalsalven) +"jY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"jZ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"ka" = ( +/obj/structure/closet/athletic_mixed, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"kb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/multi_tile/metal{ + name = "Fauna Containment"; + req_one_access = list(1,43) + }, +/obj/machinery/door/firedoor/multi_tile/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/exploration/containment) +"kc" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"kd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"ke" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"kf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"kg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"kh" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"ki" = ( +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/exterior) +"kj" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/vending/cigarette{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"kk" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/table/standard, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/gloves/boxing/blue, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"kl" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/bluedouble, +/turf/simulated/floor/carpet/blue, +/area/surface/outpost/main/dorms/dorm_5) +"km" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/vending/wallmed1{ + name = "NanoMed Wall"; + pixel_y = -30 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"kn" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/weapon/mining_scanner, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/head/helmet/space/void/mining, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"ko" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"kp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"kq" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/matches, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"ks" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/two) +"ku" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Teleporter Hallway"; + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"kv" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/landing_south) +"kw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"kx" = ( +/turf/simulated/wall, +/area/surface/outpost/main/gen_room/smes_right) +"ky" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/path/plains) +"kz" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/teleporter) +"kA" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/light, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"kB" = ( +/obj/structure/table/bench/standard, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"kC" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main7_airlock_control"; + name = "Internal Access Button"; + pixel_x = 6; + pixel_y = -26 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main7_airlock_interior"; + locked = 1; + name = "Main Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/left_two) +"kD" = ( +/obj/structure/table/bench/marble, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"kE" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -26 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"kF" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"kG" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"kH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"kI" = ( +/obj/structure/table/steel, +/obj/random/junk, +/obj/random/tool, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "SUBS - Main Outpost"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"kJ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"kK" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/search_and_rescue) +"kL" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/smes) +"kM" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"kN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"kO" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"kP" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room/smes_right) +"kQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"kR" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"kS" = ( +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"kU" = ( +/obj/machinery/mineral/input, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"kV" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"kW" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/highsecurity{ + name = "Teleporter Access"; + req_access = newlist(); + req_one_access = list(17) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/teleporter) +"kX" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/unary/heater/sauna{ + dir = 8; + icon_state = "heater_1"; + use_power = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/civilian/sauna) +"kY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"kZ" = ( +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"la" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"lb" = ( +/obj/structure/toilet, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_1) +"lc" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/monitoring) +"ld" = ( +/turf/simulated/wall, +/area/surface/outpost/main/dorms/dorm_1) +"le" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"lf" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/regular, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"lg" = ( +/obj/machinery/power/generator{ + anchored = 1; + dir = 8 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"lh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/device/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Airlock 3" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_three) +"li" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"lj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main) +"lk" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Pool 2"; + dir = 4 + }, +/obj/structure/sign/christmas/lights, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"ll" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"lm" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main8_airlock_control"; + name = "Internal Access Button"; + pixel_x = -26; + pixel_y = -6 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main8_airlock_interior"; + locked = 1; + name = "Main Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/left_three) +"ln" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"lo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"lp" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"lq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/gym) +"lr" = ( +/obj/machinery/vending/snack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Hallway 2"; + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ls" = ( +/obj/machinery/vending/loadout, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"lt" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"lu" = ( +/obj/item/clothing/head/hardhat/orange, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"lv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"lw" = ( +/obj/effect/landmark/event_spawn/dronepod_landing, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/normal) +"lx" = ( +/obj/structure/table/marble, +/obj/item/device/starcaster_news, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"ly" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_6) +"lz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"lA" = ( +/turf/simulated/wall/dungeon{ + icon = 'icons/obj/doors/shuttledoors.dmi'; + icon_state = "door_locked"; + name = "Wall Gate" + }, +/area/surface/outpost/wall) +"lB" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"lC" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/radproof{ + rad_resistance = 150 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"lD" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/surface/outpost/main/dorms/dorm_2) +"lE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"lF" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"lG" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"lH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"lI" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"lJ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"lK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"lL" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"lM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"lN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"lO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"lP" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/cave) +"lQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"lR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"lS" = ( +/obj/machinery/door/firedoor/glass/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"lT" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_three) +"lU" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"lV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/network/main_outpost{ + c_tag = "ATV Garage 2"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"lW" = ( +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/atmos_room) +"lX" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Outpost Parallel - Main 1"; + charge = 2e+007; + cur_coils = 4; + input_attempt = 1; + input_level = 750000; + output_level = 750000 + }, +/obj/structure/cable, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"lY" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"lZ" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"ma" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"mb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"mc" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/left_two) +"md" = ( +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"mf" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"mg" = ( +/turf/simulated/wall/log_sif, +/area/surface/outpost/civilian/smes) +"mh" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"mi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"mj" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"mk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"ml" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"mm" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"mn" = ( +/obj/structure/boxingrope{ + dir = 1 + }, +/obj/structure/boxingrope{ + dir = 4 + }, +/obj/structure/boxingrope{ + dir = 6 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"mo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_1) +"mp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"mq" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"mr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"ms" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"mt" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"mu" = ( +/obj/item/weapon/bikehorn/rubberducky, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"mv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"mw" = ( +/obj/machinery/door/firedoor/glass/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"mx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/machinery/light, +/obj/structure/closet/secure_closet/pilot, +/obj/item/device/cataloguer/compact, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"my" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"mz" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap/syndie, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_6) +"mA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_5) +"mB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"mC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/purcarpet, +/area/surface/outpost/main/dorms/dorm_2) +"mD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"mE" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"mF" = ( +/obj/machinery/vending/fishing{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"mG" = ( +/obj/machinery/light, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"mH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"mI" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/tools) +"mJ" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/exploration/containment) +"mK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"mL" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/machinery/light, +/obj/item/device/communicator, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"mM" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"mN" = ( +/obj/structure/table/rack, +/obj/item/weapon/material/fishing_net, +/obj/item/weapon/material/fishing_net, +/obj/item/weapon/material/fishing_net, +/obj/item/weapon/material/fishing_net, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"mO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gateway) +"mP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 9 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"mQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"mR" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"mS" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "civ1_airlock_exterior"; + locked = 1; + name = "Civilian Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "civ1_airlock_control"; + name = "External Access Button"; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/civilian/fishing) +"mT" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"mU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_2) +"mV" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"mW" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/porta_turret/industrial/teleport_defense, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/teleporter) +"mX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"mY" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera/emp_proof{ + c_tag = "SUBS - Eng Outpost"; + dir = 4; + name = "Engineering_Outpost"; + network = list("Engineering Outpost") + }, +/obj/machinery/light_switch{ + pixel_x = -11; + pixel_y = 21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/smes) +"na" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"nc" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"nd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"ne" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water/shoreline{ + dir = 8 + }, +/area/surface/outside/ocean) +"nf" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Auxiliary Room"; + dir = 10; + name = "Engineering_Outpost"; + network = list("Engineering") + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"ng" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"nh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"ni" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"nj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"nk" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"nl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"nm" = ( +/obj/structure/table/rack/shelf, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/item/weapon/gun/energy/locked/phasegun/rifle{ + pixel_y = 3 + }, +/obj/item/weapon/gun/energy/locked/phasegun/rifle{ + pixel_y = -4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Mining Hallway 1" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"nn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"no" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"np" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/tools) +"nq" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/main/airlock/right_two) +"nr" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ns" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"nt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"nu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"nv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"nw" = ( +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"nx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"ny" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"nz" = ( +/obj/effect/floor_decal/borderfloor/cee, +/obj/effect/floor_decal/industrial/danger/cee, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Containment Pen"; + req_access = newlist(); + req_one_access = list(43,1) + }, +/obj/machinery/door/window/brigdoor/eastright{ + name = "Containment Pen"; + req_access = newlist(); + req_one_access = list(43,1) + }, +/obj/machinery/door/blast/regular/open{ + id = "pen"; + name = "Containment Lockdown Blast Doors" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"nA" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + 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/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"nB" = ( +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"nC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"nD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"nE" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/outpost/main/dorms/dorm_4) +"nF" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"nG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"nH" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"nI" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/surface/outpost/security/smes) +"nJ" = ( +/obj/structure/table/rack/shelf/steel, +/obj/fiftyspawner/phoronglass, +/obj/fiftyspawner/rglass, +/obj/fiftyspawner/rods, +/obj/fiftyspawner/steel, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "ENG - Mining Outpost Power 1"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"nK" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"nL" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/left_lower) +"nM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"nN" = ( +/obj/machinery/power/port_gen/pacman, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "ENG - Mining Outpost Power 2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"nO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"nP" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"nQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"nR" = ( +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Engineering Outpost"; + charge = 5e+006; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/obj/structure/cable/blue, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/smes) +"nS" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/pool) +"nT" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/reactor_smes) +"nU" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room/smes_left) +"nV" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/civilian/fishing) +"nW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"nX" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"nY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/monitoring) +"nZ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"oa" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"ob" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"oc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/network/main_outpost{ + c_tag = "ATV Garage 1"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"od" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"oe" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"of" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 5 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"og" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"oh" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"oi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"oj" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap/deluxe, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_1) +"ok" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ol" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"om" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/item/clothing/mask/gas/half, +/obj/item/device/cataloguer, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"on" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"oo" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/item/weapon/pickaxe, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/device/cataloguer, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"op" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"oq" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"os" = ( +/obj/structure/table/standard, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/random/soap, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"ot" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"ou" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_three) +"ow" = ( +/obj/structure/flora/pottedplant/xmas, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"ox" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"oy" = ( +/obj/machinery/light, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"oz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"oA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"oB" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/one) +"oC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"oD" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/monitoring) +"oE" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/obj/structure/catwalk, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/path/plains) +"oF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/obj/machinery/computer/timeclock/premade/north, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"oH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"oI" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "mining1_airlock_control"; + name = "Internal Access Button"; + pixel_x = 5; + pixel_y = -26; + req_one_access = list(48) + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "mining1_airlock_interior"; + locked = 1; + name = "Mining Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/mining_main/storage) +"oJ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"oK" = ( +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"oL" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"oM" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/corridor) +"oN" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"oO" = ( +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"oP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"oQ" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/light, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"oR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/left_one) +"oS" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"oT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/carpet, +/area/surface/outpost/main/dorms/dorm_6) +"oU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"oV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"oX" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"oY" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"oZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"pa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/oracarpet, +/area/surface/outpost/main/dorms/dorm_1) +"pb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"pc" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/item/weapon/storage/laundry_basket, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"pd" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/search_and_rescue) +"pe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"pf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"pg" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"ph" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"pi" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/weapon/lipstick/random, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"pj" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"pk" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/item/weapon/beach_ball, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"pl" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/monitoring) +"pm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/atmos_room) +"pn" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Airlock Access 2"; + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"po" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/emergency_storage) +"pp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"pq" = ( +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"pr" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"ps" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"pt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"pu" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"pv" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"pw" = ( +/obj/structure/fence/end{ + dir = 4 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"px" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"py" = ( +/obj/structure/closet/crate, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"pz" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/lapvend{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"pA" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"pB" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_4) +"pC" = ( +/turf/simulated/mineral/ignore_mapgen/sif, +/area/surface/outside/plains/mountains) +"pD" = ( +/obj/structure/table/rack/shelf, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/item/weapon/tank/oxygen{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/weapon/tank/oxygen{ + pixel_x = 1; + pixel_y = -5 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"pE" = ( +/obj/structure/stasis_cage, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/exploration/containment) +"pF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"pG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"pH" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"pI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_6) +"pJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/vehicle/train/engine/quadbike{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"pK" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_2) +"pL" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"pM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/fishing) +"pN" = ( +/turf/simulated/wall, +/area/surface/outpost/main/search_and_rescue) +"pO" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_one) +"pP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"pQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"pR" = ( +/obj/structure/closet, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/obj/item/clothing/gloves/duty, +/obj/item/clothing/gloves/duty, +/obj/item/clothing/under/serviceoveralls, +/obj/item/clothing/under/serviceoveralls, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/accessory/storage/webbing, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"pS" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/sauna) +"pT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"pU" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"pV" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust/corner, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"pW" = ( +/turf/simulated/floor/water/shoreline/corner{ + dir = 1 + }, +/area/surface/outside/ocean) +"pX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"pY" = ( +/obj/item/stack/flag/green{ + pixel_x = -4 + }, +/obj/item/stack/flag/red, +/obj/item/stack/flag/yellow{ + pixel_x = 4 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"pZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"qa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"qb" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + 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/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"qc" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"qd" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 5; + tag_north = 2; + tag_south = 1; + tag_west = 6 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"qe" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"qf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"qg" = ( +/turf/simulated/wall, +/area/surface/outpost/main/bar) +"qh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"qi" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"qj" = ( +/obj/machinery/computer/timeclock/premade/east, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"qk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Reactor Room Access"; + dir = 10; + name = "Engineering_Outpost"; + network = list("Engineering") + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/monitoring) +"ql" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/structure/closet/secure_closet/medical_wall{ + name = "O- Blood Locker"; + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/item/weapon/reagent_containers/blood/OPlus, +/obj/item/weapon/reagent_containers/blood/OPlus, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"qm" = ( +/obj/structure/table/bench/standard, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"qn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"qo" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_two) +"qp" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/structure/coatrack, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"qq" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"qr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"qs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Reactor Auxiliary Room"; + req_one_access = list(11) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/yellow{ + d1 = 9; + d2 = 10; + icon_state = "9-10" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"qt" = ( +/obj/structure/flora/pottedplant/dead, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"qu" = ( +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"qv" = ( +/obj/machinery/mineral/stacking_machine, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"qw" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Outpost SMES Room"; + req_one_access = list(11) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/engineering/reactor_smes) +"qx" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"qy" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"qz" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"qA" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"qB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"qC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"qD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"qE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"qF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"qG" = ( +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/pool) +"qH" = ( +/obj/structure/table/glass, +/obj/item/weapon/inflatable_duck, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"qI" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"qJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"qK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"qL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"qM" = ( +/obj/item/modular_computer/console/preset/security, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"qN" = ( +/turf/simulated/wall, +/area/surface/outpost/civilian/smes) +"qO" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"qP" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Locker Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/showers) +"qQ" = ( +/obj/machinery/cryopod/robot/door/gateway, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"qR" = ( +/obj/structure/table/bench/wooden, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"qS" = ( +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"qT" = ( +/turf/simulated/wall, +/area/surface/outpost/main/exploration) +"qU" = ( +/obj/machinery/conveyor_switch{ + id = "mining_external" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"qV" = ( +/turf/simulated/wall, +/area/surface/outpost/main/corridor/left_lower) +"qW" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/power/thermoregulator, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"qX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"qY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"qZ" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Airlock Access 2"; + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"ra" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"rb" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/stack/material/lead{ + amount = 30 + }, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plasteel, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/item/stack/material/copper{ + amount = 25 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"rc" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"rd" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/regular, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"re" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"rf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/microwave{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"rg" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main5_airlock_control"; + name = "Internal Access Button"; + pixel_x = 5; + pixel_y = -26 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main5_airlock_interior"; + locked = 1; + name = "Main Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/right_three) +"rh" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Construction Area" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/corridor/right_lower) +"ri" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"rj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/multi_tile/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Construction Area" + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/corridor/left_upper) +"rk" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"rl" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/two) +"rm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"rn" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"ro" = ( +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Civilian"; + charge = 500000; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"rq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"rr" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "civ2_airlock_exterior"; + locked = 1; + name = "Civilian Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "civ2_airlock_control"; + name = "External Access Button"; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/civilian/sauna) +"rt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"ru" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/sauna) +"rv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"rw" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"ry" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"rz" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"rA" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"rB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"rC" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"rD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/engineering/monitoring) +"rE" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Airlock Access 1" + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"rF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"rG" = ( +/obj/machinery/vending/fitness{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"rH" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/storage) +"rI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/exploration) +"rK" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap/deluxe, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_2) +"rL" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 2; + tag_north = 5; + tag_west = 1; + use_power = 0 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"rM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/uxstorage) +"rN" = ( +/obj/structure/closet/lasertag/red, +/obj/item/stack/flag/red, +/obj/machinery/light, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"rO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"rP" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_one) +"rQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"rR" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"rS" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/tcomm) +"rT" = ( +/obj/structure/table/steel, +/obj/random/tech_supply, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"rU" = ( +/obj/machinery/vending/loadout/clothing, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"rV" = ( +/turf/simulated/wall/solidrock, +/area/surface/outpost/wall) +"rW" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/high, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/mining_main) +"rX" = ( +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"rY" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/exterior) +"rZ" = ( +/obj/structure/table/rack, +/obj/item/stack/cable_coil/silver, +/obj/item/stack/cable_coil/silver, +/obj/item/stack/cable_coil/silver, +/obj/item/stack/cable_coil/silver, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"sa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"sb" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Custodial Closet"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"sc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"sd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"se" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"sf" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 8 + }, +/obj/machinery/button/remote/blast_door{ + id = "production1"; + name = "Production Shutters"; + pixel_x = -20; + pixel_y = -10; + req_one_access = list(48) + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/mining_main/refinery) +"sg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"sh" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Outpost Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/corridor/left_lower) +"si" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/landing_north) +"sj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"sk" = ( +/obj/structure/table/steel, +/obj/random/tool, +/obj/random/tool, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"sl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"sm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"sn" = ( +/obj/structure/table/rack/shelf, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/item/device/gps/mining{ + pixel_x = -5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/item/device/gps/mining{ + pixel_x = 5 + }, +/obj/item/device/gps/mining{ + pixel_x = -5 + }, +/obj/item/device/gps/mining{ + pixel_x = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"so" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"sp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"sq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"sr" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"ss" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"st" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"su" = ( +/obj/effect/floor_decal/stairs{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/sauna) +"sv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"sw" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/search_and_rescue) +"sx" = ( +/obj/structure/closet/secure_closet/sar, +/obj/item/weapon/storage/pill_bottle/spaceacillin, +/obj/item/roller/adv, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"sy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"sz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Hallway 3"; + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"sA" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "production1"; + name = "Production Shutters" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/mining_main/refinery) +"sB" = ( +/obj/structure/table/marble, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"sC" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/storage) +"sD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "garage2"; + name = "Garage Shutters" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/right_one) +"sE" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"sF" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"sG" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"sH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"sI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"sJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"sK" = ( +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/vending/coffee{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"sL" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/emergency_storage) +"sM" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"sN" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_two) +"sO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/turcarpet, +/area/surface/outpost/main/dorms/dorm_3) +"sP" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"sQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Central Hall"; + dir = 1 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"sR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"sS" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/heavyduty, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"sT" = ( +/obj/structure/table/marble, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"sU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"sV" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/radproof{ + dir = 4; + id = "EngineReactor"; + rad_resistance = 150 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/engineering/reactor_smes) +"sW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_5) +"sX" = ( +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"sY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"sZ" = ( +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"ta" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"tb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Reactor Room East"; + dir = 4; + name = "Reactor_Room"; + network = list("Engine") + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"tc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"td" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_one) +"te" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room/smes_left) +"tf" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 9 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"tg" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/item/weapon/tool/screwdriver, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"th" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ti" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/fishing) +"tj" = ( +/turf/simulated/wall, +/area/surface/outpost/civilian/pool) +"tk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Airlock Access 1"; + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"tl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"tm" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/emergencystorage) +"tn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"to" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/rocks/sif/planetuse, +/area/surface/outside/plains/normal) +"tp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/landing_south) +"tq" = ( +/obj/structure/catwalk, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"tr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ts" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"tt" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"tu" = ( +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"tv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"tw" = ( +/obj/item/weapon/banner/nt, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/normal) +"tx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"ty" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"tz" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Master at Arms" + }, +/obj/machinery/door/firedoor/glass, +/obj/item/tape/engineering, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + 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/steel_grid, +/area/surface/outpost/security/maa) +"tA" = ( +/obj/machinery/disposal, +/obj/machinery/button/remote/airlock{ + id = "dorm1"; + name = "Door Lock Control"; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"tB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"tC" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"tD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"tE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"tF" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"tG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/computer/general_air_control/supermatter_core{ + input_tag = "rust_cooling_in"; + name = "Engine Cooling Control"; + output_tag = "rust_cooling_out"; + sensors = list("rustengine_sensor"="Engine Temperature") + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/reactor_smes) +"tH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/blue, +/area/surface/outpost/main/dorms/dorm_5) +"tI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"tJ" = ( +/obj/structure/boxingrope{ + dir = 8 + }, +/obj/structure/boxingrope, +/obj/structure/boxingrope{ + dir = 9; + layer = 4.1 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"tK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"tL" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + dir = 1; + id = "Reactor Gyrotron"; + id_tag = "Reactor Gyrotron" + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"tM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/right_two) +"tN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"tO" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"tP" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"tQ" = ( +/obj/structure/table/bench/wooden, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"tR" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"tS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"tT" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"tU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/power/hydromagnetic_trap, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"tV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"tW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"tX" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/structure/flora/pottedplant/bamboo, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"tY" = ( +/turf/simulated/floor/water/shoreline/corner{ + dir = 8 + }, +/area/surface/outside/ocean) +"tZ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"ua" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/stairs{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/sauna) +"ub" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/closet/toolcloset, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"uc" = ( +/obj/structure/closet/secure_closet/guncabinet/phase{ + name = "phase weapon cabinet"; + req_access = newlist(); + req_one_access = list(43,67) + }, +/obj/item/clothing/accessory/holster/hip, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Exploration Prep"; + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"ud" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 8; + id_tag = "Reactor Fuel Injectors" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"ue" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/landing_north) +"uf" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/starcaster_news, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"ug" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"uh" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/right_three) +"ui" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/bar) +"uj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/machinery/turretid/stun{ + check_records = 0; + control_area = "\improper Main Outpost Teleporter"; + name = "Main Outpost Teleporter turret control"; + pixel_y = 24; + req_access = list(19) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"uk" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor/multi_tile/glass, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ul" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"um" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/button/windowtint{ + id = "dorm_tint5"; + pixel_x = -22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"un" = ( +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"up" = ( +/obj/machinery/light/small{ + brightness_color = "#DA0205"; + brightness_power = 1; + brightness_range = 5; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"uq" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/emergencystorage) +"ur" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"us" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/refinery) +"ut" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"uu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Main Outpost"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"uv" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + name = "SMES Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/security/smes) +"uw" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/security) +"ux" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"uy" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/sign/christmas/lights, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"uz" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"uA" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"uB" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 8; + id_tag = "Reactor Fuel Injectors" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"uC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"uD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"uE" = ( +/turf/simulated/floor/water, +/area/surface/outside/lake/romsele) +"uF" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/gen_room) +"uG" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"uH" = ( +/obj/structure/snowman/borg, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"uJ" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"uK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"uL" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"uN" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"uO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/radproof{ + id = "EngineReactor"; + rad_resistance = 150 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"uP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"uQ" = ( +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"uR" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"uS" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"uT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"uU" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room/smes_left) +"uV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"uW" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"uX" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"uY" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"uZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"vb" = ( +/turf/simulated/wall, +/area/surface/outpost/main/showers) +"vc" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Showers" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/showers) +"vd" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"ve" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/one) +"vf" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/right_upper) +"vg" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/security) +"vh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"vi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"vj" = ( +/obj/effect/engine_setup/pump_max, +/obj/machinery/atmospherics/binary/pump/high_power, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"vk" = ( +/obj/machinery/light, +/obj/effect/landmark{ + name = "JoinLateSifPlains" + }, +/obj/effect/landmark/start{ + name = "Outsider" + }, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"vl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_three) +"vm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"vn" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"vo" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/storage) +"vp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main) +"vq" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_two) +"vr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"vs" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"vt" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"vv" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/restroom) +"vw" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"vx" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main4_airlock_control"; + name = "External Access Button" + }, +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/landing_north) +"vy" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/table/standard, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/gloves/boxing, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"vz" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Mining Production Room"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"vA" = ( +/obj/machinery/mineral/output, +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"vB" = ( +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/mountains) +"vC" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"vD" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"vE" = ( +/obj/structure/table/steel, +/obj/structure/closet/secure_closet/medical_wall/pills{ + pixel_y = 32 + }, +/obj/item/weapon/storage/pill_bottle/spaceacillin, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = 12 + }, +/obj/random/medical/pillbottle, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"vF" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"vG" = ( +/obj/structure/boxingrope{ + dir = 1 + }, +/obj/structure/boxingrope{ + dir = 8 + }, +/obj/structure/boxingrope{ + dir = 9 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"vH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/atmos_room) +"vI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"vJ" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_4) +"vK" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"vM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Hallway 1"; + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"vN" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"vO" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"vP" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"vQ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"vR" = ( +/obj/structure/boxingrope{ + dir = 1 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"vT" = ( +/obj/random/trash, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"vU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"vV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"vW" = ( +/obj/machinery/vending/cola{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"vY" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"vZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"wa" = ( +/obj/machinery/light_construct, +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/donut/empty, +/turf/simulated/floor/holofloor/tiled/dark, +/area/surface/outpost/security/maa) +"wb" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/fishing) +"wc" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"wd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"we" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"wf" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_external" + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/mining_main/refinery) +"wg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"wh" = ( +/turf/simulated/wall, +/area/surface/outpost/main/gym) +"wi" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"wj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"wk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"wl" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Long Range Teleporter Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gateway) +"wm" = ( +/obj/machinery/vending/coffee{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"wn" = ( +/obj/structure/table/standard, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/random_multi/single_item/hand_tele, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"wo" = ( +/obj/effect/floor_decal/borderfloor/corner, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"wp" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main6_airlock_exterior"; + locked = 1; + name = "Main Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main6_airlock_control"; + name = "External Access Button"; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/left_one) +"wq" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"wr" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"ws" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/left_three) +"wt" = ( +/obj/structure/closet/athletic_mixed, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"wu" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"wv" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"ww" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"wx" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"wy" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"wz" = ( +/obj/item/weapon/stool/padded, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"wA" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"wC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"wD" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"wE" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner/purple/bordercorner2, +/obj/structure/table/rack, +/obj/item/weapon/weldingtool, +/obj/item/weapon/weldingtool, +/obj/item/clothing/head/welding, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"wG" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/corridor/left_lower) +"wH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/remote/blast_door{ + id = "garage2"; + name = "Garage Shutter Control"; + pixel_x = -6; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"wI" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main2_airlock_control"; + name = "Internal Access Button"; + pixel_x = -26; + pixel_y = -6 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main2_airlock_interior"; + locked = 1; + name = "Main Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/right_one) +"wJ" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"wK" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "ENG_Outpost_airlock_control"; + name = "External Access Button"; + pixel_y = 26; + req_one_access = list(10) + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "ENG_Outpost_airlock_exterior"; + locked = 1; + name = "Engineering Outpost External" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/engineering/monitoring) +"wL" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"wM" = ( +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/exterior) +"wN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"wO" = ( +/obj/item/weapon/towel{ + color = "#00FFFF"; + name = "cyan towel"; + pixel_x = 2; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_5) +"wP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Foyeur"; + dir = 10; + name = "Engineering Outpost"; + network = list("Engineering") + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/light_switch{ + pixel_x = -21; + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"wQ" = ( +/obj/structure/table/bench/standard, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"wS" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"wT" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"wU" = ( +/obj/structure/toilet, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_3) +"wV" = ( +/obj/structure/closet/secure_closet{ + name = "hunting locker"; + req_one_access = list(1,43) + }, +/obj/item/weapon/gun/energy/netgun, +/obj/item/weapon/beartrap/hunting, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/item/clothing/shoes/boots/jungle, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Containment Pen"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"wW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"wX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"wY" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/reactor_smes) +"wZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"xa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"xb" = ( +/obj/machinery/vending/fishing{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange{ + dir = 9 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"xd" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"xe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"xg" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outpost/civilian/smes) +"xh" = ( +/turf/simulated/floor/water/shoreline{ + dir = 6 + }, +/area/surface/outside/ocean) +"xi" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/security/smes) +"xj" = ( +/obj/effect/overlay/snow/floor/pointy{ + dir = 8 + }, +/obj/effect/overlay/snow/floor/pointy, +/obj/structure/event/present, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"xk" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "mining1_airlock_control"; + name = "External Access Button"; + pixel_y = -26; + req_one_access = list(48) + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "mining1_airlock_exterior"; + locked = 1; + name = "Mining Outpost External" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/mining_main/storage) +"xl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"xm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_1) +"xn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"xo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"xp" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"xq" = ( +/turf/simulated/floor/wood{ + outdoors = 1 + }, +/area/surface/outside/path/plains) +"xr" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"xs" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"xt" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"xv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Airlock 3" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/left_three) +"xw" = ( +/obj/structure/mopbucket, +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"xx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"xy" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Reactor Room South"; + dir = 4; + name = "Reactor_Room"; + network = list("Engine") + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"xz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"xA" = ( +/obj/structure/bed/chair, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/start{ + name = "Explorer" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"xB" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/mineral/input, +/obj/structure/sign/warning/moving_parts{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/refinery) +"xC" = ( +/obj/item/stack/material/wood, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"xD" = ( +/obj/machinery/mineral/input, +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"xE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"xF" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"xG" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/search_and_rescue) +"xH" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/landing_south) +"xI" = ( +/obj/machinery/telecomms/relay/preset/southerncross/cave, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"xJ" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"xK" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"xL" = ( +/turf/simulated/floor/water, +/area/surface/outside/ocean) +"xM" = ( +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction/yjunction, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"xN" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap/nanotrasen, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_5) +"xO" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"xP" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/two) +"xQ" = ( +/obj/structure/fence/end, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"xR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Central Hall" + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"xS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_5) +"xT" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"xU" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 5; + pixel_y = 2 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"xV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"xW" = ( +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"xX" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/fishing) +"xY" = ( +/obj/structure/table/glass, +/obj/item/inflatable{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/inflatable{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/inflatable{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"xZ" = ( +/obj/structure/table/bench/standard, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/security/maa) +"ya" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"yb" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"yc" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"yd" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gateway) +"ye" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_alc, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"yg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"yh" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"yi" = ( +/obj/structure/table/bench/wooden, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"yj" = ( +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outside/plains/normal) +"yk" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"yl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gateway) +"ym" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_1) +"yn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + 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/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"yo" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/structure/dogbed, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"yp" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"yq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"yr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"ys" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_two) +"yt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 9; + icon_state = "2-9" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"yu" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_three) +"yv" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"yx" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_three) +"yy" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"yz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"yA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Airlock 2" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_two) +"yB" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8; + start_pressure = 4559.63 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"yC" = ( +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/light_switch{ + pixel_x = -21; + pixel_y = -21 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"yD" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"yE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"yF" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"yG" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"yH" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/exterior) +"yI" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"yJ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_two) +"yK" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"yL" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/dorms/dorm_5) +"yM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"yN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"yO" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/path/plains) +"yP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main1_airlock_control"; + pixel_x = -26; + pixel_y = -26; + tag_exterior_door = "main1_airlock_exterior"; + tag_interior_door = "main1_airlock_interior" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"yQ" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main) +"yR" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"yS" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"yT" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/normal) +"yV" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/weapon/mining_scanner, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/head/helmet/space/void/mining, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"yW" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"yX" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/monitoring) +"yY" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"yZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"za" = ( +/turf/simulated/floor/water/shoreline{ + dir = 4 + }, +/area/surface/outside/ocean) +"zb" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/atmos_room) +"zc" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/obj/random/soap, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_4) +"zd" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"ze" = ( +/obj/machinery/telecomms/relay/preset/southerncross/skylands, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"zf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"zg" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/mountains) +"zh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"zi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"zj" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"zk" = ( +/obj/machinery/mineral/unloading_machine, +/obj/structure/plasticflaps/mining, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/exterior) +"zl" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"zm" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/item/weapon/reagent_containers/food/drinks/britcup, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"zn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"zo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"zp" = ( +/obj/structure/bed/chair, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"zq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"zr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"zs" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/structure/coatrack, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"zt" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"zu" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"zv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"zw" = ( +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/normal) +"zx" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"zy" = ( +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"zz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"zB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"zC" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/surface/outside/plains/normal; + base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse; + landmark_tag = "outpost_s"; + name = "South of Outpost" + }, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"zD" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "dorm_tint6" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "dorm_tint6" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/dorms/dorm_6) +"zE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/recharger, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/weapon/tool/wrench, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"zF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"zG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"zH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"zI" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Fuel Storage Room"; + req_one_access = list(11) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"zJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"zK" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_one) +"zL" = ( +/obj/structure/table/steel, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"zM" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "civ1_airlock_control"; + name = "Internal Access Button"; + pixel_x = -26; + pixel_y = 5 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "civ1_airlock_interior"; + locked = 1; + name = "Civilian Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/civilian/fishing) +"zN" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"zO" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"zP" = ( +/obj/structure/table/steel, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/weapon/storage/toolbox/electrical, +/obj/item/clothing/shoes/galoshes, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"zQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"zR" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "dorm_tint5" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "dorm_tint5" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/dorms/dorm_5) +"zS" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/dorms/dorm_4) +"zU" = ( +/obj/effect/overlay/snow/floor/pointy{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/pointy, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"zV" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"zW" = ( +/obj/machinery/vending/snack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"zX" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"zY" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/purpledouble, +/turf/simulated/floor/carpet/purcarpet, +/area/surface/outpost/main/dorms/dorm_2) +"zZ" = ( +/obj/structure/fence/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"Aa" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/left_two) +"Ab" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outpost/civilian/smes) +"Ac" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Ad" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Ae" = ( +/obj/machinery/light, +/obj/item/weapon/book/manual/rust_engine, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Af" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Ag" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Ah" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/deck/cards, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"Ai" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Aj" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"Ak" = ( +/obj/effect/map_effect/portal/line/side_a, +/obj/effect/map_effect/perma_light/concentrated, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/exterior) +"Al" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/landing_north) +"Am" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/disposal, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"An" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Ao" = ( +/turf/simulated/floor/water, +/area/surface/outside/river/faxalven) +"Ap" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Aq" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Ar" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/backup_kit{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/box/cdeathalarm_kit, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"As" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/smes) +"Au" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Av" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/structure/flora/pottedplant/xmas, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Aw" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "SUBS - Right Wing"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"Ax" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"Ay" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Az" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main6_airlock_control"; + pixel_x = 26; + pixel_y = 26; + tag_exterior_door = "main6_airlock_exterior"; + tag_interior_door = "main6_airlock_interior" + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"AA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"AB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"AC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"AD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"AE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"AF" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"AG" = ( +/obj/structure/table/steel, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/blue, +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"AH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"AI" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"AJ" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/item/weapon/tool/wrench, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"AK" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/mining_main/refinery) +"AL" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/path/plains) +"AM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"AN" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"AO" = ( +/obj/effect/floor_decal/borderfloor/full, +/obj/effect/floor_decal/industrial/danger/full, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/shieldwallgen{ + anchored = 1; + req_access = list(1,43); + state = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"AP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/item/glass_jar, +/obj/structure/table/reinforced, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"AQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"AR" = ( +/obj/structure/table/steel, +/obj/random/tool, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"AS" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"AT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"AU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"AV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"AW" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/tcomm) +"AX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main) +"AY" = ( +/obj/effect/landmark/start{ + name = "Search and Rescue" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"AZ" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Ba" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"Bb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Bc" = ( +/obj/structure/catwalk, +/obj/machinery/power/terminal, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"Bd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Be" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"Bf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Bg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Bh" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/emergency_storage) +"Bi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Bj" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Bk" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/table/bench/steel, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"Bl" = ( +/turf/simulated/wall, +/area/surface/outpost/main/emergency_storage/one) +"Bm" = ( +/turf/simulated/wall, +/area/surface/outpost/main/dorms/dorm_5) +"Bn" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"Bo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Bp" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Bq" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Br" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/stairs{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/fishing) +"Bs" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/structure/sign/christmas/lights, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Bt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/borderfloor/corner, +/obj/item/weapon/extinguisher/mini, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Bu" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/fitness/punching_bag/clown, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Bv" = ( +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/smes) +"Bw" = ( +/obj/structure/boxingrope{ + dir = 4 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"Bx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"BA" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"BB" = ( +/obj/machinery/telecomms/relay/preset/southerncross/planet, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"BC" = ( +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"BD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"BE" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/sauna) +"BF" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"BG" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/machinery/light, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Landing South Airlock"; + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"BH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Airlock Access 1" + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"BI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Landing North Airlock Access" + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"BJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/structure/cable/blue{ + 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/monotile, +/area/surface/outpost/civilian/sauna) +"BK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/tools) +"BL" = ( +/obj/structure/table/woodentable, +/obj/item/toy/bouquet, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"BM" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"BN" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/ender{ + icon_state = "1-2"; + id = "surface_cave" + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/exterior) +"BO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_3) +"BP" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"BQ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/path/plains) +"BR" = ( +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"BS" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"BT" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/landing_north) +"BU" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/deep/pool, +/area/surface/outpost/civilian/pool) +"BV" = ( +/obj/machinery/alarm{ + dir = 8; + frequency = 1441; + pixel_x = 22 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"BW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"BX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"BY" = ( +/obj/structure/table/steel, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"BZ" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Cb" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main3_airlock_exterior"; + locked = 1; + name = "Landing South External" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/landing_south) +"Cc" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Search and Rescue Starboard"; + dir = 8 + }, +/obj/structure/window/reinforced{ + health = 1e+006; + req_access = list(5) + }, +/obj/structure/table/rack, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/southleft{ + dir = 8; + name = "EMT Supplies"; + req_access = list(5); + req_one_access = list(5,43) + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Cd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/landing_north) +"Ce" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Cf" = ( +/turf/simulated/floor/water, +/area/surface/outside/river/indalsalven) +"Cg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"Ch" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Reactor Room External Access"; + req_one_access = list(11) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/engineering/monitoring) +"Ci" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/surface/outside/plains/mountains) +"Cj" = ( +/obj/structure/event/present, +/obj/machinery/light/floortube{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"Ck" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"Cl" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/fusion_core/mapped{ + id_tag = "Outpost Fusion Core" + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"Cm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Cn" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/laundry) +"Co" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/effect/landmark{ + name = "JoinLateGateway" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"Cp" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"Cq" = ( +/obj/machinery/mech_recharger, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/corridor/right_upper) +"Cr" = ( +/obj/structure/closet/crate{ + name = "Tritium Storage" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/item/weapon/fuel_assembly/tritium, +/obj/item/weapon/fuel_assembly/tritium, +/obj/item/weapon/fuel_assembly/tritium, +/obj/machinery/light_switch{ + pixel_x = -11; + pixel_y = 21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"Cs" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Cu" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/auxiliary_storage) +"Cv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Cw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Cx" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"Cy" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Hallway 5"; + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"Cz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"CA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"CB" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 7; + tag_north = 2; + tag_south = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"CC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"CD" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"CE" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Emergency Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/civilian/emergency_storage) +"CF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"CG" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"CH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/visible/supply, +/obj/machinery/atmospherics/pipe/manifold4w/visible/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"CI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"CM" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"CN" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"CO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_6) +"CP" = ( +/obj/structure/closet/l3closet/janitor, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"CQ" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/storage) +"CR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"CS" = ( +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outpost/civilian/smes) +"CT" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/right_one) +"CU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"CW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"CX" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"CY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"CZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"Da" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gateway) +"Db" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Dc" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/exterior) +"Dd" = ( +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"De" = ( +/obj/machinery/mineral/unloading_machine, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"Df" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Dh" = ( +/obj/structure/fence{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Di" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Dj" = ( +/obj/machinery/atmospherics/unary/cryo_cell{ + layer = 3.3 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"Dk" = ( +/obj/structure/closet, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 5 + }, +/obj/item/weapon/storage/backpack/dufflebag, +/obj/item/clothing/shoes/boots/winter/climbing, +/obj/item/clothing/shoes/boots/winter/climbing, +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Fishing 1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Dl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/machinery/light{ + dir = 8 + }, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Dn" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_three) +"Do" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"Dp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"Dq" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"Dr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Ds" = ( +/obj/effect/map_effect/portal/master/side_a/plains_to_caves, +/turf/simulated/wall/solidrock, +/area/surface/outside/plains/mountains) +"Dt" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Du" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"Dv" = ( +/turf/simulated/wall, +/area/surface/outpost/main/dorms/dorm_6) +"Dw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Dx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/engineering{ + name = "SMES Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gen_room/smes_left) +"Dz" = ( +/obj/structure/closet/jcloset, +/obj/item/weapon/soap/nanotrasen, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"DA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass/hidden, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"DB" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"DC" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"DD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/machinery/vending/loadout/gadget, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"DE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"DG" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"DH" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"DJ" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"DK" = ( +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/obj/machinery/mineral/output, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"DL" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"DM" = ( +/obj/structure/closet/lasertag/blue, +/obj/item/stack/flag/blue, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"DN" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/bottle/wine, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"DO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"DP" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"DQ" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/normal) +"DT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"DU" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"DW" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost SMES Room"; + dir = 10; + name = "Engineering_Outpost"; + network = list("Engineering") + }, +/obj/machinery/light_switch{ + pixel_x = -21; + pixel_y = -11 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/reactor_smes) +"DX" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_three) +"DY" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_6) +"DZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Ea" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Eb" = ( +/obj/structure/fence, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ec" = ( +/obj/effect/step_trigger/teleporter/bridge/north_to_south, +/obj/structure/railing, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"Ed" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/fishing) +"Ee" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/device/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_three) +"Ef" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/sign/christmas/lights, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Eg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/surface/outpost/main/dorms/dorm_6) +"Eh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Ei" = ( +/obj/structure/table/steel, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/device/multitool, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/corridor/right_upper) +"Ej" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Ek" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/surface/outpost/security/maa) +"El" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"Em" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"En" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Eo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"Ep" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/left_one) +"Eq" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/landing_south) +"Er" = ( +/obj/machinery/telecomms/relay/preset/southerncross/wild, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"Es" = ( +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Et" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/reddouble, +/turf/simulated/floor/carpet, +/area/surface/outpost/main/dorms/dorm_6) +"Eu" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/exterior) +"Ev" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Ew" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Ex" = ( +/obj/effect/landmark{ + name = "bluespacerift" + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/path/plains) +"Ey" = ( +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"Ez" = ( +/obj/structure/bed/chair, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"EA" = ( +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"EB" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"EC" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ED" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"EE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"EF" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"EG" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/construction_area) +"EH" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/kitchen/utensil/fork/plastic{ + pixel_x = 7 + }, +/obj/item/weapon/reagent_containers/food/snacks/pastatomato, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"EI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"EJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Reactor Room Internal Access"; + req_one_access = list(11) + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/engineering/reactor_smes) +"EK" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"EL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"EM" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"EN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"EO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"EP" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/zone_divider, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"EQ" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/corridor/right_lower) +"ER" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"ES" = ( +/obj/machinery/teleport/station, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/teleporter) +"ET" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"EU" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"EV" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/sauna) +"EW" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"EX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"EY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/random/action_figure, +/obj/item/weapon/coin/silver, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"EZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Fa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Fb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"Fc" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining_north" + }, +/obj/machinery/mineral/input, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/mining_main/exterior) +"Fd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Fe" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"Ff" = ( +/obj/machinery/cablelayer, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Fg" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"Fi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Fj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Fk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"Fl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gym) +"Fm" = ( +/obj/structure/closet/secure_closet{ + name = "hunting locker"; + req_one_access = list(1,43) + }, +/obj/item/weapon/gun/energy/netgun, +/obj/item/weapon/beartrap/hunting, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/item/clothing/shoes/boots/jungle, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"Fn" = ( +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"Fo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Fp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Fq" = ( +/obj/machinery/disposal, +/obj/machinery/button/remote/airlock{ + id = "dorm6"; + name = "Door Lock Control"; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"Fr" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_one) +"Fs" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/h_chocolate, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"Ft" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_one) +"Fu" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/corner/brown/full, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"Fv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Fw" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outpost/civilian/smes) +"Fy" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Laundry 2"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Fz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"FA" = ( +/obj/item/weapon/banner/nt, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"FB" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"FC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"FD" = ( +/obj/effect/step_trigger/teleporter/bridge/north_to_south, +/obj/structure/railing, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/indalsalven) +"FE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"FF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main7_airlock_control"; + pixel_x = 26; + pixel_y = -26; + tag_exterior_door = "main7_airlock_exterior"; + tag_interior_door = "main7_airlock_interior" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"FH" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"FI" = ( +/obj/structure/table/reinforced, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/device/gps/security, +/turf/simulated/floor/holofloor/tiled/dark, +/area/surface/outpost/security/maa) +"FJ" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_2) +"FK" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/refinery) +"FL" = ( +/turf/simulated/wall, +/area/surface/outpost/main/dorms/dorm_3) +"FM" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"FN" = ( +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"FO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/symbol/em{ + pixel_x = 32 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"FP" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"FQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass/hidden, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"FR" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/civilian/pool) +"FS" = ( +/obj/structure/table/steel, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"FU" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/landing_north) +"FV" = ( +/obj/structure/boxingrope{ + dir = 8 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"FW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"FX" = ( +/obj/item/weapon/banner/nt, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"FY" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room/smes_right) +"FZ" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/structure/disposalpipe/segment, +/obj/random/powercell, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Ga" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/refinery) +"Gb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"Gc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Gd" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_one) +"Ge" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Gf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "civ2_airlock_control"; + pixel_x = 26; + pixel_y = 26; + tag_exterior_door = "civ2_airlock_exterior"; + tag_interior_door = "civ2_airlock_interior" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"Gg" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Gh" = ( +/obj/random/trash, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"Gi" = ( +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Left Wing"; + charge = 5e+006; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"Gj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"Gk" = ( +/obj/structure/snowman/spider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"Gl" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "SUBS - Security Checkpoint" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"Gm" = ( +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Gn" = ( +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Go" = ( +/obj/effect/overlay/snow/floor/pointy{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"Gp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"Gq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/landing_north) +"Gr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Gs" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water, +/area/surface/outside/ocean) +"Gt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"Gu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Gv" = ( +/turf/simulated/floor/water/shoreline/corner{ + dir = 4 + }, +/area/surface/outside/ocean) +"Gw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Gx" = ( +/obj/structure/table/steel, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/weapon/storage/toolbox/electrical, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"Gy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Gz" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"GA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"GB" = ( +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"GC" = ( +/obj/machinery/mech_recharger, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/corridor/right_upper) +"GD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"GE" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/path/plains) +"GF" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"GG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"GH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"GI" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/reactor_smes) +"GJ" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/right_two) +"GK" = ( +/obj/effect/floor_decal/stairs{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/fishing) +"GL" = ( +/obj/machinery/door/airlock/hatch{ + icon_state = "door_locked"; + id_tag = "engine_access_hatch"; + locked = 1; + name = "Reactor Core"; + rad_resistance = 150; + req_access = list(11) + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/engineering/reactor_smes) +"GM" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"GN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"GO" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/closet/secure_closet/engineering_welding, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"GP" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/tools) +"GQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"GR" = ( +/obj/effect/landmark/event_spawn/dronepod_landing, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/normal) +"GS" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"GT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Mining Storage"; + req_one_access = list(48) + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/uxstorage) +"GU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"GV" = ( +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"GW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"GX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"GY" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/item/device/flashlight/lamp, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/machinery/vending/wallmed1{ + name = "NanoMed Wall"; + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"GZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"Ha" = ( +/obj/effect/step_trigger/teleporter/bridge/east_to_west, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/faxalven) +"Hb" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/security) +"Hc" = ( +/obj/machinery/pipedispenser/disposal, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Hd" = ( +/obj/structure/closet/wardrobe/black, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"He" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Hf" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/device/geiger, +/obj/item/device/geiger, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/atmos_room) +"Hg" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/right_two) +"Hh" = ( +/turf/simulated/wall, +/area/surface/outpost/main/gen_room/smes_left) +"Hi" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Hj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"Hk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Hl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Hm" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Hn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"Ho" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/tools) +"Hp" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"Hq" = ( +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Hr" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/symbol/gu{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Hs" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"Ht" = ( +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Hu" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/fishing) +"Hv" = ( +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Hw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"Hx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_2) +"Hy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"Hz" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/gen_room/smes_right) +"HA" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"HB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/teleporter) +"HC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"HD" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/right_one) +"HE" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_one) +"HF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 6; + d2 = 8; + icon_state = "6-8" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"HG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"HH" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 8; + pixel_x = -5 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"HI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"HK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"HL" = ( +/obj/machinery/shower, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_5) +"HM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"HN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Hallway 2"; + dir = 4; + name = "security camera" + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"HO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"HP" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_two) +"HQ" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"HR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"HS" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"HU" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"HV" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water, +/area/surface/outside/river/indalsalven) +"HW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"HX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"HY" = ( +/obj/item/weapon/towel{ + color = "#FF6666"; + name = "light red towel" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_6) +"HZ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ib" = ( +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/storage) +"Ic" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Id" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ie" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/fishing) +"If" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm1"; + name = "Dorm 1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_1) +"Ig" = ( +/turf/simulated/floor/water/deep, +/area/surface/outside/ocean) +"Ih" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Ii" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/mining_main) +"Ij" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"Ik" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 2 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Il" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Im" = ( +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Mining"; + charge = 5e+006; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"In" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Ip" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/exploration) +"Iq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Ir" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/landing_south) +"Is" = ( +/obj/item/weapon/towel{ + color = "#90ee90"; + name = "green towel" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_3) +"It" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"Iu" = ( +/obj/machinery/disposal, +/obj/machinery/button/remote/airlock{ + id = "dorm2"; + name = "Door Lock Control"; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"Iv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"Iw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Ix" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/exploration/containment) +"Iy" = ( +/obj/machinery/mineral/processing_unit_console, +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/refinery) +"Iz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"IA" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"IC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"ID" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main4_airlock_exterior"; + locked = 1; + name = "Landing North External" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/landing_north) +"IE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/tools) +"IF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_3) +"IG" = ( +/obj/effect/overmap/visitable/planet/Sif, +/turf/simulated/mineral/sif, +/area/surface/outside/plains/mountains) +"IH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"II" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/search_and_rescue) +"IJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"IK" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_two) +"IM" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"IN" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Laundry" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/machinery/door/firedoor/multi_tile/glass, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/laundry) +"IO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"IP" = ( +/obj/structure/closet/secure_closet/guncabinet/phase{ + req_one_access = null + }, +/obj/item/clothing/accessory/holster/hip, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"IQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/left_lower) +"IR" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/item/clothing/accessory/holster/hip, +/obj/item/device/cataloguer, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"IS" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"IT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"IU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"IV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central4, +/obj/machinery/conveyor_switch/oneway{ + id = "mining_internal"; + name = "mining conveyor" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"IW" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"IX" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main2_airlock_control"; + pixel_x = -26; + pixel_y = -26; + tag_exterior_door = "main2_airlock_exterior"; + tag_interior_door = "main2_airlock_interior" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"IY" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 5 + }, +/obj/machinery/button/remote/blast_door{ + id = "production1"; + name = "Production Shutters"; + pixel_x = 22; + req_one_access = list(48) + }, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"IZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Ja" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Jb" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "SUBS - Civilian"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"Jc" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Jd" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Teleporter"; + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"Je" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_three) +"Jf" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/hologram/holopad, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Jg" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_one) +"Jh" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm2"; + name = "Dorm 2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_2) +"Ji" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Jj" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"Jk" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "SMES Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/civilian/smes) +"Jl" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Jm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Jn" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"Jo" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main3_airlock_interior"; + locked = 1; + name = "Landing South Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/landing_south) +"Jp" = ( +/obj/effect/overlay/snow/floor/pointy{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/pointy{ + dir = 1 + }, +/obj/structure/event/present, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"Jq" = ( +/turf/simulated/wall, +/area/surface/outpost/main/corridor) +"Js" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/recharger, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Jt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Ju" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Jv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Jw" = ( +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/security) +"Jx" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/sauna) +"Jy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "mining2_airlock_control"; + pixel_x = -26; + pixel_y = -26; + req_one_access = list(48,10); + tag_exterior_door = "mining2_airlock_exterior"; + tag_interior_door = "mining2_airlock_interior" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"Jz" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"JA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"JB" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Teleporter"; + dir = 5 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"JC" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"JD" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"JE" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/pool) +"JF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"JG" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"JH" = ( +/obj/structure/sign/warning/caution{ + desc = "This appears to be a sign warning people that the other side is dangerous. It also says that NanoTrasen cannot guarantee your safety beyond this point."; + name = "\improper WARNING: NO ACCESS" + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/surface/outpost/wall) +"JI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"JJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"JK" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/reactor_smes) +"JL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"JM" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"JN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"JO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Mining Storage"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"JP" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_two) +"JQ" = ( +/obj/effect/step_trigger/teleporter/bridge/south_to_north, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/indalsalven) +"JR" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"JS" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"JT" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"JU" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_3) +"JV" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 8 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"JW" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room/smes_right) +"JX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/outpost/main/dorms/dorm_4) +"JY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"JZ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges, +/obj/effect/zone_divider, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ka" = ( +/turf/simulated/floor/water/shoreline{ + dir = 10 + }, +/area/surface/outside/ocean) +"Kb" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/laundry) +"Kd" = ( +/turf/simulated/floor/water/shoreline/corner, +/area/surface/outside/ocean) +"Ke" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/civilian/sauna) +"Kf" = ( +/obj/structure/table/steel, +/obj/random/junk, +/obj/random/maintenance/engineering, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"Kg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Kh" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/civilian/sauna) +"Ki" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"Kj" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Kk" = ( +/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Kl" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Km" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Kn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"Ko" = ( +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Kp" = ( +/obj/effect/landmark/start{ + name = "Explorer" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Kq" = ( +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Kr" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Reactor Room External Access"; + req_one_access = list(11) + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/engineering/atmos_room) +"Ks" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Kt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/landing_south) +"Ku" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/gateway) +"Kv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"Kw" = ( +/obj/effect/step_trigger/teleporter/bridge/west_to_east, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/indalsalven) +"Kx" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Ky" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gateway) +"Kz" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath, +/obj/structure/flora/pottedplant/xmas, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"KA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"KB" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/surface/outpost/wall) +"KC" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"KD" = ( +/obj/structure/table/bench/standard, +/obj/item/device/radio/intercom/department/security{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/security/maa) +"KE" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/effect/overlay/snow/floor, +/obj/effect/zone_divider, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"KF" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"KG" = ( +/obj/structure/table/rack/shelf, +/turf/simulated/floor/holofloor/tiled/dark, +/area/surface/outpost/security/maa) +"KH" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"KI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/oracarpet, +/area/surface/outpost/main/dorms/dorm_1) +"KJ" = ( +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outpost/civilian/smes) +"KK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"KL" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"KM" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"KN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/machinery/door/firedoor/multi_tile/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Production Area"; + req_one_access = list(48) + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main) +"KO" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"KP" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/atmos_room) +"KQ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"KR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"KS" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"KT" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"KU" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Emergency Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/mining_main/emergencystorage) +"KV" = ( +/obj/structure/bed/chair/comfy/black, +/obj/machinery/button/windowtint{ + id = "dorm_tint6"; + pixel_x = -22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"KW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/power/terminal, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"KX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"KY" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"KZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"La" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"Lb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Lc" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"Ld" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/engine{ + dir = 1; + external_pressure_bound = 100; + external_pressure_bound_default = 0; + frequency = 1438; + icon_state = "map_vent_in"; + id_tag = "rust_cooling_out"; + initialize_directions = 1; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"Le" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Lf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"Lg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Lh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"Li" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"Lj" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Lk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Ll" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/tools) +"Lm" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/emergency_storage) +"Ln" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/boxingrope{ + dir = 1 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"Lo" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Lp" = ( +/obj/structure/table/steel, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"Lq" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/blast/radproof{ + dir = 4; + rad_resistance = 150 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/monitoring) +"Lr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"Ls" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Lt" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"Lu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + name = "Atmos Room"; + req_one_access = list(12) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/mining_main/tools) +"Lv" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/outpost/main/dorms/dorm_4) +"Lw" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/monitoring) +"Lx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Ly" = ( +/obj/structure/fence/end{ + dir = 8 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"Lz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"LA" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"LC" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall, +/area/surface/outpost/main/gen_room/smes_right) +"LD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"LE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/right_one) +"LF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "sauna_tint1" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"LG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"LH" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"LI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"LJ" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"LK" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main6_airlock_control"; + name = "Internal Access Button"; + pixel_x = 26; + pixel_y = 5 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main6_airlock_interior"; + locked = 1; + name = "Main Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/left_one) +"LL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"LM" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"LN" = ( +/turf/simulated/wall, +/area/surface/outpost/civilian/emergency_storage) +"LO" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/vending/fitness{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"LP" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/structure/flora/pottedplant/flower, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"LQ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"LR" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"LS" = ( +/obj/effect/step_trigger/teleporter/bridge/west_to_east, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/faxalven) +"LT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"LU" = ( +/obj/structure/cable/blue, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + operating = 0; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"LV" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Long Range Teleporter Access" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gateway) +"LW" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"LX" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"LY" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"LZ" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Ma" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/corridor/right_upper) +"Mb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"Mc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Me" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -5; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Mf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Mg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/right_lower) +"Mh" = ( +/turf/simulated/floor/water/shoreline{ + dir = 5 + }, +/area/surface/outside/ocean) +"Mi" = ( +/obj/structure/table/steel, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Mj" = ( +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"Mk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Ml" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Mm" = ( +/obj/structure/table/bench/standard, +/obj/item/device/radio/intercom/department/medbay{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"Mn" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Mo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Mp" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Mq" = ( +/obj/item/clothing/under/bathrobe, +/obj/item/clothing/under/bathrobe, +/obj/item/clothing/under/bathrobe, +/obj/structure/closet/cabinet, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"Mr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"Ms" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Mt" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"Mu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"Mv" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Mx" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + name = "SMES Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gen_room/smes_right) +"My" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Gym" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/gym) +"Mz" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"MA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"MB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Medical Supplies"; + req_access = null; + req_one_access = list(5,43) + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"MC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"MD" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/zone_divider, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"ME" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/laundry) +"MF" = ( +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"MG" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/one) +"MH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"MI" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"MJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"MK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"ML" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/refinery) +"MM" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/corner/orange{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"MN" = ( +/turf/simulated/wall, +/area/surface/outpost/main/laundry) +"MO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"MP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"MQ" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"MR" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"MS" = ( +/obj/effect/overlay/snow/floor/pointy, +/obj/effect/overlay/snow/floor/pointy{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"MT" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/radproof{ + dir = 4; + rad_resistance = 150 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/monitoring) +"MU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Outpost Laundry" + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"MV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/pool) +"MW" = ( +/obj/structure/table/steel, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = -22 + }, +/obj/structure/cable/blue, +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"MX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"MY" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"MZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Na" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/outpost) +"Nb" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"Nc" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/highsecurity{ + name = "Telecommunication Hub"; + req_one_access = list(61) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/tcomm) +"Nd" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Ne" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"Nf" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Nh" = ( +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Sauna"; + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"Ni" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_one) +"Nj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"Nk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Hallway 3"; + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Nl" = ( +/obj/effect/overlay/snow/floor/pointy{ + dir = 1 + }, +/obj/effect/overlay/snow/floor/pointy{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"Nm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Nn" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/fishing) +"No" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"Np" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Nq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Nr" = ( +/obj/machinery/alarm{ + dir = 8; + frequency = 1441; + pixel_x = 22 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Ns" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Nt" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + frequency = 1441; + pixel_x = 22 + }, +/obj/structure/sign/christmas/lights, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Nu" = ( +/obj/machinery/disposal, +/obj/machinery/button/remote/airlock{ + id = "dorm5"; + name = "Door Lock Control"; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"Nv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Nw" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_three) +"Nx" = ( +/obj/structure/table/steel, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Ny" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"Nz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_4) +"NA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"NB" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_two) +"NC" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"NE" = ( +/obj/machinery/disposal, +/obj/machinery/button/remote/airlock{ + id = "dorm4"; + name = "Door Lock Control"; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"NF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"NG" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/right_three) +"NH" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"NI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"NJ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"NK" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"NL" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"NM" = ( +/obj/structure/fence/end{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"NN" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/refinery) +"NO" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/janitor) +"NP" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"NQ" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"NR" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/exterior) +"NS" = ( +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/path/plains) +"NU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"NV" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/landing_north) +"NW" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"NX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"NY" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/smes) +"NZ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 5; + d2 = 6; + icon_state = "5-6" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Oa" = ( +/obj/structure/fence, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ob" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Oc" = ( +/obj/structure/table/bench/steel, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/path/plains) +"Od" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Airlock 2" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_two) +"Oe" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm3"; + name = "Dorm 3" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_3) +"Of" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/security/maa) +"Oh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/structure/closet, +/obj/effect/floor_decal/corner/white/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Oi" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Oj" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"Ok" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_one) +"Ol" = ( +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Om" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"On" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Oo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Op" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"Oq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Os" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/water/deep/pool, +/area/surface/outpost/civilian/pool) +"Ot" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Ou" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Ov" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Ow" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"Ox" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "sec1_airlock_exterior"; + locked = 1; + name = "Security Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "sec1_airlock_control"; + name = "External Access Button"; + pixel_y = 26; + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/security) +"Oy" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"OA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/landing_south) +"OB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "garage1"; + name = "Garage Shutters" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/right_two) +"OC" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"OD" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Airlock Access 1"; + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"OE" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"OF" = ( +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"OH" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main1_airlock_control"; + name = "Internal Access Button"; + pixel_x = -6; + pixel_y = -26 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main1_airlock_interior"; + locked = 1; + name = "Main Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/right_two) +"OI" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main4_airlock_control"; + pixel_x = -5; + tag_exterior_door = "main4_airlock_exterior"; + tag_interior_door = "main4_airlock_interior" + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main4_airlock_control"; + name = "Internal Access Button"; + pixel_x = 5 + }, +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/landing_north) +"OJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"OK" = ( +/obj/effect/map_effect/portal/master/side_a/plains_to_caves/river, +/turf/simulated/wall/solidrock, +/area/surface/outside/plains/mountains) +"OL" = ( +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"OM" = ( +/obj/structure/fitness/punchingbag, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"ON" = ( +/obj/structure/table/standard, +/obj/item/stack/material/steel{ + amount = 10 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"OO" = ( +/obj/item/weapon/towel{ + color = "#FF8C00"; + name = "orange towel" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_1) +"OP" = ( +/obj/structure/showcase/sign{ + desc = "This appears to be a sign warning people that it is dangerous outside. Further reading suggests being properly equipped or acquiring an umbrella."; + name = "WARNING: HAIL STORMS" + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"OQ" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/emergencystorage) +"OR" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"OS" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/monitoring) +"OT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"OU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"OV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"OW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"OX" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 4 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"OY" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/gen_room/smes_left) +"OZ" = ( +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/outpost/main/laundry) +"Pa" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"Pb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"Pc" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "mining2_airlock_control"; + name = "Internal Access Button"; + pixel_x = -26; + pixel_y = -6; + req_one_access = list(48,10) + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "mining2_airlock_interior"; + locked = 1; + name = "Mining Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/mining_main/tools) +"Pd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Pe" = ( +/obj/machinery/door/firedoor/multi_tile/glass, +/obj/machinery/door/airlock/multi_tile/metal{ + name = "Sauna" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/sauna) +"Pf" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/pool) +"Pg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/exploration/containment) +"Ph" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/obj/machinery/light{ + dir = 4 + }, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Pi" = ( +/obj/structure/fence/cut/large, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"Pj" = ( +/obj/structure/table/bench/marble, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Pk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/corridor/left_upper) +"Pl" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"Pm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"Pn" = ( +/obj/structure/event/present, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"Po" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ps" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Pt" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Pu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Pv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/engineering{ + name = "SMES Access" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gen_room) +"Pw" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"Py" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Pz" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"PA" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + dir = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/item/clothing/gloves/yellow, +/obj/item/device/multitool{ + pixel_x = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/reactor_smes) +"PB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"PC" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"PD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"PE" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"PF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"PG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"PJ" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"PK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/structure/closet/crate, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"PL" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/right_three) +"PM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"PN" = ( +/obj/machinery/floodlight, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"PO" = ( +/turf/simulated/floor/water/shoreline{ + dir = 1 + }, +/area/surface/outside/ocean) +"PP" = ( +/obj/structure/table/glass, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"PQ" = ( +/obj/machinery/pipedispenser, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"PR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"PS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"PT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"PU" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water, +/area/surface/outside/river/faxalven) +"PV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"PW" = ( +/obj/effect/step_trigger/teleporter/bridge/east_to_west, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/indalsalven) +"PX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/teleporter) +"PY" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall, +/area/surface/outpost/civilian/smes) +"PZ" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Search and Rescue"; + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/machinery/door/firedoor/multi_tile/glass, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/search_and_rescue) +"Qa" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Qb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Qc" = ( +/obj/effect/overlay/snow/floor/pointy, +/obj/effect/overlay/snow/floor/pointy{ + dir = 4 + }, +/obj/structure/event/present, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"Qd" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Qe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/radproof{ + id = "EngineReactor"; + rad_resistance = 150 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Qf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/atmos_room) +"Qg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"Qh" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/belt/utility/full, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"Qi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/roller{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/item/roller{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/roller{ + pixel_x = -8; + pixel_y = 1 + }, +/obj/item/roller{ + pixel_x = -8; + pixel_y = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Qj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/monitoring) +"Qk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "pen"; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"Ql" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Qm" = ( +/obj/structure/loot_pile/christmas_tree{ + desc = "A large Christmas tree heavily decorated in holiday ornaments, there are various present stacked up high. You spot your name on one of them, it's from Santaur!" + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outpost/civilian/smes) +"Qn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Qo" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/restroom) +"Qp" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Qq" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Qr" = ( +/obj/structure/fence, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"Qt" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"Qu" = ( +/obj/random/junk, +/obj/random/junk, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/surface/outpost/main/laundry) +"Qv" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Air Tank Bypass Pump" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Qx" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/smes) +"Qy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Qz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"QA" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"QB" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/camera/network/security{ + c_tag = "SO - Security Checkpoint"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"QC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"QD" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Airlock Access 3"; + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"QG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + 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/tiled, +/area/surface/outpost/security) +"QH" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"QI" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/heavyduty{ + d2 = 2; + dir = 4; + icon_state = "0-4" + }, +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"QJ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/right_lower) +"QK" = ( +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outpost/civilian/smes) +"QL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"QM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"QN" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/emergencystorage) +"QO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/plaque, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/corridor/right_upper) +"QP" = ( +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/auxiliary_storage) +"QQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Hallway 1" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"QR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"QS" = ( +/obj/structure/fence, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"QT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "production1"; + name = "Production Shutters" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/mining_main/refinery) +"QU" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"QV" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm5"; + name = "Dorm 5" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_5) +"QW" = ( +/turf/simulated/wall, +/area/surface/outpost/main/gateway) +"QX" = ( +/obj/item/weapon/stool/padded, +/obj/structure/boxingrope{ + dir = 4 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"QY" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"QZ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/structure/dogbed, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"Ra" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main3_airlock_control"; + pixel_x = -5; + tag_exterior_door = "main3_airlock_exterior"; + tag_interior_door = "main3_airlock_interior" + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main3_airlock_control"; + name = "Internal Access Button"; + pixel_x = 5 + }, +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/landing_south) +"Rb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/machinery/recharge_station, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Rc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"Rd" = ( +/obj/structure/boxingrope{ + dir = 4 + }, +/obj/structure/boxingrope, +/obj/structure/boxingrope{ + dir = 6; + layer = 4.1 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"Re" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Rf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Rg" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm6"; + name = "Dorm 6" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_6) +"Rh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"Ri" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Rj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Rk" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/one) +"Rl" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/weapon/handcuffs/fuzzy, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"Rm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Rn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Ro" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Rp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/remote/blast_door{ + id = "garage1"; + name = "Garage Shutter Control"; + pixel_x = -6; + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"Rq" = ( +/obj/machinery/computer/gyrotron_control{ + id_tag = "Reactor Gyrotron" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 9 + }, +/obj/machinery/button/remote/blast_door/radproof{ + id = "EngineReactor"; + name = "Reactor Blast Doors"; + pixel_x = -25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/reactor_smes) +"Rr" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/surface/outside/lake/romsele) +"Rs" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Ru" = ( +/obj/machinery/vending/loadout/costume, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Rv" = ( +/obj/machinery/computer/fusion_fuel_control{ + id_tag = "Reactor Fuel Injectors" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/reactor_smes) +"Rw" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_two) +"Rx" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Landing North Airlock" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"Ry" = ( +/obj/item/weapon/towel{ + color = "#b5651d"; + name = "brown towel" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_4) +"Rz" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Hallway 1"; + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"RA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"RB" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/emergency_storage) +"RC" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main5_airlock_exterior"; + locked = 1; + name = "Main Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main5_airlock_control"; + name = "External Access Button"; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/right_three) +"RD" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/item/clothing/accessory/stethoscope, +/obj/item/device/defib_kit/loaded, +/obj/item/device/defib_kit/compact/loaded, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"RE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"RF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/landing_south) +"RG" = ( +/obj/machinery/vending/loadout/accessory, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"RH" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"RI" = ( +/obj/structure/table/steel, +/obj/structure/closet/hydrant{ + pixel_y = -32 + }, +/obj/item/clothing/glasses/meson, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"RJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"RK" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/path/plains) +"RL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"RN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"RO" = ( +/obj/effect/step_trigger/teleporter/bridge/west_to_east, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/indalsalven) +"RP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/vehicle/train/engine/quadbike{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"RQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Airlock 1"; + dir = 8 + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_one) +"RR" = ( +/obj/effect/overlay/snow/floor/pointy, +/obj/effect/overlay/snow/floor/pointy{ + dir = 4 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"RS" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"RT" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 8 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"RU" = ( +/obj/item/weapon/stool/padded, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"RV" = ( +/obj/structure/table/glass, +/obj/item/clothing/mask/snorkel, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"RW" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/blue, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"RX" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/landing_north) +"RY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 6; + d2 = 9; + icon_state = "6-9" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"RZ" = ( +/obj/machinery/computer/teleporter{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/teleporter) +"Sa" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Sb" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/uxstorage) +"Sc" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_one) +"Sd" = ( +/obj/machinery/vending/nifsoft_shop{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Se" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"Sf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/blue, +/area/surface/outpost/main/dorms/dorm_5) +"Sg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Sh" = ( +/obj/machinery/mineral/stacking_unit_console, +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/refinery) +"Si" = ( +/obj/machinery/disposal, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Sj" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining_internal" + }, +/obj/structure/plasticflaps/mining, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"Sk" = ( +/obj/effect/zone_divider, +/turf/simulated/shuttle/wall/voidcraft, +/area/surface/outpost/wall) +"Sl" = ( +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outpost/civilian/smes) +"Sm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Sn" = ( +/obj/machinery/light, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"So" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_two) +"Sp" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Sq" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Sr" = ( +/obj/structure/fitness/weightlifter, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"Ss" = ( +/obj/structure/janitorialcart, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"Su" = ( +/obj/machinery/computer/secure_data, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"Sv" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"Sw" = ( +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outpost/civilian/smes) +"Sx" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Sy" = ( +/obj/machinery/fitness/heavy/lifter, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"Sz" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/landing_south) +"SA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"SB" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"SC" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"SD" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"SE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "sauna_tint2" + }, +/obj/structure/window/reinforced/polarized{ + id = "sauna_tint2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"SF" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/bottle/champagne, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"SG" = ( +/obj/effect/landmark{ + name = "JoinLateSifPlains" + }, +/obj/effect/landmark/start{ + name = "Outsider" + }, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"SH" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle/candelabra, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"SJ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main) +"SK" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/tools) +"SL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Hallway 5"; + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"SN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"SO" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/monitoring) +"SP" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gym) +"SQ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/towel{ + color = "#FF6666"; + name = "light red towel" + }, +/obj/item/weapon/towel{ + color = "#FF6666"; + name = "light red towel"; + pixel_y = 3 + }, +/obj/item/weapon/towel{ + color = "#FF6666"; + name = "light red towel"; + pixel_y = 6 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"SR" = ( +/obj/structure/dispenser{ + phorontanks = 0 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"SS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"ST" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Gateway"; + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"SU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/overlay/snow/floor, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/path/plains) +"SV" = ( +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"SW" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/landing_south) +"SX" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"SY" = ( +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/surface/outside/plains/mountains) +"SZ" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/surface/outpost/main/dorms/dorm_1) +"Ta" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/flora/pottedplant, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Tc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Te" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/dorms/dorm_3) +"Tf" = ( +/obj/machinery/hyperpad/centre{ + map_pad_id = "pad_1_away"; + map_pad_link_id = "pad_1_station" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Tg" = ( +/obj/structure/closet/wardrobe/xenos, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Th" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Ti" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Tj" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Tk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/computer/timeclock/premade/east, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Tl" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/gen_room) +"Tm" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"To" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Tq" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/orange/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Tr" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/item/weapon/storage/fancy/markers, +/obj/random/toy, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Ts" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"Tt" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Mining Hallway 2"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Tu" = ( +/obj/structure/table, +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Tv" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm4"; + name = "Dorm 4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_4) +"Tw" = ( +/obj/structure/table/steel, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/tool/crowbar, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/machinery/light, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Tool Storage"; + dir = 4 + }, +/obj/item/device/multitool, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"Tx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Ty" = ( +/obj/machinery/shower, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_1) +"Tz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/suit_cycler/mining, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"TA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"TB" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/two) +"TC" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/obj/structure/closet/secure_closet/pilot, +/obj/item/device/cataloguer/compact, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"TD" = ( +/obj/structure/fence{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"TE" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"TF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/closet/toolcloset, +/obj/item/weapon/storage/belt, +/obj/item/weapon/storage/belt, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"TG" = ( +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"TH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"TI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"TK" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outpost/civilian/smes) +"TL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"TM" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"TN" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/device/geiger, +/obj/item/device/geiger, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"TO" = ( +/turf/simulated/wall, +/area/surface/outpost/main/restroom) +"TP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"TQ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_three) +"TR" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/start{ + name = "Explorer" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"TS" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/exterior) +"TT" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main4_airlock_interior"; + locked = 1; + name = "Landing North Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/landing_north) +"TU" = ( +/obj/machinery/atmospherics/unary/freezer{ + icon_state = "freezer" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"TV" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"TW" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/item/device/binoculars, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/item/device/cataloguer, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"TX" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_two) +"TZ" = ( +/obj/structure/closet/crate/secure/gear{ + name = "explorer crate"; + req_access = list(43) + }, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/obj/effect/floor_decal/industrial/outline, +/obj/item/clothing/head/welding, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/corridor/right_upper) +"Ua" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Ub" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Uc" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"Ud" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Ue" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"Uf" = ( +/obj/structure/closet, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Ug" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Uh" = ( +/turf/simulated/wall, +/area/surface/outpost/civilian/sauna) +"Ui" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/left_two) +"Uj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Uk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Ul" = ( +/obj/structure/table/bench/wooden, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"Um" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "mining1_airlock_control"; + pixel_x = 26; + pixel_y = -26; + req_one_access = list(48); + tag_exterior_door = "mining1_airlock_exterior"; + tag_interior_door = "mining1_airlock_interior" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Uo" = ( +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 1; + id_tag = "Reactor Fuel Injectors" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Up" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"Uq" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/water/deep/pool, +/area/surface/outpost/civilian/pool) +"Ur" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Us" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"Ut" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Uu" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/uxstorage) +"Uv" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"Uw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"Ux" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Uy" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/teleporter) +"Uz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"UA" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_one) +"UB" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"UC" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/radproof{ + id = "EngineReactor"; + rad_resistance = 150 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/engineering/reactor_smes) +"UD" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/power/hydromagnetic_trap, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"UE" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main2_airlock_exterior"; + locked = 1; + name = "Main Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main2_airlock_control"; + name = "External Access Button"; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/right_one) +"UF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"UG" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"UH" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_one) +"UI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"UJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"UK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"UL" = ( +/obj/structure/cable/blue, +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Security"; + charge = 5e+006; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"UM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"UN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"UO" = ( +/obj/machinery/vending/boozeomat, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"UP" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/normal) +"UQ" = ( +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Outpost Reactor Power"; + name_tag = "Outpost Reactor Power" + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"UR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"US" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"UT" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"UU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/closet/crate, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Mining Stocking"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"UV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"UW" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/one) +"UY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"UZ" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Va" = ( +/obj/machinery/computer/fusion_core_control{ + id_tag = "Outpost Fusion Core" + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Reactor Monitoring"; + name = "Engineering_Outpost"; + network = list("Engineering") + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/reactor_smes) +"Vb" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"Vc" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Vd" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Ve" = ( +/obj/structure/fence/cut/medium, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"Vf" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Vg" = ( +/turf/simulated/wall/solidrock, +/area/surface/outside/plains/mountains) +"Vh" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/frame/extinguisher_cabinet, +/obj/item/weapon/extinguisher, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"Vi" = ( +/obj/machinery/light/floortube{ + dir = 4 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"Vj" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Vk" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/storage) +"Vm" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/storage) +"Vn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main8_airlock_control"; + pixel_x = -26; + pixel_y = -26; + tag_exterior_door = "main8_airlock_exterior"; + tag_interior_door = "main8_airlock_interior" + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"Vo" = ( +/obj/machinery/mineral/unloading_machine{ + icon_state = "unloader-corner" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"Vp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Vq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/monitoring) +"Vr" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Vs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Vt" = ( +/obj/machinery/button/remote/blast_door/radproof{ + name = "Engine Monitoring Room Blast Doors"; + pixel_x = 23 + }, +/obj/machinery/computer/security/engineering, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/reactor_smes) +"Vu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Vv" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Vw" = ( +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Vy" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Vz" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"VA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/outpost/main/dorms/dorm_4) +"VB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"VC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Landing South Airlock Access"; + dir = 1 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"VD" = ( +/obj/effect/step_trigger/teleporter/bridge/south_to_north, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"VE" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"VF" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_two) +"VG" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"VH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"VI" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Emergency Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/emergency_storage/two) +"VJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"VK" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/deep/pool, +/area/surface/outpost/civilian/pool) +"VL" = ( +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/outpost) +"VM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"VN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"VO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"VP" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room) +"VQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/left_lower) +"VR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"VS" = ( +/obj/item/weapon/stool/padded, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"VT" = ( +/obj/structure/table/steel, +/obj/random/junk, +/obj/random/action_figure, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"VU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/mineral/equipment_vendor{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"VV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"VW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"VX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"VY" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Pool 1"; + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"VZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"Wa" = ( +/obj/machinery/scale, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"Wb" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/gym) +"Wc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"We" = ( +/obj/structure/closet/crate{ + name = "Deuterium Storage" + }, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"Wg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Wh" = ( +/obj/machinery/vending/nifsoft_shop{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Wi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"Wj" = ( +/obj/machinery/vending/loadout/overwear, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Wk" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/sign/christmas/lights, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Wl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_4) +"Wm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/table/steel, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Wn" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/sif, +/area/surface/outside/plains/mountains) +"Wo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"Wp" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Wq" = ( +/obj/structure/table/rack, +/obj/item/weapon/material/fishing_rod/modern/cheap, +/obj/item/weapon/material/fishing_rod/modern/cheap, +/obj/item/weapon/material/fishing_rod/modern/cheap, +/obj/item/weapon/material/fishing_rod/modern/cheap, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Wr" = ( +/obj/machinery/door/firedoor/glass, +/obj/item/tape/engineering, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/restroom) +"Ws" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Wt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Wu" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_three) +"Wv" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ww" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Wx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/pool) +"Wy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Airlock Access 2"; + dir = 1 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"Wz" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "ENG_Outpost_airlock_control"; + name = "Internal Access Button"; + pixel_x = 5; + pixel_y = 26; + req_one_access = list(10) + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "ENG_Outpost_airlock_interior"; + locked = 1; + name = "Engineering Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/engineering/monitoring) +"WA" = ( +/obj/structure/closet/secure_closet/sar, +/obj/item/weapon/storage/pill_bottle/spaceacillin, +/obj/item/roller/adv, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"WB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/atmos_room) +"WC" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"WD" = ( +/obj/random/toolbox, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"WE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"WG" = ( +/obj/structure/flora/pottedplant/xmas, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"WH" = ( +/obj/machinery/vending/cola{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"WI" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/device/geiger, +/obj/item/device/geiger, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"WJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"WK" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main1_airlock_exterior"; + locked = 1; + name = "Main Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main1_airlock_control"; + name = "External Access Button"; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/right_two) +"WL" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"WM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/exploration/containment) +"WN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/teleporter) +"WO" = ( +/obj/machinery/disposal, +/obj/machinery/button/remote/airlock{ + id = "dorm3"; + name = "Door Lock Control"; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"WP" = ( +/turf/simulated/floor/outdoors/rocks/sif/planetuse, +/area/surface/outside/plains/normal) +"WQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/exploration) +"WR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"WS" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"WT" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/restroom) +"WU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"WV" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/pool) +"WW" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"WX" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"WY" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/indalsalven) +"WZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Pool" + }, +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/pool) +"Xa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"Xb" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Xc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Xd" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor, +/obj/item/weapon/material/ashtray/plastic, +/obj/machinery/recharger, +/obj/effect/floor_decal/corner/red/border, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"Xe" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Xf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Xg" = ( +/obj/machinery/button/remote/blast_door{ + id = "garage1"; + name = "Garage Shutter Control"; + pixel_x = 22; + req_one_access = list(48,43) + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/main/airlock/right_two) +"Xh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"Xi" = ( +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 8; + id_tag = "Reactor Fuel Injectors" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Xj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_3) +"Xk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Xl" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"Xm" = ( +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Xn" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Xo" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Outpost Access" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Xp" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/item/device/gps/security, +/obj/item/device/gps/security, +/obj/item/device/gps/security, +/obj/item/device/gps/security, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"Xq" = ( +/obj/structure/closet/toolcloset, +/obj/item/device/flashlight/maglight, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Xr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Xs" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Xt" = ( +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"Xu" = ( +/turf/simulated/wall, +/area/surface/outpost/civilian/fishing) +"Xv" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_three) +"Xw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"Xx" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"Xy" = ( +/obj/effect/floor_decal/borderfloor/cee{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/cee{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/westright{ + name = "Containment Pen"; + req_one_access = list(43,1) + }, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Containment Pen"; + req_one_access = list(43,1) + }, +/obj/machinery/door/blast/regular/open{ + id = "pen"; + name = "Containment Lockdown Blast Doors" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"Xz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"XA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"XB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"XC" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/carpet, +/area/surface/outpost/main/dorms/dorm_6) +"XD" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"XE" = ( +/turf/simulated/mineral/sif, +/area/surface/outside/plains/mountains) +"XF" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"XG" = ( +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"XH" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"XI" = ( +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"XJ" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"XK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"XL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"XM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/turcarpet, +/area/surface/outpost/main/dorms/dorm_3) +"XN" = ( +/turf/simulated/floor/water/deep, +/area/surface/outside/lake/romsele) +"XO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/search_and_rescue) +"XP" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/carpet/blue, +/area/surface/outpost/main/dorms/dorm_5) +"XQ" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/tools) +"XR" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"XS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_one_access = list(26) + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/janitor) +"XU" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/light, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"XV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_4) +"XW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"XX" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"XY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"XZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security) +"Ya" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/pool) +"Yb" = ( +/obj/machinery/shower, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_3) +"Yc" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/refinery) +"Yd" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"Ye" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Yf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/structure/closet/emcloset, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Yg" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"Yh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/light, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Yi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"Yj" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Yk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Yl" = ( +/obj/item/weapon/towel{ + color = "#800080"; + name = "purple towel" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_2) +"Ym" = ( +/obj/structure/closet/crate/secure/gear{ + name = "explorer crate"; + req_access = list(43) + }, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/weapon/storage/firstaid/regular, +/obj/effect/floor_decal/industrial/outline, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/corridor/right_upper) +"Yn" = ( +/obj/structure/fence{ + dir = 8 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"Yo" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Yp" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gateway) +"Yq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/symbol/da{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Yr" = ( +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -21 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"Ys" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + operating = 0; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"Yt" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Yu" = ( +/obj/machinery/atmospherics/binary/pump/on, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Yv" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/christmas/wreath, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"Yw" = ( +/turf/simulated/floor/water, +/area/surface/outside/plains/mountains) +"Yy" = ( +/obj/effect/decal/remains/ribcage, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt, +/area/surface/outside/plains/outpost) +"Yz" = ( +/turf/unsimulated/wall/planetary/sif, +/area/surface/outside/river/indalsalven) +"YA" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/storage) +"YB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_2) +"YC" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"YD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"YE" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"YF" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"YG" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"YH" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"YI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals1, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"YJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/computer/guestpass{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"YK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/effect/floor_decal/corner/purple/border, +/obj/item/clothing/suit/caution, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"YL" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"YM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"YO" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/showers) +"YP" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Laundry" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/laundry) +"YQ" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"YR" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = -10 + }, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"YS" = ( +/obj/machinery/vending/fitness{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"YT" = ( +/obj/effect/landmark/start{ + name = "Search and Rescue" + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"YU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"YV" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"YW" = ( +/turf/simulated/wall, +/area/surface/outpost/main/dorms/dorm_2) +"YX" = ( +/obj/machinery/space_heater, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"YZ" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Za" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Hallway 1"; + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Zb" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/fishing) +"Zc" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"Zd" = ( +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Right Wing"; + charge = 5e+006; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"Ze" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Zf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Zg" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/refinery) +"Zh" = ( +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Zj" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/christmas/lights{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/storage) +"Zk" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/weapon/mining_scanner, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/head/helmet/space/void/mining, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Zl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/left_upper) +"Zm" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = -10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"Zn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Zo" = ( +/obj/structure/table/steel, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"Zp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Zq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"Zr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Zs" = ( +/obj/effect/overlay/snow/floor/pointy{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/pointy{ + dir = 1 + }, +/obj/effect/overlay/snow/floor/pointy{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/civilian/smes) +"Zt" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Zu" = ( +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/normal) +"Zv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/sign/christmas/lights{ + dir = 8 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Zx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Zy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/sign/christmas/lights, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"Zz" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ZA" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "ENG - Mining Outpost Power 2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"ZB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/structure/sign/christmas/lights{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ZC" = ( +/obj/item/weapon/stool/padded, +/obj/structure/boxingrope{ + dir = 8 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"ZD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"ZE" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"ZF" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/landing_north) +"ZG" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/pool) +"ZH" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/sign/christmas/wreath{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_two) +"ZI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"ZJ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"ZK" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/smes) +"ZL" = ( +/obj/structure/table/bench/standard, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"ZM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"ZN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"ZO" = ( +/obj/machinery/conveyor{ + id = "mining_north" + }, +/obj/machinery/mineral/output, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/exterior) +"ZP" = ( +/obj/random/technology_scanner, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"ZQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"ZR" = ( +/obj/structure/table/glass, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = -6 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = 6 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = 12 + }, +/obj/item/weapon/backup_implanter, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"ZS" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"ZT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"ZU" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + pressure_checks = 0; + pressure_checks_default = 0; + use_power = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"ZV" = ( +/obj/structure/toilet, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_5) +"ZW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ZX" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/random/powercell, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/smes) +"ZY" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"ZZ" = ( +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/structure/sign/christmas/wreath{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) (1,1,1) = {" -VgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgDseMNRAkAkAkNReMeMVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgOKeMeMCiCiCieMeMeMVgVgVgVgVgVgVg -VgpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCrYwMwMwMrYpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEWnXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEpCcJpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCrYTSwMyHrYDcDcDcpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahahahahabThahahahahahahahahahahahahahahahahahapCpCpCpChahahahahahahapCpCpCpChahapCpCpCpCBNfLwMfLFczkZODchahahahahahahahahahapCpCpCpCpCpCpCpCpCpCpCpChahahahapCpCpCpCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahahahahahabThahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpChahahahahahahakygxgxgxbjkieBDchahahahahahahahahahahapCpCpCpCpCpCpCpCpCpChahahahahahapCpCpCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahaguhahahaguwJguhahahahahahahahaguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahayORKRKRKaQfEEuDchahahahahahahahahahahahahapCpCpCpCpCpChahahahahahahahahapCpCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahatfsoIAVrIAVrEPVrIAIAofhahahahahaguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxDcDcDcDchahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahaMnDGsodXsodXMDdXsodXwyguguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahaeaUGwywywywyKEwywywywyguguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahahapAdXwywywywyKEwywywyYFhaguhahaguguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahahaeaUGwywywywyKEwywywyYFhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahahahapAdXwywywywyKEwywywyYFhahaguguhahahaguhahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEzwzwzwzwzwGRzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwhahahahahahahaeaUGwywywywyKEwywywywyguhaguguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwhahahahahahahapAdXwywywywyKEwywywywyguhaguguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwhahahahahahahaeaUGDGrnjqpAJZpAjqpAUGhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEbPXEXEXEVg -VgXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwhahahahahahahaTohaPshahahabThahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahagucJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYYwXEXEXEXEbPbPXEXEXEVg -VgXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwhahahahahazZypTDnHDhnHnHnHYnnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHLyhahahaBQgxgxgxhahahahapwnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHyphVpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEYwYwYwXEXEbPbPbPbPbPXEXEVg -VgXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwhahahahahaEbguulPomPhahahabThahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaOapCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPKdxLxLxLpWbPbPbPbPbPbPXEXEVg -VgXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwXEXEzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwhahahahahaEbhaEDtNhahahahabThahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPhOxLxLxLzabPbPbPbPKdpWXEXEgG -VgXEXEXEXEXEXEXEXEXEzwzwzwzwXEXEXEXEXEzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwhahahahahaPiQPEjEjQPCuQPQPQPQPQPTsRTJVRTAxhaKPKPKPKPzbhahahahahahahahahahahahahahahahahahahahahahahabUhaFXhvgxgxgxhaFXhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPKdxhxLxLxLzabPbPbPKdxhKafpfpgG -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwhahahahahaEbQPvjssyhisisgdvdaVQPSvlJalalqzKPKPZAqydUKPSbSbSbhahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPKdxhxLxLxLxLKafpfpfpxhxLxLxLxLgG -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPryCYSxhPmbLjLjmhQPghUcRTRTGSKPavmEuPyBKPoLmsSbSbSbhayQljljljyQhahahahahaFKFKFKFKwLwLwLwLwLwLMLgxgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPhOxLxLxLxLxLxLxLxLxLxLxLxLxLxLgG -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPprlOqXdLhRRsTjqWQPwuOXalalqzKPavxrhZyBKPGzcnnOuQSbyQyQIirWIiyQFKFKFKFKFKFKagLYGaXFXFXFkVXFXFNNgxgxgxgxgxXgGJGJGJGJGJhahahahahahagjxGxGxGxGgjgjgjKuhahahahahamJmJWMWMWMmJmJhahahahahahaOapCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLxLxLxLxLxLxLxLxLxLxLgG -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPssqqlgMYioBplodBQPgLQPiLiLiLKPavxrhZyBKPElZNMbiJrMNfYJhMhMhgihYcxBDeimSjtZvAVofDwfwfwfwfwfwffJgxgxgxgxgxHPOBRpBeVRGJhahahahahagjgjkKIIQiegSqDjTUKuKuydydydKumJpEpEMzbKAPmJmJhahahahahaOapCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLxLxLxLxLxLxLxLgG -VgXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPVOqXUdBpQydOELfdcAaNQPPwPwPwKPyIqdjYasKPFuLtmjJOGTOvJLviviiWIYYcsfzuzuFKzukSFKFKwLwLwLwLqUwLxFgxgxgxgxgxHPOBBepJBeDohahahahagjgjvEBRYjInfycXrvKYQWeEJMJMJMRHmJpEpEOUvZBxAOmJmJmJmJhahaxQgupCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPhOxLxLxLxLxLxLxLxLxLxLxLxLxLxLgG -VgXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPupKQaIciNqHFchuYLRPzQPPwPwPwAnfvCBjYKkKPUuUuUuUuUuolkgAXAXWtqDsAAHiNusZgzuxDFKyyyyyyyyyyyyyyXegxgxgxgxgxHPOBnlBeocGJhahahahagjdewQrztcYTfybsXnqlQWSTqQEAqQPJmJwEmqjVxpZDPghIgbaOmJhahabThapCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPbPKdxhxLxLxLxLxLxLxLxLxLxLxLxLxLIggG -VgXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPBprLnfhFqfvCRYVynPdkQPddPwPwKPKPdTQvfZKPeXuqcrTisYORbhAXAXGrxVQTqaDEKHvzIyfSFKHryyyyyyyyyyyyXegxgxgxhagxnqGJGJGJGJGJhahahahaswWAwQFMZRGncCRDggOpQWXlCoCoCouLmJmJwVbnJDnxXygbgbgbmJhahabThapCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPbPKdxhxLxLxLxLxLxLxLxLxLxLxLxLIgIgIggG -VgXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYQedYJKdYuOdYdYqsIbIbIbIbIbiGKPIhdhYuPQKPOQtmKUekMvkMzBkMsaBDqDhDdJDqIVYIzuDKFKyyyyyyyyyyyyyyXegxgxgxhahahahahahahahahahahahaswWAwQuNCGlRAYMBzNCcKyDamOmOylaoapmJFmbnMznxnzgbgbgbmJhahabThapCpCzgzgzgzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPKdxhxLxLxLxLxLxLxLxLxLxLxLIgIgIgIgIggG -VgXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYgyPVPVPVLddYNZQlIbCrgwWeIbQYKPpgRoRoHcKPauQNcrPKUUbEWmVUyzeYsrYcAKzuzuShzukSFKNCyyyyyyyyyyyyXegxgxgxhahahahahahahahahahahahaswsxMmJctgKZnvbXMeAJKyRbuWSgKsERTgmJzEcLdjQkPghIgbaOmJhahabThahahahahazgzgzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPbPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYzJvsUDOjoUevudytzIaMtFtqIbzjAEeHzvmmFfKPKPKPXQeueueueuePKNvpSJlPeOtTzOgmqvkUVkrHrHVkyyyyyypVQdExgxgxhaOPhahahaGJyMyMGJGJGJGJGJGJpNpNpdPZXOpdpdpdQWZvPEBgquOTYfmJLcGZLhqFAOuhuhuhuhuhuhiIIoAthahahazgzgzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPbPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSJKzJoUClVGNWUCuBgWIbIbIbIbIblWKPObVuITMonNpyiDXQQhaGtVeupYIlcvdwbNbNVkVkVkVkVkVkZjUTVkvopVvPQdgxgxgxgxhahahahaVFGJYrHgGJsNIKjwOdGJGCEiCqiYCNTZYmgSQWKyKyLVYpwlKymJmJkbIxmJmJuhlhyxlThwuhNGyFAtlYhazgzgzgpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYzJIWtUbIoUevXiMkXmnXnTeVHflWARoOoOzhoOoOoOoOXQfalQphiAleBdLIFBhkTzsnnmbgkndNsCBqtkdZVmXegxgxgxgxgxgxgxgxgxgxZHUzpnpUEIaKHwyYbMEItxafafyGgXHkHkHkEatSjfdrxMWgNsPGjfcPqKetdnvlzFWXBXlpDICZfHDXoqhazgzgzgpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYIUuGuGuGiTJKtbUavtUQEJQfWBKrAZiyiyoNAfAFHvuKLusHpTEOBKrwNpRnUYLbnGRNRNRNhbUmoIotgQxkYAXegxgxgxgxgxgxgxgxgxgxHPWKWijsOHyPSeLrPMtMXUefqIjJpZHikEkEkAgtVfSXQOSXSDgZgZcMKMKMSLPLSNWoQLbbrgZyigRCyyzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYGLsVsVsVJKdYbtwYfcdYdYvHpmlWrbnJlUFZKPImubMWSKsksdYihSzHZTaLqAdtTcaLaLaLZTFiVkcOcOVkCQQdgxgxgxgxgxgxgxgxgxgxhWGJUsUsGJUsUsUsGJGJqTqTWQcYrIWQqTqTqTqTHGGeMfEMmHkGmLLHUyUyUyuhuhuhuhyuAtuMuMAtlYzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwffzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYnuUotLUopQizKjdYGIdEdYlWlWlWKPKPKPoAKPKPKPKPXQTwYgJyeuTtYZVdFPVkdgrmwwZkyVfYVkKSZJDBurhagxgxgxgxgxgxgxhahahaLXLWLWLWLWvnLWpjedooZLbHEXUrkNvhcUhhucqTeQJYWJDOMaUyUyUyUyDuwnAWuuBBAWhahabThahazgzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYjKWWlaOEaXmfCHqwiHPAQIDBDBDBDBDBoXUpgRvnvnpjXQXQXQPcXQVkVkVkVkVkVkcOcOVkcOcOVkwchahagxgxgxgxgxgxgxgxhahahahaLohahahahahahaPCedomqmNITRxAVslLahahhdWQsXzrAUUFvWUyRZESiiWNGHNcEoxIAWhahawJguzgzgzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYxyXmTVXmXmCMbZdYDWlXdYyyyyyyyyyyyyyyyyyyyyZEvnpjnpppqxmIhqKSZJZJZJZJDBZJDBZJDBelhahagxgxgxftZFRXAlRXNVApApBjhHhahahahahahaPCedIRqmNIEKJsuJKpKpwAUSWQZhJtSmUFzWUyPXmWHBkzdcrStKnwAWhahawJguzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSJKlClCJKlClCdYdQJKdYdYwYyyEBEBEBEByyEByyyyEByyEBLonpltWyrAhqwchahahahahahahahahahagxgxgxhahaPCFUIDvxIDFUhahahahahahahahahahaLoIpTWqmNIArNxXreTKTKTRmWQDdOmtvUFwmUyKvXwcuCgSRAWtKzeAWhahawJguXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYRqRvVatGVtcabVfucayyyyQHhahahahahahahahahahahaLoXQjuIEXQXQwchahahahahahahahagxgxgxgxgxhahaPCeSFbBIyrBThahahahahahahahahahaPCIpIpRItnAgiROofzNopDRSqTrkuCBoUFWhUyJdeGnCUyUyUydRErAWhahaNMguXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSMTiEoPkwdqgELqnYqkcayyyyyyyyWLhahahahahahahahaftitGPHohYLlDBelhahahahahagxgxgxgxgxgxhahahahaLoeSgqCdItBThahahahahahahahahahaANpjIpIpmxTCKTKTEvkxkxkxkxkxxaICezMaUyUyUykWUycoMaMaAWAWhahaOaguXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSSOPyrfjMyCAecaChyXcaoDVqVqoDOSgxhahahahagxgxgxoEgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxhahaIdBjNJeSlnjxnMBThahahahahahahahahahahaZEpjIpIpgagagagaHzAwVTjOkxNksqtPHMwZFvYqXkujFazivfhahahahaOaguXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPKdxhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQScacacacajeyXcaJvcgWIoDXXfIoDplgxgxgxgxgxgxgxgxoEgxgxgxgxgxgxgxgxgxgxgxgxgxgxhahahahahahaPCFUFUFUTTOITTFUFUFUhahahahahahahahahahaANLWLWLWvnLWFYUeBcmdtuMxsEtBVvZtbinWcmdoVfBoWcvfhahahahaOaguXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaEbhahaoDTNNKCerQQnyDiUWzmlhLwKlcgxgxgxhahagxgxgxoEgxgxhahahahahahahahahahahagxgxhabUhahahaLoeSTmHRmtHOIHzqRxBThahahabUhahahahahahahahahahahahakPHzZdzdZoLCtWSmDOBlBlehBlBlHGgZYkvfhahahahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaPiguhaZKZKbpNYTFSABtYVoDrDCDoDOSgxgxgxgxgxgxgxgxoEgxhahahahahahahahahahahahagxgxhaguhahahaPCeSVbQtUKQtQMQtzXBThahahahahahahahahahahahahahahahaJWHzkxkxkxkxFQjtNABlRkaaveBlEfbxbuMahahahahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaZKmYBvZKGOyDDLoDoDQjQjoDlcgxgxgxgxgxgxgxgxoEhahahaguhahahahahauHhauHgxgxgxhahahahahaLoeSoeQtUKDHQMQtsMBThahahahahahahahahahahahahahahahahaYOVcsjHHvbamMKgOBloBUWMGBlwhwhwhWbWbWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaEbguhaZKZXnRZKDlwPPhoDftLWLWvnLWHZvnHEzKUHHEravnhHhahahahahahahahahahaGkhahagxgxhahaguhahaLoFUdvFEmrxWvVVBPTFUhahahahahahahahahahahahahahahahahaYOwimuZpdKGQcQTkBlBlBlBlBlvGvRLnvRmnWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSguhaZKQxZKZKoDoDoDLwLohKhKhKhKPCiMiMScwpiMLQhahahahahahahahahahahahahahahagxhahahahahahaPCFUGqGqueFUsiGqGqFUhahahahahahahahahahahahahahahahahaYOVcceHHvbrigHwWwhlfKxCAzlZCMjMjMjBwWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPKdxhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaAskLkLvnbcLWLWEUhKhKhKhKPCpOFnrEmDrPLQhahahahahahahahahahahahagxgxgxgxgxgxgxgxhahaPCoMeDKqqhxRfwKqNroMhahahahahahahahahahahabUhahahahaYOYOvbvcvbvbPSPuEwlqfUReKmUxFVMjMjMjBwWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahahahabThahahahahahahaPCpOEpoyoSrPLQhahaguhahahahahahahahagxgxgxOcabOcgxgxgxhahaPCoMDbHmLTdHvmHmxdoMhahahahahahahahahahahahahahahahaYOVzohnsosvbbRJCXcMyxlwkQAfNbQMjMjMjQXWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaVehahahahahahahabThahahahahahahaLoiMiMNiLKiMLohahaguhahahabUhahahahagxhagxOcabOcgxgxhacZhaLoxzEzHmvKVMHmHmzptEhahaoMuxoMuxoMuxoMhahahahahahahaYOreHqPjgpvbHNMKntSPhoHlfrYStJcdcdcdRdWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahahahabThahahahahahahaPCiMFrLMAzrPLQhaguhahahahahahahahahahahagxgxgxgxgxgxhahahaPCxzBYHmvKVMHmHmbFinhahaoMVweoOtYLpqoMhahahahahahahaYOKOHqkDFdvbBWfFgOSPgMwoqenZkJvykkBuhmWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahaguQShahahahahahahabThahahahahahahaLoiMtdTAtIrPLohahahahahahahahahahahahahahahahahahahahaguguLoxzuzHmvKVMHmHmvQtEhahaoMJBTITfoxBVoMhahahahahahahaYOreHqepgpvbsJIqgOSPgMIZBnBCBCBCBCBCBCFlhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaftvnBjvnmRvnvnBjBjBjBjBjNJiMJgHspPrPLQhahahahahahahahahahahahahahahahahahahahahaguPCoMDbHmvKVMHmHmEToMhahaoMGBiXyKogrXoMhahahahahahaguYOUfXAazesqPsvWRgOSPccIZBCSrBCSyBCOMBCFlhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaPCyLyLyLyLyLTeTeTeTebObObOiMhejTuTiMZEvnBjBjBjBjvnBjBjBjBjBjBjBjBjBjBjBjBjBjvnvnBjNJoMhtdsOVlvACdsBsoMhahaoMmpURDionZBoMhahahahaEQQJQJYONdLZaJAivblKMKgOwhcsIZBCBCBCBCBCBCBCFlhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaPCyLxNZVHLBmJUwUYbFLojlbTyiMiMNioRiMIQIQIQwGIQIQwGIQIQIQwGwGoMoMuxuxuxoMoMuxuxuxoMoMoMREJqugFWrRJqzVoMoMoMoMukVMoMukHmoMoMuxoMEQEQUtayvbvbvbvbfqvbsUMKgOwhwTIZYdSraiSySnWaWaFlhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaftNJyLmAxSwOBmBOXjIsFLmoymOOldoFfiIJBfdadadaDfdadaTPdadadatrshkOYtRARARAiSECGcRARAkcCCrRadnrWsJIVJCUKXrRXDYtjAHmVMpuHmHmUgJmRAeJXoAqkdkdozQbMJGwsgQQJlMKhJTOvvTOTOTOTOqgqgqgqguihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCyLyLsWBmBmBmIFFLFLFLxmldldldjjAdDwopCmUjyNqiqBLsLsLsLsLsNmVQEsHmHmHmHmzQVWVHVWVWVWzGLzlHVHfjsFVWVHDTLzEhVWVHVWJJVWsRVWVWlMHmbCAcSakFTLyEyEGUjanjlllljbwWTOsGboEWQoTOyesBUOVhuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPKdxhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCyLzsSfklBmtXsOdAFLyopacxldsKaFCWvNXsOinkAyiwnQXfthRzYUYUqnshDtEFDJZaWwBbZfQzgzvMHQjFpxGFiOCFwgpsfkKLlIYhDrIwDrDrpXEmJzokkuokoQXoYeASASASJiASASPtSpBMptkYWTpfqETOTOTOOFOFOFOFuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaLoyLZctHXPBmvwXMczFLNQKISZldSdaFCWNvqVMNMNCnCnINMECnKbFNZzwGwGoMoMoMTlTlPvuFTlTloMoMoMoMzVJqrRFWugJqykoMoMVZoMNONONOXSNONOoMVZoMEQEQiViViVEQiViVEQtOZxMKntTOJnHyNbCpTOsTYQlxOFuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPKdxhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCzRSFADFkBmiKKAYDFLkqLfgfldhQaFajMcQUMNejRJqrjDoiOhKbnLnLwGhahahahaTlfAABGpLpTlhahahaoMHAKqFoPBeLKqRjoMhahahaNOCPXtpFZmNOhahahahahahahahahahahaMgVjZxUMsITOWrTOTOTOTOOFuXuXGVuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaLozRxUIvXYBmBLfmZQFLSHFzCRldzmaFdVwXWHMNDDSBSBSBqJGmKbhahahahahahahaTlkIGhdxrCTlhahahaxzGBHmHmVMvKAAjRtEhahahaNODzCkPmxwNOhahahahahahahahahahahaMgUZZxMKwWieOFOFmiFevTnhOFjnUvuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSIdvnNJyLumZMNuBmXxHnWOFLfVHCtAldfCaFfehNlrMNgsSBEErqtRlsKbhahahahahahahaTlKfNLDphyTlhahahaxzEzTMHmVMvKAArGinhahahaNOSssbYKkoNOhahahahahahahahahahahaEQEQsUnDnacEKnXKSSVXVXgTAMAMLauihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSPCOYOYOYHhQVBmBmFLOeFLFLldIfldldldOnTxMPMNMNKKcWAvKlobRGKbhahahahahahahaTlTlTlcRTlTlhahahaxzBYpHHmVMvKAAawtEhahahaNONONONONONOhahahahahahahahahahahahaEQxsixdMrhpLOFwDOFjUvFuXqtuiuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSteOYarGxHhszjveIpeDZUJRfVpDZjveIIkwSPDQadGjQSBHWZYcjobrUKbIdBjBjLWLWvnLWLWvniqVPgohahahahaxzuzNHpbdHhfHmGytEhahahahahahahahahahahahahahahahahahahahahaCTLEdFCTCTLUuXwDxCOFvFfGuiuihahahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSuUnyKWuZDxJuyqLkFjngiraBemerctctmwENmXKoCnunbfHWZYcjobRuKbLohahahahahahahahahahahahahahahaoMlFdsVVsQZWdsNtoMhahahahahahahahahahahahahahahahahahahahahaCTmyhiRQCTwvwvwvuiwvwvwvuihahahahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSnUOYGiRlgKJNOuoayaCvoJkmJaCvXbbyRixJaxJFYPZrIzHWclcjMCWjKbLohahahahahahahahahahahahahahahajNIrIrKtjNRFIrIrjNhahahahahahahahahahahahahahahahahahahahahaoZGbHphBCThahahahahahahahahahahahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSLoOYOYOYHhRgDvDvduTvduduYWJhYWYWYWOnjSeCCnEYNXNUAIcjSBmMKbLohahahabUhahahahahahahahahahahajNOyUNjlTGTEXaLDjNhahahahahahahahahahahahahahahahahahahahahaoZstTHUACThahahahahahahahahahahahaQrhaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSANvnpjdyKVmkFqDvnKUINEduMQQgIuYWMIaFvrHXCnTrjpxORJCXSBuAKbLohahahahahahahahahahahahahahahaOAbwGMrOXRatGMJGxHhahahahahahahahahahahahahahahabUhahahahahaoZIXlBjECThahahahahahahahahahahahaQrhaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCzDDNCIOwDvFsXhmQduAhpGfBYWCsaFdVNvMNmTGNrqniSBcWFyKbLohahahahahahahahahahahahahahahaOAhUGMrOGMatGMLJxHhahahahahahahahahahahahahahahahahahahahahaCTwIdFCTCThahahahahahahahahahahahaQrhaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCzDEHeNaPDvaAwCHIdupicwWEYWBSaFdVZnMNMUidHdThbWpcKbKbLohahahahahahahahahahabUhahahahaOAmaGGXLgrMtGjBGxHhahahahahahahahahahahahahahahahahahahahahaoZjkYvHDKihahahahahahahahahahahahaQrhahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCdybDEgXCDvbLJXLvdubzmClDYWTaaFdVaqKbKbKbKbKbKbKbKbhaLohahahahahahahahahahahahahahahajNjNjNJoRaJojNjNjNhahahahahahahahahahahahahahahahahahahahahaoZXzODDCKihahahahahahahahahahahahaQrhahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaLodyqpoTEtDvQZVAnEduLPdpzYYWpzaFdVFOKbOZQuKbhahahahahaLohahahahahahahahahahahahahahahahahaOAgNSWnnxHhahahahahahahahahahahahahahahahahahahahahahahaCTUEZICTCThahahahahahahahahahahahaQrhahahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgbPbPbPbPKdxhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCdydyhcDvDvDvNzzSduduHxYWYWYWDAlSenAaAaAaAaAaAaJPJPAaLogxgxhahahahahahahahagxgxgxgxhahahaOAMAtpaCxHhahahahahabUhahahahahahahahahahahahahahahahahaGdfbOkFthahahahahahahahahahahahahaQrhahahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgbPbPbPbPtYMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaLogudyCOpIHYDvXVWlRydumUYBYlYWtyrtgJAayAqoRwysAamcDUAavqgxgxgxhahahahagxgxgxgxgxgxgxgxhahaOAWUVCkpxHhahahahahahahahahahahahahahaguhahahahahahahagxgxgxgxgxhahahaguguhahahahaguhahahaQrhahahahahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgbPbPbPbPbPbPtYMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaIdNJYydymzlyDYDvzcvJpBdurKFJpKYWNFjoXWTXPbFgRhtaTXSCqZSobegxgxgxgxgxgxgxgxOcOcgxgxOcOcgxhahajNCbfTCbjNhahahahahahahahahahahaguguguhahahahahahahagxgxgxgxgxgxhahahahahahahahahahahahahaOahahahahahahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgbPbPbPbPbPbPbPtYMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCwswswswswsDvDvdudududuYWYWYWYWtyBasmUixxLGexFFkCiQdfhlNBgxgxgxgxgxgxgxgxababgxgxababgxhahakvSzEqSzkvhahahahahahahahahahahahahahahahahahahagxgxgxgxgxgxgxhahagxcqCTCTCTCTCThahahahaguaEhahahahahaEyEyXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgbPbPbPbPbPbPbPbPbPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCwsxvfnzzicJjjGfMuVhnGtsyecGtuDVERcygibibibibyJAayJyJAavqgxgxgxgxgxgxgxgxOcOcgxgxOcOcgxhahahagxgxgxhahaOPhahadPdPdPdPdPhahahahahahahahahagxgxgxgxgxgxgxgxgxgxgxfbsDeKeKlVCThahahaguhaQrhahahahaVLEyEyEyEyXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgzgbPbPbPbPbPbPbPbPbPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCNwzocNEeDnGDqcqcCyjmrBJSsPsPRWXHqCzfibTBcBibftLWLWLWvnhHhahahagxhahahagxgxgxgxgxgxgxgxhahahagxgxgxhahahahahaAmNylZdIBkhahahahahahahagxgxgxgxgxgxgxgxgxgxgxgxgxfbsDeKRPeKAjhahahahahaQrhahahahaVLEyEyEyEyEyEyXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgzgzgbPbPbPbPbPbPbPbPbPbPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCNwyRachXwsgkZlZlgkrjPkZlZlgkgktyLiaRVIxPrlibLQhahahahaguguhahahahagxhahagxgxgxgxgxgxhahahagxgxgxgxgxhagxgxgxSUgxgxgxgxgxgxgxhahagxgxgxgxgxgxgxhagxgxgxgxgxgxgxfbsDwHeKgnCThahahahahaQrhahahaVLVLEyEyEyEyEyEyEyEyEyEyEyXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgzgzgbPbPbPbPbPbPbPbPbPbPbPbPtYMhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaLoNwVnfKouwsrTzLXIMlLgeFodMiFSEGkfutNjibksgIibLQhahahahahahahahagxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxSUgxgxgxgxgxgxgxgxgxgxgxgxgxgxhahahagxgxgxgxgxgxgxcICTCTCTCTCThahahahahaQrhahahaVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgzgzgzgbPbPbPbPbPbPbPbPbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaLowslmDnwswseWBZLLBiUkrFGuqLwxEGkjLOtCibibibibLQhahahahahahahagxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxSUgxgxgxgxgxgxgxgxgxgxgxgxgxhahahahagxgxgxgxgxhahahahahahahahahahahahahaQrhahahaVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyXEXEXEXEXEXEXEXEvBzgzgzgzgzgzgzgzgzgzgbPbPbPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCNwySPlbGwsGgbmIObYluztmBbYXqEGgkgkgkgkftvnvnybhahahahaguhagxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxhagxgxgxgxgxgxSUgxgxgxgxgxgxgxgxgxgxgxgxhahahahahagxgxgxgxhahahahahahahahahahahahahahaQrhahaVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCNwznQDwewsMZbYaZWDaSeFZPTuEGEGftLWLWLWNJhahaJRhahahahahahagxgxgxgxgxgxgxhagxhahaxKwbHuxXwbQpMRhahahaxKQpQpQpaYFRWVWVFRWVWVFRhahahahahahahaguhaharuEVpSBEhahahahahahahahahahahahahahaQrhahaVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaLowsbkJewswsEGyZyZEGEGEGyZyZEGfthHhahahahahahaPChahahahaguhagxgxgxgxgxhahahahahahawrnVmSNnnVnVwrhahajZaYFRWVWVFRFReqVSqHVSPPFRFRWVWVFRhahahahahaKeKeiZrrKehahahahahahahahahahahahahahaQrhahaVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaANTQXvWuTQvnvnvnvnvnvnvnvnLWLWNJhahahahahahahaLQhahahahaguhagxgxgxgxhahahahahahahajztiscBHHtEdKFhahawrFRFRRUxYVSMpseOLOLOLseIcVSRVVYFRFRhahahahaOCkZhsRLZqhahahahahahahahahahahahahahaQrhahaVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahagxgxgxgxgxGEgxgxgxgxgxgxhahaguhahahahahahahaANApBjpvvnvnBjALALALALLWLWApBjBjnFfoYHtiMOmGZbEdYorcQpaYFRwtFCxEQRQRQRQRQRQRQRQRQRAVgVewFRhahahahaOCJxcfQCZqhahahahahahahahahahahahahahaQrhahaVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgWnWnWnUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPbTbTbTbTbTQrbTbTbTGEGEGEGEGEGEOflzlzlzOfGEbTvgXZXZvgXZXZvgbTbTbTbTWvbTbTbTGEGEGEGEbTbTbTbTdPdPsSdPdPzMIenVnVnVnVNnNnFRkaOLPRPfnSnSnSnSnSVKVKOsPROLYXFRiZiZKeKeKeKevYhrbabababababTbTbTbTbTbTbTbTbTbTQrbTNaNaNaNayvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvDQDQDQDQDQDQDQDQtotototototototototototototoneGsGsGsGsGsGsGsGsGscFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFgG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahagxgxgxOfOfOfanCxUBOfOfgxvgIPkQxtSuqMvghahahahaKChahagxgxgxgxgxhahahahadProJTzPPYcKdbPNpRDkXuufowtjZZOLPRYaqGqGqGqGqGcTcTUqPROLYRtjWGdWUhjWSQMqKzGfLNRBLmeRbahahahahahahahahahahaQrhaVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahagxgxHjcSKDkHndndYsOfOfvgGAMrWScpgCvghahahahaHShagxgxgxgxgxhahahahahadPhxlGJbJkPdHexeHeHeBrOWtDWxjcdSKgYaqGqGpkZSLAcTcTUqqYUVFpMVATwduanoAQbBBANeCEBhsLpobahahahahahahahahahahaQrhaVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaguhahagxgxHjMuxZwNvOwjjdyntzqbcbblnAOJQGvgvgXZXZvgckgxgxgxgxgxgxhahahahahadPdPqNqNqNLeXJTqYGQqGKOqtlWZoVOLCwYaqGqGoYJfWpcTcTUqCwOLkeWZiuISsuNhKRSVoHxTLNLNLNbabahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaguhagxgxHjslkBwNcDeUgedmOfMHkhfxfxCzspjyfPlNIjOxHbgxgxgxgxgxgxgxhahahahahatiMMgPMsuSMXfOIeIenVpMpMFRttOLCwYaqGqGcTcTcTcTcTUqCwOLqjFRJAJAKeUhLFLFPeBJUhjrKhdChahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaguhagxgxOfOfEkwNHUxoGWYEOfGYliXdzxBPwqYCuwkRhAaTHbgxgxgxgxgxgxgxhahahahahatiglbrjLPFAuEnoCmFnVhahaFRncOLCwaWJEJEBUBUBUBUBUijCwOLDMFRhahaKejiiCBFuRIMgBgckXdChahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahagxgxGEOfFIlEmVmVmKhuxixixixixihTycQBvgJwqOvgckgxgxhagxgxgxgxhahahahahanVnVYMXJXJEZXJvIxbnVhahaFRNPLxVNxnxnxnxnGXxnxnxnxnvUHKrNFRhahaKejiZUqRaDaDyijIKeKehahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahagxgxGEOfOfwaKGaeOfOfxiGlMFXGuvXBUwvgvgjgjgvgHbgxhahagxgxgxgxhahahahahahanVfgmNWqrZONrdnVnVhahaFRFRlkfswzOlOLOLWCOLOLOlwzbSjCFRFRhahaKeKeUlqRaDaDyitQKehahahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahahagxGEgxOfyWyWyWOfgxxiULPaAGnIXpmvvgftvnvnvnUbhahahagxgxgxhahahahahahahanVnVpMpMnVpMpMnVhahahahaFRZGZGFRFRuyZeSiZeWkFRFRZGZGFRhahahahaKeSESEKeKeSESEKehahahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzCfXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahaguhahaGEgxgxgxgxgxgxgxxixicGxixijgvgvgLohahahahahahaFXgxgxgxhaFXhabUhahahahahahahahahahahahahahahahahahahaFRZGZGFRZGZGFRhahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahahahabThahahahahahahagxyyZEvDvnvnvnvnNJhahahahahahahahagxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahahahabThahahahahahahahahahahahahahahahahahahahahahahahagxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaebnHnHnHnHnHnHnHYnnHnHnHnHnHnHnHnHnHnHnHnHnHbqnHnHnHnHnHLyhahahahagxgxhahahahapwnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHilVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzififCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahahahahahahahahahabThahahahahahahahahahahahahahahahahahahahahahahafQxqxqfQhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaVLVLNaVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzCfififCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahahahahahahahahahabThahahahahahahahahahahahahahahahahahahahahahahaROxqxqhGCfCfCfhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaVLVLVLNaVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzCfCfCfCfifCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahahahahahahahahahabThahahahahahahahahahahahahahahahahahahahahaCfCfROxqxqPWifCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaVLVLVLVLNaVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXECfCfCfifififCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahahahahahahahahahabThahahahahahahahahahahahahahahahahahahahaCfCfCfKwxqxqPWififififCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaVLVLVLVLVLVLNaVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXECfCfCfCfififCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahahahahahahahahahabThahahahahahahahahahahahahahahahahaCfCfCfCfCfifKwxqxqPWCfCfifififififififififififififififififCfCfCfhahahahahahahahahahahahahahahahahahahaVLVLVLVLVLVLVLVLVLVLVLVLVLVLVLVLNaVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfififififROxqxqhGCfCfCfCfCfCfCfCfCfifififCfifififififififCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwCfCfCfCfCfCfCfCfCfififCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfififCfCfCfROxqxqhGCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfififififCfCfCfCfCfCfzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwCfCfCfCfCfCfifififCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfROxqxqhGCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfifififififCfCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfifififCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfzwfQxqxqfQzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfififififCfCfCfCfCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwgxgxzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfififififififCfCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfifififCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwCfCfCfififCfCfCfCfCfzwzwzwzwtwzwzwgxgxgxzwtwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyCfCfCfCfCfCfCfifififififififCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfififCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwCfCfCfCfififCfCfCfCfzwzwzwzwzwzwzwzwzwzwgxgxzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfififififCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfifififCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwCfCfCfCfCfifCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfifCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwGRzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxgxzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfififCfCfCfCfCfCfEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfififCfCfCfCfCfEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwHVCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfifififCfCfCfEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfififCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfHVCfififCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfifCfCfCfEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfififCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfWYififCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfifCfCfCfEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfififCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfWYCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfififHVCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfififCfCfHVCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfHVEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfififCfCfCfUPzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfHVCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfififCfCfCfzwUPzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfHVCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfififCfCfCfCfCfCfzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfzwzwUPzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfifHVCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfifififCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfififififCfCfCfCfCfCfzwzwzwUPzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfWYCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfififCfCfCfCfCfCfCfCfCfCfCfifififififCfCfCfCfCfCfCfCfzwzwzwzwzwUPzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfWYifCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfifififififCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfHVififCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfififCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEygxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfHVCfififCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyHVCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyHVCfCfififCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxgxyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvCfCfCfifCfCfCfEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEygxgxgxyTyTyTyTWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyyvCfCfCfififCfCfCfEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEygxgxyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxEyEyEyEygxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyyvEyCfCfifififCfCfEyEyEyEygxgxgxgxgxgxEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTEygxgxyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyyvEyfQjXjXFDFDFDjXjXEcfQgxgxgxgxEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTgxgxyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEygxGEgxxqxqxqxqxqxqxqxqxqxqgxgxEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTipyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgIgIgxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxGEgxxqxqxqxqxqxqxqxqxqxqgxEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyyvEyfQVDcycyJQJQJQcycyfQEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgxLxLxLgDPOPOPOMhxLxLxLxLIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyyvEyEyEyCfCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTEyEyEyyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgxLxLgDGvWPWPWPtYPOMhxLxLxLxLIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyyvEyEyEyEyCfCfCfifCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgxLxLzaWPyTyTWPWPWPtYPOMhxLxLxLxLIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyyvEyEyEyEyEyCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgxLxLxLzaWPWPyTyTyTWPWPWPtYMhxLxLxLxLIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyCfCfCfifCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLIgIgIgxLxLxLgDGvWPWPyTyTyTyTyTWPWPtYPOMhxLxLIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyEygxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyCfCfifCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPKdfpxhxLxLxLIgIgIgxLxLgDGvWPWPyTyTEyEyEyyTWPWPWPWPhOxLxLxLIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEygxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPKdfpfpfpxhxLxLxLxLxLIgIgIgxLxLzaWPWPyTyTEyEyEyEyyTyTyTyTWPtYMhxLxLxLIgIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEygxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyCfCfCfifCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPfpfpfpxhxLxLxLxLxLxLxLxLxLIgIgIgIgxLKapWWPyTyTyTEyEyEyEyyTyTyTyTWPtYMhxLxLxLIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTCfCfxLxLxLxLxLxLxLxLxLxLxLxLxLxLIgIgIgxLxLKapWWPyTyTyTyTEyEyEyEyyTyTyTWPtYMhxLxLIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyCfCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTCfCfCfCfCfxLxLxLxLgDPOPOPOPOPOPOMhxLxLIgIgIgxLxLxLKapWWPWPyTyTyTyTyTyTyTyTyTWPWPhOxLxLIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyCfCfififCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfxLxLgDPOGvWPWPWPWPWPWPhOxLxLxLIgIgIgxLxLxLKapWWPWPyTyTyTyTyTyTWPWPWPWPhOxLxLIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyCfCfCfifCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfCfPOPOGvWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgxLxLxLKafppWWPWPWPWPWPWPWPKdfpfpxhxLxLIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfCfCfCfWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgxLxLxLxLKafpfpfpfpfpfpfpxhxLxLxLxLxLIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLIgIgIgIgIgIgIgxLxLxLxLxLxLxLxLxLxLxLxLxLxLxLxLIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyCfCfififCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgIgIgxLxLxLxLxLxLxLxLxLxLxLxLIgIgIgIggG -VgXEXEXEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyAoAoCfCfCfifififCfCfCfCfififififififCfCfCfCfCfCfCfCfCfyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyAoAoAoCfCfCfCfCfCfifififififififififififififififCfCfCfyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyAoAoAoAoAoAoAoCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfififCfCfCfCfCfCfyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTEyyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyAoAoAoAoAoAoAoAoAoEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyAoAoAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfCfCfyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfCfCfCfWPWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTCfCfCfCfCfCfCfWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyTyTyTyTyTyTlwyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTCfCfCfCfCfCfCfWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTCfCfCfCfCfCffppWWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTCfCfCfCfxLKapWWPWPWPWPKdxhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPCfCfCfxLxLKafpfppWWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyZuEyZuEyfQxqxqfQEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyPUAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPCfCfxLxLxLxLxLKafpxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoLSxqxqHaAoAoAoAoAoAoAoEyEyEyEyEyEyEyAoAoPUAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPtYPOPOMhxLxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoAoAoLSxqxqHaAoAoAoAoAoAoAoAoEyEyEyEyAoAoAoAoPUAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoAoAoAoAoLSxqxqHaAoAoAoAoAoAoAoAoAoAoAoAoAoAoAoAoPUAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPtYPOMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoAoAoAoAoAoLSxqxqHaAoAoAoAoAoAoAoAoAoAoAoAoAoAoAoAoPUAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoAoAoAoZuEyZuEyfQxqxqfQEyEyEyAoAoAoAoAoAoAoAoAoAoAoAoAoPUEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoAoEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgWnWnWnWniFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQiFiFiFiFiFiFyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvtsyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvPUPUPUPUPUPUPUyvyvyvyvyvyvyvyvyvyvyvyvGEGEGEyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvDQDQDQDQDQDQDQtotototototototototototoneGsGsGsGsGsGscFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFgG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyjyTyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyhEEyEyEyEyEyEyEyEyEyEyEyuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyzCyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyhEEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYPOMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEXNXNXNXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyyTyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEXNXNXNXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEXNXNXNXNXNXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEXNXNXNXNXNXNXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYPOMhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYxLxLxLxLxLxLIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEuEyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYPOMhxLxLxLxLxLIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLxLgG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLgG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLgG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYPOPOMhxLxLxLgG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYPOPOPOgG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEgG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEVg -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEyTyTyTyTuEuEXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEVg -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEyTEyEyyTyTuEXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEVg -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEyTyTEyEyyTuEXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEVg -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEuEyTEyEyyTuEXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEXEVg -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEyTyTEyyTuEXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEXEVg -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEuEyTyTyTuEXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEEyyTEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEEyEyEyEyEyEyyTyTEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEEyEyEyEyEyEyEyEyyTEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyyTyTyTEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyTyTyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEuEXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyTyTyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEuEXNXNXNXNuEuEuEuEuEuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyTyThChChCyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEXNXNuEuEuEuEuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyThChChCyTyTyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyTflSGvkSGFAyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNuEuEuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyflSGvkSGFAyTyvEyEyEyEyEyEyEyEyEyEyEyEyEyXEXEXEXEXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjXEXEXEXEXEbvyjyjyjbvyjyjyjSkyjyjyjbvyjyjyjKBlAJHlAKByjyjyjbvyjyjyjbvyjyjyjbvyjyjyjbvyjyjyjbvyjyjyjbvyjyjyjbvyjyjyjbvyjuEuEuEXNXNuEuEuEyjbvyjyjEybvEyEyEybvEyEyEybvEyEyEybvEyEyEybvEyEyEyKBlAjHlAKBEyyvEybvEyEyEybvEyEyEybvXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEEyEyEyEyEyEyEyXEXEXEXEXEXEXEXEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjXEXEXEXEXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjXEXEXEXEXEbvbvbvbvbvbvbvbvbvbvbvSkbvbvbvbvbvbvbvbvhChChCbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvuEuEXNXNuEuEbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvhChChCbvbvSkbvbvbvbvbvbvbvbvbvbvbvXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg -VgIGXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbvbvbvbvbvbvbvbvbvbvbvSkbvbvbvbvbvbvbvbvDPhCFHbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvuEuEXNXNuEuEbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvDPhCFHbvbvSkbvbvbvbvbvbvbvbvbvbvbvXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg -VgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVbvhChChCbvrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVbvRrRrRrRrRrRrbvrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVbvhChChCbvrVrVrVrVrVrVrVrVrVrVrVrVrVVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Yz +Yz +Yz +Yz +Yz +Yz +Yz +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +"} +(2,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Wn +XE +XE +XE +XE +XE +XE +XE +XE +Cf +Cf +Cf +Cf +if +Cf +Cf +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Wn +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +IG +Vg +"} +(3,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Wn +XE +XE +XE +XE +XE +XE +XE +XE +XE +Cf +Cf +Cf +if +if +Cf +Cf +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Wn +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(4,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Wn +XE +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +zw +Ey +Ey +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +XE +XE +XE +XE +XE +yT +yT +yT +yT +yT +yj +XE +XE +XE +XE +XE +XE +XE +XE +XE +Wn +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(5,1,1) = {" +Vg +pC +XE +XE +XE +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +Wn +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(6,1,1) = {" +Vg +pC +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(7,1,1) = {" +Vg +pC +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(8,1,1) = {" +Vg +pC +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(9,1,1) = {" +Vg +pC +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +Vg +"} +(10,1,1) = {" +Vg +pC +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +lw +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +Vg +"} +(11,1,1) = {" +Vg +pC +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +Vg +"} +(12,1,1) = {" +Vg +pC +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +GR +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +Vg +"} +(13,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +Vg +"} +(14,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +Vg +"} +(15,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +Vg +"} +(16,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +Vg +"} +(17,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +Vg +"} +(18,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +Vg +"} +(19,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +Vg +"} +(20,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +Vg +"} +(21,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(22,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(23,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(24,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(25,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(26,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +ff +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(27,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(28,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(29,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(30,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(31,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(32,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(33,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(34,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(35,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(36,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(37,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(38,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(39,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(40,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(41,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(42,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(43,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(44,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(45,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(46,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(47,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(48,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(49,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(50,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(51,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(52,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(53,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(54,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(55,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +DQ +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(56,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(57,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +DQ +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(58,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +DQ +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(59,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +DQ +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(60,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +iF +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(61,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +GR +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +iF +yj +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(62,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(63,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(64,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(65,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(66,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(67,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(68,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(69,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(70,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(71,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(72,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(73,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(74,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +bv +bv +rV +"} +(75,1,1) = {" +Vg +pC +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +bv +bv +rV +"} +(76,1,1) = {" +Vg +pC +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +bv +bv +rV +"} +(77,1,1) = {" +Vg +pC +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +zZ +Eb +Eb +Pi +Eb +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +Eb +Pi +QS +Eb +QS +QS +QS +Ve +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +Qr +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +eb +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(78,1,1) = {" +Vg +pC +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +yp +gu +ha +QP +QP +QP +QP +QP +QP +QP +QP +dY +dY +dY +JK +dY +dY +dY +dY +dY +dY +JK +dY +MT +SO +ca +ha +gu +ha +gu +gu +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Id +PC +te +uU +nU +Lo +AN +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(79,1,1) = {" +Vg +pC +XE +ha +ha +ha +tf +Mn +ea +pA +ea +pA +ea +pA +ea +To +TD +ul +ED +Ej +vj +ry +pr +ss +VO +up +Bp +Qe +gy +zJ +zJ +zJ +IU +GL +nu +jK +xy +lC +Rq +iE +Py +ca +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +vn +OY +OY +ny +OY +OY +vn +ha +ha +ha +ha +ha +ha +Id +PC +PC +PC +PC +Lo +Lo +PC +PC +Lo +AN +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(80,1,1) = {" +Vg +pC +XE +ha +ha +gu +so +DG +UG +dX +UG +dX +UG +dX +UG +ha +nH +Po +tN +Ej +ss +CY +lO +qq +qX +KQ +rL +dY +PV +vs +oU +IW +uG +sV +Uo +WW +Xm +lC +Rv +oP +rf +ca +oD +ZK +ZK +ZK +ZK +ha +ha +ha +ha +ha +ha +ha +ha +ft +PC +PC +Lo +PC +Lo +NJ +OY +ar +KW +Gi +OY +pj +PC +PC +PC +Lo +PC +Lo +NJ +ws +ws +Nw +Nw +Nw +ws +Nw +Nw +ws +TQ +gx +bT +ha +ha +gu +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(81,1,1) = {" +Vg +pC +XE +ha +ha +ha +IA +so +wy +wy +wy +wy +wy +wy +DG +Ps +Dh +mP +ha +QP +yh +Sx +qX +lg +Ud +aI +nf +JK +PV +UD +Cl +tU +uG +sV +tL +la +TV +JK +Va +kw +jM +ca +TN +ZK +mY +ZX +Qx +As +ha +ha +ha +ha +ft +PC +PC +NJ +yL +yL +yL +zR +zR +yL +OY +Gx +uZ +Rl +OY +dy +zD +zD +dy +dy +dy +gu +Yy +ws +xv +zo +yR +Vn +lm +yS +zn +bk +Xv +gx +GE +ha +ha +ha +gu +gu +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(82,1,1) = {" +Vg +pC +XE +ha +ha +ha +Vr +dX +wy +wy +wy +wy +wy +wy +rn +ha +nH +ha +ha +Cu +is +hP +dL +MY +Bp +ci +hF +dY +PV +Oj +VG +bI +uG +sV +Uo +OE +Xm +lC +tG +dq +yC +je +NK +bp +Bv +nR +ZK +kL +ha +ha +ha +ha +vn +yL +yL +yL +yL +zs +Zc +SF +xU +um +Hh +Hh +Dx +gK +Hh +KV +DN +EH +bD +qp +dy +dy +dy +ws +fn +cN +ac +fK +Dn +Pl +QD +Je +Wu +gx +GE +gx +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(83,1,1) = {" +Vg +pC +XE +ha +ha +ha +IA +so +wy +wy +wy +wy +wy +wy +jq +ha +nH +ha +ha +QP +is +mb +hR +io +Qy +Nq +qf +uO +Ld +oU +NW +oU +iT +JK +pQ +aX +Xm +lC +Vt +gE +Ae +yX +Ce +NY +ZK +ZK +ZK +kL +ha +ha +ha +ha +Bj +yL +xN +mA +sW +Sf +tH +AD +Iv +ZM +QV +sz +Ju +JN +Rg +mk +CI +eN +Eg +oT +hc +CO +mz +ws +zz +Ee +hX +ou +ws +bG +we +ws +TQ +gx +GE +gx +gx +gx +gx +gx +gx +gx +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(84,1,1) = {" +Vg +pC +pC +ha +ha +gu +Vr +dX +wy +wy +wy +wy +wy +wy +pA +ha +nH +ha +ha +QP +gd +Lj +Rs +Bp +dO +HF +vC +dY +dY +ev +UC +ev +JK +dY +iz +mf +CM +dY +ca +Lq +ca +ca +rQ +TF +GO +Dl +oD +vn +ha +ha +ha +ha +vn +yL +ZV +xS +Bm +kl +XP +Fk +XY +Nu +Bm +jv +yq +Ou +Dv +Fq +Ow +aP +XC +Et +Dv +pI +ly +ws +ic +Dn +ws +ws +ws +ws +ws +ws +vn +gx +GE +gx +gx +gx +gx +gx +gx +gx +gx +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(85,1,1) = {" +Vg +cJ +cJ +bT +bT +wJ +EP +MD +KE +KE +KE +KE +KE +KE +JZ +bT +Yn +bT +bT +QP +vd +Lj +Tj +lo +EL +ch +RY +dY +NZ +ud +uB +Xi +tb +bt +Kj +CH +bZ +dQ +bV +nY +Ch +Jv +Qn +SA +yD +wP +oD +bc +bT +bT +bT +bT +mR +yL +HL +wO +Bm +Bm +Bm +Bm +Bm +Bm +Bm +eI +Lk +oa +Dv +Dv +Dv +Dv +Dv +Dv +Dv +HY +DY +Dv +Jj +GD +gk +rT +eW +Gg +MZ +EG +vn +GE +GE +Of +Hj +Hj +Hj +Of +GE +GE +GE +GE +bT +bT +Yn +bT +bT +bT +bT +bT +UP +UP +UP +UP +UP +UP +UP +UP +UP +UP +HV +HV +WY +WY +HV +HV +UP +UP +UP +UP +UP +UP +UP +UP +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +ts +yv +yv +yv +yv +yv +yv +yv +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +Sk +Sk +Sk +rV +"} +(86,1,1) = {" +Vg +pC +pC +ha +ha +gu +Vr +dX +wy +wy +wy +wy +wy +wy +pA +ha +nH +ha +ha +QP +aV +mh +qW +dB +fd +uY +Vy +qs +Ql +yt +gW +Mk +Ua +wY +dY +qw +dY +JK +fu +qk +yX +cg +yD +Bt +DL +Ph +oD +LW +ha +ha +ha +ha +vn +yL +Bm +Bm +Bm +tX +vw +iK +BL +Xx +FL +pe +Fj +ya +du +nK +Fs +aA +bL +QZ +Dv +Dv +Dv +Dv +jG +qc +Zl +zL +BZ +bm +bY +yZ +vn +gx +GE +Of +cS +Mu +sl +Of +Of +Of +gx +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(87,1,1) = {" +Vg +pC +pC +ha +ha +ha +IA +so +wy +wy +wy +wy +wy +wy +jq +ha +nH +ha +ha +QP +QP +QP +QP +QP +cA +LR +nP +Ib +Ib +zI +Ib +Xm +vt +fc +GI +iH +DW +dY +ca +ca +ca +WI +iU +YV +oD +oD +Lw +LW +ha +ha +ha +ha +vn +Te +JU +BO +IF +sO +XM +KA +fm +Hn +Oe +DZ +ng +Cv +Tv +UI +Xh +wC +JX +VA +Nz +XV +zc +du +fM +qc +Zl +XI +LL +IO +aZ +yZ +vn +gx +Of +Of +KD +xZ +kB +Ek +FI +Of +Of +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(88,1,1) = {" +Vg +pC +pC +ha +ha +ha +IA +dX +wy +wy +wy +wy +wy +wy +pA +ha +nH +ha +ha +Ts +Sv +gh +wu +gL +aN +Pz +dk +Ib +Cr +aM +Ib +nX +UQ +dY +dE +PA +lX +dY +yy +yy +oD +oD +Wz +oD +oD +ft +Lo +EU +ha +ha +ha +ha +Bj +Te +wU +Xj +FL +dA +cz +YD +ZQ +WO +FL +UJ +ir +oJ +du +NE +mQ +HI +Lv +nE +zS +Wl +vJ +du +uV +Cy +gk +Ml +Bi +bY +WD +EG +vn +gx +lz +an +kH +wN +wN +wN +lE +wa +yW +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(89,1,1) = {" +Vg +pC +pC +ha +ha +ha +of +wy +wy +YF +YF +YF +wy +wy +UG +ha +nH +ha +ha +RT +lJ +Uc +OX +QP +QP +QP +QP +Ib +gw +tF +Ib +nT +EJ +dY +dY +QI +dY +wY +yy +yy +Vq +XX +ml +rD +Qj +LW +hK +hK +ha +ha +ha +ha +Bj +Te +Yb +Is +FL +FL +FL +FL +FL +FL +FL +Rf +aB +km +du +du +du +du +du +du +du +Ry +pB +du +hn +jm +rj +Lg +Uk +lu +aS +EG +vn +gx +lz +Cx +nd +vO +cD +HU +mV +KG +yW +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(90,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +gu +gu +ha +ha +ha +gu +gu +ha +ha +nH +ha +ha +JV +al +RT +al +iL +Pw +Pw +dd +Ib +We +tq +Ib +eV +Qf +vH +lW +DB +yy +yy +QH +yy +Vq +fI +hL +CD +Qj +LW +hK +hK +ha +ha +ha +ha +Bj +Te +FL +FL +FL +yo +NQ +kq +SH +fV +ld +Vp +em +Ja +YW +MQ +Ah +pi +bz +LP +du +du +du +du +Gt +rB +Pk +eF +rF +zt +eF +EG +vn +gx +lz +UB +nd +wj +eU +xo +mV +ae +yW +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(91,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +gu +gu +gu +ha +ha +ha +ha +ha +ha +nH +ha +ha +RT +al +RT +al +iL +Pw +Pw +Pw +Ib +Ib +Ib +Ib +Hf +WB +pm +lW +DB +yy +EB +ha +yy +oD +oD +wK +oD +oD +vn +hK +hK +ha +ha +ha +ha +Bj +bO +oj +mo +xm +pa +KI +Lf +Fz +HC +If +DZ +er +Cv +Jh +Qg +pG +cw +mC +dp +Hx +mU +rK +YW +sy +JS +Zl +od +Gu +mB +ZP +yZ +vn +gx +Of +Of +Ys +jd +ge +GW +mK +Of +Of +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(92,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +gu +gu +gu +ha +ha +nH +ha +ha +Ax +qz +GS +qz +iL +Pw +Pw +Pw +iG +QY +zj +lW +lW +Kr +lW +lW +DB +yy +EB +ha +WL +OS +pl +lc +OS +lc +LW +hK +hK +ha +ha +ha +ha +Bj +bO +lb +ym +ld +cx +SZ +gf +CR +tA +ld +jv +ct +Xb +YW +Iu +fB +WE +lD +zY +YW +YB +FJ +YW +ec +sP +Zl +Mi +qL +bY +Tu +yZ +LW +ha +GE +Of +Of +yn +dm +YE +hu +Of +gx +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yT +yj +bv +bv +rV +"} +(93,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +gu +gu +gu +ha +ha +nH +ha +ha +ha +KP +KP +KP +KP +KP +An +KP +KP +KP +AE +KP +AR +AZ +rb +KP +DB +yy +EB +ha +ha +gx +gx +gx +gx +gx +HZ +PC +PC +PC +Lo +PC +Lo +NJ +bO +Ty +OO +ld +ld +ld +ld +ld +ld +ld +eI +ct +by +YW +YW +YW +YW +YW +YW +YW +Yl +pK +YW +Gt +sP +gk +FS +wx +Xq +EG +EG +LW +ha +bT +gx +Of +tz +Of +Of +xi +xi +xi +xi +gx +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yT +yT +fl +KB +bv +bv +bv +"} +(94,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +ha +ha +nH +ha +ha +KP +KP +av +av +av +yI +fv +KP +Ih +pg +eH +Ob +oO +iy +nJ +KP +DB +yy +EB +ha +ha +ha +gx +gx +gx +gx +vn +iM +pO +pO +iM +iM +iM +iM +iM +iM +ld +ld +sK +Sd +hQ +zm +fC +ld +Ik +mw +Ri +YW +MI +Cs +BS +Ta +pz +YW +YW +YW +YW +uD +RW +gk +EG +EG +EG +EG +ft +NJ +gu +vg +vg +vg +qb +MH +GY +xi +Gl +UL +xi +yy +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yT +yT +hC +SG +lA +hC +DP +hC +"} +(95,1,1) = {" +Vg +pC +pC +ha +ha +gu +gu +ha +ha +gu +ha +ha +ha +ha +ha +ha +nH +ha +ha +KP +ZA +mE +xr +xr +qd +CB +dT +dh +Ro +zv +Vu +oO +iy +lU +KP +oX +yy +yy +ha +ha +ha +gx +gx +gx +gx +HE +iM +Fn +Ep +iM +Fr +td +Jg +he +iM +oF +jj +aF +aF +aF +aF +aF +On +wS +EN +xJ +On +aF +aF +aF +aF +aF +DA +ty +NF +ty +VE +XH +ty +kf +kj +gk +ft +hH +ha +ha +XZ +IP +GA +cb +kh +li +xi +MF +Pa +cG +ZE +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yj +yj +yj +yT +yT +yT +hC +vk +JH +hC +hC +hC +"} +(96,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +KP +qy +uP +hZ +hZ +jY +jY +Qv +Yu +Ro +mm +IT +zh +oN +FZ +oA +Up +yy +EB +ha +ha +ha +gx +ha +gx +gx +zK +Sc +rE +oy +Ni +LM +TA +Hs +jT +Ni +fi +Ad +CW +CW +aj +dV +fe +Tx +PD +mX +ax +jS +vr +dV +dV +dV +dV +lS +rt +jo +Ba +Rc +qC +Li +ut +LO +gk +LW +ha +ha +ha +XZ +kQ +Mr +bl +fx +Xd +xi +XG +AG +xi +vD +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yT +yj +yj +yj +yj +yT +yT +hC +SG +lA +hC +FH +hC +"} +(97,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +nH +ha +ha +KP +dU +yB +yB +yB +as +Kk +fZ +PQ +Hc +Ff +Mo +oO +Af +KP +KP +gR +yy +yy +ha +ha +ha +gx +ha +gx +gx +UH +wp +mD +oS +LK +Az +tI +pP +uT +oR +IJ +Dw +vN +Nv +Mc +wX +hN +MP +Qa +Ko +JF +eC +HX +Nv +Zn +aq +FO +en +gJ +XW +sm +yg +zf +aR +Nj +tC +gk +LW +ha +ha +ha +vg +xt +WS +nA +fx +zx +xi +uv +nI +xi +vn +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +FA +KB +bv +bv +bv +"} +(98,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +zb +KP +KP +KP +KP +KP +KP +KP +KP +KP +KP +nN +oO +AF +Im +KP +vn +yy +yy +ha +ha +gx +gx +gx +gx +gx +HE +iM +rP +rP +iM +rP +rP +rP +iM +iM +Bf +op +Xs +qV +QU +WH +lr +MN +dG +Cn +YP +Cn +Cn +MN +MN +Kb +Kb +Aa +Aa +TX +Ui +ib +ib +VI +ib +ib +gk +LW +ha +ha +ha +XZ +Su +cp +OJ +Cz +BP +hT +XB +Xp +jg +vn +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yT +yj +bv +bv +rV +"} +(99,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +Sb +oL +Gz +El +Fu +Uu +eX +OQ +au +KP +py +oO +Hv +ub +KP +vn +yy +EB +ha +ha +gx +gx +gx +gx +gx +ra +LQ +LQ +LQ +Lo +LQ +Lo +LQ +ZE +IQ +da +Cm +Oi +MN +MN +MN +MN +MN +jQ +un +Zr +EY +Tr +mT +MU +Kb +OZ +Aa +yA +Pb +xx +ib +TB +xP +ks +ib +ft +NJ +ha +ha +ha +XZ +qM +gC +QG +sp +wq +yc +Uw +mv +vg +vn +ha +bq +ha +ha +ha +ha +ha +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(100,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +Sb +ms +cn +ZN +Lt +Uu +uq +tm +QN +KP +iD +oO +uK +MW +KP +pj +ZE +yy +ha +ha +gx +gx +gx +gx +gx +vn +ha +ha +ha +ha +ha +ha +ha +vn +IQ +da +Uj +nk +MN +ej +DD +gs +KK +SB +bf +Iz +NX +jp +GN +id +Kb +Qu +Aa +qo +Fg +LG +ib +cB +rl +gI +ib +vn +ha +ha +ha +ha +vg +vg +vg +vg +jy +YC +QB +vg +vg +vg +vn +ha +nH +ha +ha +ha +ha +ha +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(101,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +Sb +Sb +nO +Mb +mj +Uu +cr +KU +cr +XQ +XQ +XQ +Lu +SK +XQ +XQ +vn +EB +ha +ft +oE +oE +oE +oE +oE +hH +ha +ha +ha +ha +gu +ha +ha +Bj +IQ +da +yN +Ay +Cn +RJ +SB +SB +cW +HW +HW +HW +NU +xO +rq +Hd +Kb +Kb +Aa +Rw +Rh +ex +ib +ib +ib +ib +ib +vn +ha +ha +ha +ha +bT +ha +ha +vg +fP +uw +vg +vg +ft +Lo +NJ +ha +nH +ha +ha +ha +ha +ha +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(102,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +Sb +uQ +iJ +JO +Uu +Ti +ek +PK +eu +Qh +fa +sH +sk +Tw +XQ +pj +Lo +Lo +it +gx +gx +gx +gx +ha +ha +ha +ha +gu +gu +ha +ha +ha +Bj +wG +Df +qi +iw +Cn +qr +SB +EE +Av +ZY +ZY +cl +AI +RJ +ni +Th +Kb +ha +Aa +ys +ta +FF +yJ +ft +LQ +LQ +LQ +yb +JR +PC +LQ +AN +bT +ha +ha +XZ +lN +kR +Jw +jg +vn +ha +ha +ha +nH +ha +ha +ha +ha +ha +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(103,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +Sb +Sb +rM +GT +Uu +sY +Mv +UU +eu +aG +lQ +pT +sd +Yg +XQ +np +np +XQ +GP +gx +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Bj +IQ +da +qB +nQ +IN +jD +SB +rq +Kl +cj +cj +cj +cj +CX +SB +bW +Kb +ha +Aa +Aa +TX +kC +Aa +LW +ha +ha +ha +ha +ha +ha +ha +Ap +bT +ha +ha +XZ +Ij +hA +qO +jg +vn +ha +ha +ha +nH +ha +ha +ha +ha +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(104,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +yQ +Nf +Ov +ol +OR +kM +bE +eu +tV +ph +EO +Yi +Jy +Pc +pp +lt +ju +Ho +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Bj +IQ +da +Ls +Xf +ME +oi +qJ +tR +ob +ob +ob +MC +SB +SB +cW +pc +Kb +ha +JP +mc +SC +iQ +yJ +LW +ha +ha +ha +ha +ha +ha +ha +Bj +bT +ha +ha +vg +Ox +aT +vg +vg +vn +ha +ha +ha +nH +ha +ha +ha +ha +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(105,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +yQ +yQ +YJ +JL +kg +bh +zB +Wm +eu +eu +iA +BK +hS +eu +XQ +qx +Wy +IE +hY +gx +gx +ha +ha +gu +ha +ha +ha +ha +ha +ha +ha +ha +vn +wG +TP +Ls +th +Cn +Oh +Gm +ls +RG +rU +Ru +Wj +mM +uA +Fy +Kb +Kb +ha +JP +DU +qZ +df +yJ +LW +ha +ha +ha +ha +ha +ha +ha +pv +Wv +KC +HS +ck +Hb +Hb +ck +Hb +Ub +ha +ha +ha +Ly +ha +ha +ha +ha +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(106,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +lj +Ii +hM +vi +AX +AX +kM +VU +eP +pY +le +rw +zH +Tt +Vk +mI +rA +XQ +Ll +gx +gx +ha +ha +ha +ha +ha +ha +ha +bU +ha +ha +ha +Bj +IQ +da +Ls +Rz +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +ha +ha +Aa +Aa +So +hl +Aa +vn +ha +ha +ha +ha +ha +ha +ha +vn +bT +ha +ha +gx +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(107,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +lj +rW +hM +vi +AX +AX +sa +yz +KN +Il +Bd +Np +ZT +YZ +Vk +hq +hq +XQ +DB +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Bj +IQ +da +Ls +YU +FN +nL +ha +ha +ha +Id +Lo +Lo +Lo +Lo +Lo +Lo +Lo +Lo +Lo +vq +be +NB +vq +hH +gu +ha +ha +gu +ha +gu +gu +vn +bT +ha +gx +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +tw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(108,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +lj +Ii +hg +iW +Wt +Gr +BD +eY +vp +cv +LI +Rn +aL +Vd +Vk +KS +wc +wc +el +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Bj +IQ +da +Ls +YU +Zz +nL +ha +ha +ha +Bj +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +ha +gu +ha +ha +ha +ha +ha +ha +Bj +bT +gx +gx +gx +gx +gx +ha +ha +ha +FX +ha +ha +ha +ha +ha +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(109,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +yQ +yQ +ih +IY +qD +xV +qD +sr +SJ +dw +FB +UY +qA +FP +Vk +ZJ +ha +ha +ha +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Bj +wG +tr +Nm +qn +wG +wG +ha +ha +ha +Bj +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +ha +ha +ha +ha +gx +gx +gx +gx +AL +GE +gx +gx +gx +gx +gx +gx +gx +gx +gx +ha +ha +ha +fQ +RO +RO +Kw +Kw +RO +RO +RO +fQ +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(110,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +FK +Yc +Yc +sA +QT +hD +Yc +lP +bN +hk +Lb +dt +Vk +Vk +ZJ +ha +ha +ha +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Bj +wG +sh +VQ +sh +wG +ha +ha +ha +ha +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +ha +gx +gx +gx +gx +gx +AL +GE +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +xq +xq +xq +xq +xq +xq +xq +xq +xq +gx +gx +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(111,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +FK +xB +sf +AH +qa +dJ +AK +eO +bN +Tz +nG +Tc +dg +Vk +ZJ +ha +ha +ha +gx +gx +ha +ha +uH +ha +ha +ha +gx +gx +ha +ha +ha +Bj +oM +kO +Es +Dt +oM +ha +ha +ha +ha +LW +ha +ha +bU +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +gx +gx +gx +gx +gx +gx +AL +GE +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +xq +xq +xq +xq +xq +xq +xq +xq +xq +gx +gx +gx +gx +gx +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(112,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +FK +De +zu +iN +DE +Dq +zu +tT +Vk +sn +RN +aL +rm +cO +ZJ +ha +ha +ha +gx +gx +ha +ha +ha +Gk +ha +gx +gx +ha +ha +ha +ha +Bj +oM +Yt +Hm +EF +oM +ha +ha +ha +ha +vn +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +ha +ha +gx +gx +gx +gx +gx +gx +AL +GE +gx +ha +ha +gx +gx +gx +gx +ha +ha +ha +ha +ha +fQ +hG +PW +PW +PW +hG +hG +hG +fQ +zw +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(113,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +FK +im +zu +us +KH +IV +zu +zO +Vk +nm +RN +aL +ww +cO +DB +ha +ha +ha +gx +gx +ha +ha +uH +ha +ha +gx +gx +gx +gx +ha +ha +Bj +ux +RA +Hm +DJ +oM +ha +ha +ha +ha +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +ha +gx +gx +gx +gx +gx +gx +ha +LW +bT +ha +ha +ha +ha +ha +ha +ha +ha +FX +ha +ha +ha +ha +Cf +if +if +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(114,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +FK +Sj +FK +Zg +vz +YI +Sh +gm +Vk +bg +RN +aL +Zk +Vk +ZJ +ha +ha +gx +gx +gx +ha +ha +gx +ha +ha +gx +Oc +Oc +gx +ha +ha +Bj +ux +RA +Hm +Za +Tl +Tl +Tl +Tl +Tl +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +ha +ha +gx +gx +gx +gx +ha +ha +LW +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +tw +zw +zw +zw +zw +zw +zw +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(115,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +FK +FK +tZ +zu +zu +Iy +zu +zu +qv +Vk +kn +hb +ZT +yV +cO +DB +ha +ha +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +gx +ha +ha +Bj +ux +RA +Hm +Ww +Tl +fA +kI +Kf +Tl +vn +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +ha +gx +gx +gx +gx +ha +ha +Ap +bT +ha +ha +ha +ha +ha +ha +ha +ha +bU +ha +ha +ha +ha +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(116,1,1) = {" +Vg +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +FK +ag +vA +kS +xD +fS +DK +kS +kU +Vk +dN +Um +Fi +fY +cO +ZJ +ha +ha +gx +gx +ha +gx +gx +gx +gx +ha +gx +Oc +Oc +gx +ha +ha +Bj +oM +iS +zQ +Bb +Pv +AB +Gh +NL +Tl +iq +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +Oc +ab +Oc +gx +gx +gx +gx +gx +ha +ha +ha +Bj +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +pw +ha +ha +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(117,1,1) = {" +Vg +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +FK +LY +Vo +FK +FK +FK +FK +FK +Vk +Vk +sC +oI +Vk +Vk +Vk +DB +ha +gx +gx +gx +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +Bj +oM +EC +VW +Zf +uF +Gp +dx +Dp +cR +VP +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +Oc +ab +Oc +gx +gx +gx +gx +gx +gx +ha +ha +Bj +dP +dP +dP +dP +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(118,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +FK +Ga +fD +FK +yy +Hr +yy +NC +rH +Zj +Bq +ot +cO +KS +wc +el +ha +gx +gx +gx +ha +bU +gu +ha +ha +ha +gx +gx +gx +gx +ha +ha +Bj +ux +Gc +VH +Qz +Tl +Lp +rC +hy +Tl +go +ha +ha +ha +ha +ha +bU +ha +ha +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ha +ha +ha +nF +dP +ro +hx +dP +ti +ti +nV +ha +ha +ha +ha +ha +nH +ha +ha +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(119,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +wL +XF +wf +wL +yy +yy +yy +yy +rH +UT +tk +gQ +cO +ZJ +ha +ha +gx +gx +gx +gx +ha +ha +ha +ha +gu +ha +gx +gx +ha +ha +ha +ha +vn +ux +RA +VW +gz +Tl +Tl +Tl +Tl +Tl +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ha +ha +ha +fo +sS +JT +lG +qN +MM +gl +nV +nV +nV +ha +ha +ha +nH +ha +ha +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +hE +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(120,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +wL +XF +wf +wL +yy +yy +yy +yy +Vk +Vk +dZ +xk +Vk +DB +ha +ha +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +cZ +ha +gu +ha +vn +ux +RA +VW +vM +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +Oc +ab +Oc +gx +gx +gx +gx +gx +xK +wr +jz +YH +dP +zP +Jb +qN +gP +br +YM +fg +nV +ha +ha +ha +nH +ha +ha +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +bv +bv +rV +"} +(121,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Ly +ha +ha +ha +ha +wL +XF +wf +wL +yy +yy +yy +yy +yy +vo +Vm +YA +CQ +ur +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +gu +Bj +oM +kc +VW +HQ +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +Oc +ab +Oc +gx +gx +gx +gx +gx +wb +nV +ti +ti +dP +PY +Jk +qN +Ms +jL +XJ +mN +pM +ha +ha +ha +nH +ha +ha +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +bv +bv +bv +rV +"} +(122,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bU +ha +wL +kV +wf +wL +yy +yy +yy +yy +yy +pV +Xe +Xe +Qd +ha +gx +gx +ha +ha +ha +Id +PC +Lo +PC +Lo +Lo +PC +PC +PC +Lo +PC +Lo +PC +NJ +oM +CC +zG +jF +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +ha +gx +gx +gx +Hu +mS +sc +MO +zM +cK +Pd +Le +uS +PF +XJ +Wq +pM +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +bv +bv +rV +"} +(123,1,1) = {" +Ds +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +wL +XF +wf +qU +yy +yy +yy +yy +yy +vP +gx +gx +gx +gx +gx +gx +ha +ha +ha +Bj +FU +eS +eS +eS +FU +FU +oM +oM +xz +xz +xz +oM +oM +oM +rR +Lz +px +oM +oM +xz +xz +xz +xz +oM +jN +jN +OA +OA +OA +jN +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +xX +Nn +BH +mG +Ie +db +He +XJ +MX +Au +EZ +rZ +nV +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +bv +bv +rV +"} +(124,1,1) = {" +eM +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +FX +ha +wL +XF +wf +wL +yy +yy +yy +yy +pV +Qd +gx +gx +gx +gx +gx +ft +PC +PC +Lo +NJ +FU +Tm +Vb +oe +dv +Gq +eD +Db +Ez +BY +uz +Db +ht +RE +ad +lH +GF +zV +HA +GB +Ez +BY +uz +lF +Ir +Oy +bw +hU +ma +jN +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +wb +nV +Ht +Zb +nV +PN +xe +Tq +fO +En +XJ +ON +pM +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +yj +yj +bv +bv +rV +"} +(125,1,1) = {" +NR +rY +rY +BN +ky +yO +BQ +hv +hv +hv +BQ +BQ +hv +BQ +hv +hv +BQ +BQ +BQ +hv +BQ +ML +NN +fJ +xF +Xe +Xe +Xe +Xe +Qd +gx +gx +gx +gx +gx +gx +ZF +FU +eS +eS +eS +FU +HR +Qt +Qt +FE +Gq +Kq +Hm +Hm +Hm +Hm +Hm +ds +Jq +nr +VH +iO +Jq +Kq +Hm +TM +pH +NH +ds +Ir +UN +GM +GM +GG +jN +OA +OA +OA +jN +kv +ha +ha +gx +gx +gx +gx +Qp +nV +Ed +Ed +nV +pR +He +YG +Ie +oC +vI +rd +pM +ha +ha +ha +nH +ha +ha +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +yj +bv +bv +bv +rV +"} +(126,1,1) = {" +Ak +wM +TS +fL +gx +RK +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ex +gx +gx +gx +gx +gx +gx +RX +ID +Fb +gq +ln +TT +mt +UK +UK +mr +ue +qh +LT +vK +vK +vK +vK +OV +ug +Ws +fj +CF +rR +Fo +Hm +Hm +Hm +pb +VV +Kt +jl +rO +rO +XL +Jo +gN +MA +WU +Cb +Sz +gx +gx +gx +gx +gx +gx +MR +wr +KF +Yo +nV +Dk +He +Qq +Ie +mF +xb +nV +nV +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +yj +yj +bv +bv +rV +"} +(127,1,1) = {" +Ak +wM +wM +wM +gx +RK +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Al +vx +BI +Cd +jx +OI +HO +Qt +DH +xW +FU +xR +dH +VM +VM +VM +VM +lv +FW +JI +sF +wg +FW +PB +VM +VM +VM +dH +sQ +jN +TG +XR +GM +gr +Ra +SW +tp +VC +fT +Eq +gx +gx +gx +gx +gx +ha +ha +ha +ha +rc +nV +Xu +Br +GK +nV +nV +nV +nV +ha +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +yj +yj +bv +bv +rV +"} +(128,1,1) = {" +Ak +wM +yH +fL +gx +RK +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +RX +ID +yr +It +nM +TT +IH +QM +QM +vV +si +fw +vm +Hm +Hm +Hm +Hm +AC +rR +VJ +VW +ps +ug +eL +vK +vK +vK +hf +ZW +RF +TE +at +at +Mt +Jo +nn +aC +kp +Cb +Sz +gx +gx +gx +gx +gx +gx +ha +ha +ha +Qp +Nn +uf +OW +Oq +pM +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +yj +bv +bv +rV +"} +(129,1,1) = {" +NR +rY +rY +Fc +bj +aQ +Dc +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +NV +FU +BT +BT +BT +FU +zq +Qt +Qt +VB +Gq +Kq +Hm +Hm +Hm +Hm +Hm +ds +Jq +CU +VH +fk +Jq +Kq +AA +AA +AA +Hm +ds +Ir +Xa +GM +GM +Gj +jN +xH +xH +xH +jN +kv +ha +ha +gx +gx +gx +gx +ha +jZ +wr +aY +Nn +ow +tD +tl +pM +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +bv +bv +bv +rV +"} +(130,1,1) = {" +eM +pC +Dc +zk +ki +fE +Dc +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +FX +ha +ha +gx +gx +gx +gx +gx +ha +ha +OP +ha +gx +gx +gx +ha +ha +Ap +ha +ha +ha +ha +FU +Rx +zX +sM +PT +Gq +Nr +xd +zp +bF +vQ +ET +Bs +zV +KX +DT +KL +yk +Rj +jR +rG +aw +Gy +Nt +Ir +LD +JG +LJ +BG +jN +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +xK +aY +FR +FR +FR +tj +Wx +WZ +FR +FR +FR +FR +ha +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +yj +bv +bv +rV +"} +(131,1,1) = {" +eM +pC +Dc +ZO +eB +Eu +Dc +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Xg +HP +HP +HP +nq +ha +ha +ha +ha +gx +gx +gx +ha +ha +Ap +ha +ha +ha +ha +FU +BT +BT +BT +FU +FU +oM +oM +tE +in +tE +oM +oM +oM +rR +Lz +lI +oM +oM +tE +in +tE +tE +oM +jN +jN +xH +xH +xH +jN +ha +ha +ha +ha +ha +OP +ha +gx +gx +gx +gx +Qp +FR +FR +wt +ka +ZZ +jc +oV +tt +nc +NP +FR +FR +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +if +Cf +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +PU +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +yT +yT +yT +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +bv +bv +bv +"} +(132,1,1) = {" +Vg +pC +Dc +Dc +Dc +Dc +Dc +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +GJ +OB +OB +OB +GJ +ha +ha +ha +ha +gx +gx +gx +ha +ha +Bj +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +XD +Eh +Yh +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +Qp +WV +RU +FC +OL +OL +dS +OL +OL +OL +Lx +lk +ZG +ha +ha +ha +nH +ha +ha +ha +Cf +Cf +if +if +Cf +Cf +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +PU +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +yT +Ey +yT +yT +yT +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +Rr +"} +(133,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +pw +ha +ha +ha +ha +ha +GJ +Rp +Be +nl +GJ +ha +ha +ha +VF +ZH +HP +hW +LX +Lo +hH +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +Yt +VW +Dr +VZ +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +Qp +WV +xY +xE +PR +PR +Kg +Cw +Cw +Cw +VN +fs +ZG +ha +ha +ha +nH +ha +ha +ha +ha +Cf +Cf +if +Cf +Cf +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +PU +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +yT +Ey +Ey +Ey +yT +yT +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +Rr +"} +(134,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +GJ +Be +pJ +Be +GJ +ha +ha +GJ +GJ +Uz +WK +GJ +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +oM +oM +oM +oM +oM +jA +VH +Iw +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +dP +Am +SU +SU +SU +SU +aY +FR +VS +QR +Pf +Ya +Ya +Ya +Ya +aW +xn +wz +FR +ha +ha +ha +nH +ha +ha +ha +ha +Cf +Cf +if +if +Cf +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +PU +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +yT +yT +Ey +Ey +Ey +yT +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +Rr +"} +(135,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +GJ +VR +Be +oc +GJ +ha +ha +yM +Yr +pn +Wi +Us +LW +ha +ha +ha +ha +ha +ha +ha +bU +ha +ha +ha +ha +ha +ha +ux +Vw +JB +GB +mp +uk +Hm +VW +Dr +NO +NO +NO +NO +NO +ha +ha +ha +ha +ha +ha +ha +ha +ha +bU +ha +ha +ha +dP +Ny +gx +gx +gx +gx +FR +FR +Mp +QR +nS +qG +qG +qG +qG +JE +xn +Ol +FR +FR +ha +ha +nH +ha +ha +ha +ha +ha +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +PU +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +yT +yT +yT +yT +yT +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +Rr +"} +(136,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +GJ +GJ +Do +GJ +GJ +ha +ha +yM +Hg +pU +js +Us +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +eo +TI +iX +UR +VM +VM +JJ +Dr +NO +CP +Dz +Ss +NO +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +dP +lZ +gx +gx +gx +gx +WV +eq +se +QR +nS +qG +qG +qG +qG +JE +xn +OL +uy +ZG +ha +ha +nH +ha +ha +ha +ha +ha +zw +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +PU +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +Rr +"} +(137,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +GJ +GJ +EI +OH +GJ +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ux +Ot +Tf +yK +Di +oM +pu +VW +pX +NO +Xt +Ck +sb +NO +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +dP +dI +gx +gx +gx +gx +WV +VS +OL +QR +nS +qG +pk +oY +cT +BU +xn +OL +Ze +ZG +ha +ha +nH +ha +ha +ha +ha +ha +zw +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +PU +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +Rr +"} +(138,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +GJ +sN +aK +yP +Us +vn +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +YL +ox +og +on +uk +Hm +sR +Em +XS +pF +Pm +YK +NO +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +dP +Bk +gx +gx +gx +gx +FR +qH +OL +QR +nS +qG +ZS +Jf +cT +BU +GX +WC +Si +FR +ha +ha +nH +ha +ha +ha +ha +ha +zw +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +bv +bv +bv +"} +(139,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +GJ +IK +Hw +Se +Us +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ux +pq +BV +rX +ZB +Hm +Hm +VW +Jz +NO +Zm +xw +ko +NO +ha +ha +ha +ha +ha +ha +ha +ha +oK +ha +ha +ha +ha +Sw +ha +gx +gx +gx +gx +WV +VS +OL +QR +nS +qG +LA +Wp +cT +BU +xn +OL +Ze +ZG +ha +ha +nH +ha +ha +ha +ha +ha +zw +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +yj +bv +bv +rV +"} +(140,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +GJ +jw +yY +Lr +Us +pj +PC +PC +Lo +PC +AN +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +oM +oM +oM +oM +oM +Ug +VW +ok +NO +NO +NO +NO +NO +ha +ha +ha +ha +ha +ha +ha +zy +mg +KJ +xj +Nl +QK +mg +nB +gx +gx +gx +gx +WV +PP +se +QR +VK +cT +cT +cT +cT +BU +xn +OL +Wk +ZG +ha +ha +nH +ha +ha +ha +ha +ha +zw +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +bv +bv +bv +rV +"} +(141,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +gj +gj +sw +sw +sw +GJ +Od +bM +PM +GJ +ed +ed +ed +Ip +Ip +pj +ZE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +Jm +lM +ku +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +CS +iP +Vi +Vi +Nl +CS +ha +gx +gx +gx +gx +FR +FR +Ic +QR +VK +cT +cT +cT +cT +BU +xn +Ol +FR +FR +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +if +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +yj +bv +bv +rV +"} +(142,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +gj +gj +de +WA +WA +sx +GJ +GJ +EI +tM +GJ +oo +om +IR +TW +Ip +Ip +pj +AN +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ux +RA +Hm +ok +VZ +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Sl +iB +Fw +ey +Pn +Zs +gu +ha +gx +gx +gx +ha +FR +VS +QR +Os +Uq +Uq +Uq +Uq +ij +xn +wz +FR +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +yj +bv +bv +rV +"} +(143,1,1) = {" +Vg +XE +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +gj +gj +vE +wQ +wQ +wQ +Mm +pN +GC +tx +XU +qT +ZL +qm +qm +qm +RI +Ip +Ip +LW +ha +ha +ha +ha +ha +bU +ha +ha +ha +ha +ha +ha +oM +eJ +bC +oQ +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +MS +sZ +TK +Qm +Go +Sl +ha +gu +gx +gx +gx +ha +WV +RV +AV +PR +PR +qY +Cw +Cw +Cw +vU +bS +ZG +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +Ey +bv +bv +rV +"} +(144,1,1) = {" +Vg +XE +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +xG +kK +BR +rz +FM +uN +Jc +pN +Ei +af +ef +qT +bH +NI +NI +NI +tn +mx +Ip +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +EQ +Xo +Ac +Xo +EQ +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Qc +sZ +Ab +xg +sZ +Zs +ha +gx +gx +gx +gx +ha +WV +VY +gV +OL +OL +UV +OL +OL +OL +HK +jC +ZG +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +if +if +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +bv +bv +bv +rV +"} +(145,1,1) = {" +Vg +XE +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +xG +II +Yj +tc +ZR +CG +tg +pd +Cq +af +qI +WQ +EX +TR +EK +Ar +Ag +TC +ga +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +EQ +EQ +Aq +Sa +Ye +EQ +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Sw +RR +Cj +iv +eZ +Sw +ha +gx +gx +gx +gx +ha +FR +FR +ew +YX +YR +Fp +ke +qj +DM +rN +FR +FR +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +Ey +Ey +bv +bv +rV +"} +(146,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +xG +Qi +In +YT +Gn +lR +KZ +PZ +iY +yG +jJ +cY +Ur +xA +Js +Nx +iR +KT +ga +vn +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +QJ +Ut +kd +kF +AS +iV +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +zy +mg +KJ +zU +Jp +QK +mg +NS +gx +gx +gx +gx +ha +ha +FR +FR +FR +tj +MV +WZ +FR +FR +FR +FR +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Zu +Ao +Ao +Ao +Ao +Zu +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +Ey +Ey +bv +bv +rV +"} +(147,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +xG +eg +fy +fy +cC +AY +nv +XO +CN +gX +pZ +rI +kN +Vs +uJ +Xr +Oo +KT +ga +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +QJ +ay +kd +TL +AS +iV +ha +ha +ha +ha +ha +ha +ha +ha +bU +ha +ha +ha +qS +ha +ha +ha +ha +qS +gx +gx +gx +gx +ha +ha +ha +ha +ha +iZ +WG +AT +iu +JA +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Ey +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +bv +bv +rV +"} +(148,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +gj +Sq +cX +bs +RD +MB +bX +pd +TZ +Hk +Hi +WQ +vh +lL +Kp +eT +fz +Ev +ga +FY +kP +JW +ha +ha +ha +YO +YO +YO +YO +YO +YO +YO +vb +oz +yE +AS +iV +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +iZ +dW +wd +IS +JA +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +Ey +Ey +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Zu +Ao +Ao +Ao +Ao +Zu +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +bv +bv +bv +rV +"} +(149,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +gj +Dj +rv +Xn +gg +zN +Me +pd +Ym +Hk +kE +qT +cU +ah +Kp +KT +No +kx +Hz +Ue +Hz +Hz +YO +YO +YO +YO +Vz +re +KO +re +Uf +Nd +vb +Qb +yE +Ji +EQ +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +ha +gu +ha +ha +ha +Ke +Uh +ua +su +Ke +Ke +Ke +Ke +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(150,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +gj +TU +KY +ql +Op +Cc +AJ +pd +gS +Hk +kE +qT +hh +ah +wA +KT +pD +kx +Aw +Bc +Zd +kx +Vc +wi +Vc +vb +oh +Hq +Hq +Hq +XA +LZ +vb +MJ +GU +AS +iV +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +ha +Ke +jW +no +Nh +Uh +ji +ji +Ke +Ke +ha +ha +ha +nH +ha +ha +ha +ha +ha +Ey +Ey +Ey +Cf +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +fQ +LS +LS +LS +LS +fQ +Ey +Ey +gx +GE +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(151,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +Ku +Ku +QW +QW +QW +Ky +Ky +QW +QW +Ea +kA +qT +uc +hd +US +Rm +RS +kx +VT +md +zd +kx +sj +mu +ce +vc +ns +Pj +kD +ep +az +aJ +vb +Gw +ja +AS +iV +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +ha +ha +ha +Ke +OC +OC +Ke +SQ +AQ +KR +LF +iC +ZU +Ul +SE +ha +ha +ha +nH +ha +ha +ha +ha +ha +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +xq +xq +xq +xq +xq +xq +gx +gx +gx +GE +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(152,1,1) = {" +Vg +XE +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +Ku +eE +ST +Xl +Da +Rb +Zv +Ky +tS +gt +qT +qT +WQ +WQ +WQ +qT +kx +jO +tu +Zo +kx +HH +Zp +HH +vb +os +gp +Fd +gp +es +Ai +fq +sg +nj +Pt +EQ +Mg +Mg +EQ +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +gx +gx +gx +gx +ru +Ke +kZ +Jx +Ke +Mq +bB +SV +LF +BF +qR +qR +SE +ha +ha +ha +nH +ha +ha +ha +ha +ha +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +xq +xq +xq +xq +xq +xq +gx +gx +gx +GE +gx +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +bv +rV +"} +(153,1,1) = {" +Vg +XE +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +yd +JM +qQ +Co +mO +uW +PE +Ky +jf +Vf +HG +eQ +sX +Zh +Dd +rk +kx +kx +Mx +LC +kx +vb +dK +vb +vb +vb +vb +vb +vb +qP +vb +vb +QQ +ll +Sp +tO +Vj +UZ +EQ +EQ +CT +CT +oZ +oZ +oZ +CT +oZ +oZ +CT +Gd +gx +gx +gx +gx +gx +gx +gx +gx +gx +EV +iZ +hs +cf +vY +Kz +BA +oH +Pe +uR +aD +aD +Ke +ha +ha +ha +nH +ha +ha +ha +ha +ha +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +fQ +Ha +Ha +Ha +Ha +fQ +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(154,1,1) = {" +Vg +XE +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +yd +JM +EA +Co +mO +Sg +Bg +LV +dr +SX +Ge +JY +zr +Jt +Om +uC +xa +Nk +sE +tW +FQ +am +GQ +ri +PS +bR +HN +BW +sJ +sv +lK +sU +Jl +ll +BM +Zx +Zx +Zx +sU +xs +LE +my +Gb +st +IX +wI +jk +Xz +UE +fb +gx +gx +gx +gx +gx +gx +gx +gx +gx +pS +rr +RL +QC +hr +Gf +Ne +xT +BJ +IM +aD +aD +Ke +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(155,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +yd +JM +qQ +Co +yl +Ks +qu +Yp +xM +QO +Mf +WJ +AU +Sm +tv +Bo +IC +sq +tB +Sm +jt +MK +cQ +gH +Pu +JC +MK +fF +Iq +WR +MK +MK +MK +jb +pt +MK +UM +MK +nD +ix +dF +hi +Hp +TH +lB +dF +Yv +OD +ZI +Ok +gx +gx +gx +gx +gx +gx +gx +gx +gx +BE +Ke +Zq +Zq +ba +LN +CE +LN +Uh +gB +yi +yi +SE +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +gx +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(156,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +Ku +RH +PJ +uL +ao +ER +OT +wl +Wg +SX +EM +DO +UF +UF +UF +UF +ez +tP +Vv +DO +NA +gO +Tk +wW +Ew +Xc +nt +gO +gO +gO +gO +gO +hJ +wW +kY +nt +sI +wW +na +dM +CT +RQ +hB +UA +jE +CT +HD +DC +CT +Ft +gx +gx +ha +gx +gx +gx +gx +gx +ha +ha +ha +ha +ha +ba +RB +Bh +LN +jr +gc +jI +tQ +SE +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +bv +rV +"} +(157,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +mJ +mJ +mJ +mJ +mJ +ap +Tg +Yf +Ky +Ns +SD +mH +Ma +vW +zW +wm +Wh +Ma +HM +Zt +Bl +Bl +Bl +Bl +wh +lq +My +SP +SP +SP +SP +wh +wh +TO +TO +WT +TO +TO +ie +cE +rh +CT +CT +CT +CT +CT +CT +Ki +Ki +CT +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +ba +Lm +sL +LN +Kh +kX +Ke +Ke +Ke +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(158,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +mJ +pE +pE +wE +mJ +mJ +mJ +mJ +mJ +PG +gZ +kG +Uy +Uy +Uy +Uy +Uy +Uy +wZ +bi +Bl +Rk +oB +Bl +lf +fU +xl +ho +gM +gM +cc +cs +wT +vv +sG +pf +Jn +Wr +OF +Kn +pL +LU +wv +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +ba +eR +po +ba +dC +dC +Ke +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(159,1,1) = {" +Vg +XE +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +WM +pE +pE +mq +wV +Fm +zE +Lc +mJ +jf +gZ +mL +Uy +RZ +PX +Kv +Jd +Uy +Fv +nW +eh +aa +UW +Bl +Kx +Re +wk +Hl +wo +IZ +IZ +IZ +IZ +TO +bo +qE +Hy +TO +OF +XK +OF +uX +wv +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +cq +fb +fb +fb +cI +ha +ha +ha +ha +ha +ha +ba +ba +ba +ba +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(160,1,1) = {" +Vg +XE +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +WM +Mz +OU +jV +bn +bn +cL +GZ +kb +cP +cM +LH +Uy +ES +mW +Xw +eG +Uy +Yq +cm +Bl +ve +MG +Bl +CA +Km +QA +fr +qe +Bn +BC +BC +Yd +TO +EW +TO +Nb +TO +mi +SS +wD +wD +wv +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +CT +sD +sD +sD +CT +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +bv +rV +"} +(161,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +WM +bK +vZ +xp +JD +Mz +dj +Lh +Ix +qK +KM +Uy +Uy +ii +HB +cu +nC +kW +Xk +do +Bl +Bl +Bl +Bl +zl +Ux +fN +YS +nZ +BC +Sr +BC +Sr +TO +Qo +TO +Cp +TO +Fe +VX +OF +xC +ui +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +CT +eK +eK +wH +CT +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(162,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +mJ +AP +Bx +ZD +nx +nx +Qk +qF +mJ +et +KM +Uy +Du +WN +kz +Cg +Uy +Uy +uj +Vf +HG +Ef +wh +vG +ZC +FV +bQ +tJ +kJ +BC +BC +BC +ai +TO +TO +TO +TO +TO +vT +VX +jU +OF +wv +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +CT +eK +RP +eK +CT +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +zC +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +Ey +Ey +Ey +bv +bv +rV +"} +(163,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +mJ +mJ +AO +Pg +Xy +nz +Pg +AO +mJ +dn +SL +Uy +wn +GH +dc +SR +Uy +co +Fa +Bo +gZ +bx +wh +vR +Mj +Mj +Mj +cd +vy +BC +Sy +BC +Sy +qg +ye +OF +sT +OF +nh +gT +vF +vF +wv +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +CT +lV +eK +gn +CT +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +Ey +Ey +bv +bv +rV +"} +(164,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +mJ +mJ +hI +gb +gb +hI +uh +uh +vl +PL +uh +AW +Nc +rS +AW +Uy +Ma +zi +Wc +Yk +bu +wh +Ln +Mj +Mj +Mj +cd +kk +BC +BC +BC +Sn +qg +sB +OF +YQ +uX +OF +AM +uX +fG +wv +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +CT +CT +Aj +CT +CT +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +fl +KB +bv +bv +bv +"} +(165,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +mJ +gb +gb +gb +gb +uh +lh +zF +SN +uh +uu +Eo +tK +tK +dR +Ma +vf +vf +vf +Ma +Wb +vR +Mj +Mj +Mj +cd +Bu +BC +OM +BC +Wa +qg +UO +OF +lx +uX +jn +AM +qt +ui +ui +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +hC +SG +lA +hC +DP +hC +"} +(166,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +mJ +aO +gb +gb +aO +uh +yx +WX +Wo +uh +BB +xI +nw +ze +Er +AW +ha +ha +ha +ha +Wb +mn +Bw +Bw +QX +Rd +hm +BC +BC +BC +Wa +qg +Vh +OF +OF +GV +Uv +La +ui +ui +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +hC +vk +jH +hC +hC +hC +"} +(167,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +ha +nH +ha +ha +ha +ha +ha +ha +ha +mJ +mJ +mJ +mJ +mJ +uh +lT +BX +QL +uh +AW +AW +AW +AW +AW +AW +ha +ha +ha +ha +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Fl +Fl +Fl +Fl +ui +ui +ui +ui +ui +ui +ui +ui +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +hC +SG +lA +hC +FH +hC +"} +(168,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +ha +nH +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +uh +hw +lp +bb +yu +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +FA +KB +bv +bv +bv +"} +(169,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +gu +yp +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +uh +uh +vl +rg +uh +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +Ey +bv +bv +rV +"} +(170,1,1) = {" +Vg +Wn +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +hV +Oa +Qr +Qr +Qr +Qr +Oa +Oa +xQ +bT +bT +bT +bT +iI +NG +CZ +Zy +yu +bT +wJ +wJ +wJ +NM +Oa +Oa +Oa +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Oa +aE +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +il +Na +Na +Na +Na +Na +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +HV +HV +HV +HV +WY +WY +HV +HV +HV +HV +yv +yv +yv +yv +GE +GE +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +PU +PU +PU +PU +PU +PU +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +Sk +Sk +rV +"} +(171,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +gu +ha +ha +ha +ha +iI +yF +fH +ig +yu +ha +gu +gu +gu +gu +gu +gu +gu +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +if +Cf +Cf +Cf +Cf +Cf +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(172,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +ha +uh +uh +DX +RC +uh +ha +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Na +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +if +Cf +Cf +Cf +Cf +Cf +fQ +xq +xq +fQ +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +bv +rV +"} +(173,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +pC +ha +ha +lY +oq +yy +lY +zg +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +VL +VL +VL +VL +VL +Na +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +if +if +Cf +Cf +Cf +jX +xq +xq +VD +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(174,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +zg +ha +ha +ha +ha +zg +zg +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +VL +VL +VL +VL +VL +VL +VL +VL +Na +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +if +if +if +if +jX +xq +xq +cy +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(175,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +zg +ha +ha +zg +zg +zg +zg +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +Na +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +if +if +FD +xq +xq +cy +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(176,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +if +FD +xq +xq +JQ +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +bv +rV +"} +(177,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +FD +xq +xq +JQ +if +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(178,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +jX +xq +xq +JQ +if +if +if +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(179,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +jX +xq +xq +cy +Cf +Cf +if +if +if +if +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(180,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ec +xq +xq +cy +Cf +Cf +Cf +Cf +Cf +if +if +if +Cf +Cf +Cf +Cf +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +bv +rV +"} +(181,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +fQ +xq +xq +fQ +Ey +Ey +Cf +Cf +Cf +Cf +Cf +if +if +if +Cf +Cf +Cf +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +bv +bv +rV +"} +(182,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +if +if +Cf +Cf +Cf +Cf +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(183,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(184,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +if +Cf +Cf +Cf +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(185,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(186,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(187,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(188,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(189,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(190,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(191,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(192,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(193,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(194,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(195,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(196,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(197,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(198,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +hE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(199,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(200,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(201,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(202,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +vB +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(203,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +yT +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(204,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +yT +yT +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(205,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +yT +yT +yT +yT +yT +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(206,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +yT +yT +yT +yT +yT +DQ +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +yT +yT +ip +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(207,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +yT +yT +yT +yT +yT +DQ +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +yT +yT +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(208,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +yT +yT +yT +yT +yT +Ey +Ey +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(209,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(210,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +zg +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(211,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +zg +zg +zg +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +yT +yT +yT +XE +XE +XE +Vg +"} +(212,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +zg +zg +zg +zg +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(213,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +zg +zg +bP +bP +bP +WP +yT +yT +yT +yT +DQ +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +yT +yT +yT +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(214,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(215,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +bP +bP +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(216,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(217,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(218,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +xL +tY +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(219,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +gD +Gv +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +pW +Ka +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(220,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +tY +bP +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +xh +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +pW +Ka +xL +PO +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +Vg +"} +(221,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +Kd +hO +hO +xh +Mh +tY +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +gD +Gv +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +Mh +tY +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +Vg +"} +(222,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +Mh +tY +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +Mh +tY +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +Vg +"} +(223,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +pW +Ka +xL +xL +PO +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +Vg +"} +(224,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +tY +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +hO +hO +tY +WP +WP +WP +WP +WP +WP +Kd +xh +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +Mh +hO +tY +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(225,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +tY +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +hO +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +xh +xL +xL +xL +Mh +hO +hO +tY +WP +WP +WP +fp +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +xh +xL +xL +xL +xL +Mh +tY +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(226,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +hO +xh +xL +xL +xL +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +hO +xh +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +ne +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(227,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +xh +xL +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(228,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +hO +ne +hO +hO +hO +hO +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +tY +WP +WP +WP +WP +WP +WP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +Mh +hO +hO +hO +tY +WP +WP +WP +WP +WP +WP +WP +Kd +hO +xh +xL +xL +xL +xL +xL +Mh +hO +hO +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(229,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +Mh +hO +hO +hO +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(230,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +xL +xL +xL +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(231,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +hO +hO +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(232,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(233,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(234,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +Vg +"} +(235,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +gD +za +Ka +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +Vg +"} +(236,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +Gs +xL +xL +xL +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +gD +Gv +WP +pW +Ka +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +Vg +"} +(237,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Gs +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +gD +za +za +Gv +WP +WP +WP +pW +Ka +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +Vg +"} +(238,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +Kd +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +gD +Gv +WP +WP +WP +WP +yT +yT +WP +pW +Ka +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +Vg +"} +(239,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +PO +WP +yT +WP +WP +yT +yT +yT +yT +WP +pW +Ka +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +Vg +"} +(240,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +PO +WP +yT +yT +yT +yT +Ey +yT +yT +WP +WP +fp +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +Vg +"} +(241,1,1) = {" +OK +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +Kd +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +PO +WP +WP +yT +yT +Ey +Ey +Ey +yT +yT +WP +pW +Ka +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +Vg +"} +(242,1,1) = {" +eM +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Mh +tY +WP +yT +yT +Ey +Ey +Ey +yT +yT +yT +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +XE +Vg +"} +(243,1,1) = {" +eM +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +PO +WP +WP +yT +Ey +Ey +Ey +Ey +yT +yT +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +XE +Vg +"} +(244,1,1) = {" +Ci +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +Yw +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Mh +tY +WP +yT +yT +yT +Ey +Ey +yT +yT +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(245,1,1) = {" +Ci +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +Yw +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +PO +WP +WP +WP +yT +yT +Ey +yT +yT +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(246,1,1) = {" +Ci +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +Yw +Yw +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Mh +tY +WP +WP +yT +yT +Ey +yT +yT +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(247,1,1) = {" +eM +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +pW +za +za +Ka +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Mh +tY +WP +yT +yT +yT +yT +yT +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(248,1,1) = {" +eM +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +fp +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +PO +WP +WP +yT +yT +yT +WP +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(249,1,1) = {" +eM +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +fp +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Mh +hO +tY +WP +yT +yT +WP +Kd +xh +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(250,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +fp +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +Mh +tY +WP +WP +WP +fp +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(251,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +Mh +tY +WP +WP +fp +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(252,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +Mh +hO +hO +xh +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +Mh +tY +WP +WP +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(253,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +pW +Ka +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +PO +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(254,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +fp +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +PO +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(255,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +fp +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +PO +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(256,1,1) = {" +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg "} diff --git a/modular_chomp/code/datums/supplypacks/medical.dm b/modular_chomp/code/datums/supplypacks/medical.dm new file mode 100644 index 0000000000..9c2328878e --- /dev/null +++ b/modular_chomp/code/datums/supplypacks/medical.dm @@ -0,0 +1,8 @@ +/datum/supply_pack/med/glucose_hypos + name = "Glucose Hypoinjectors" + contains = list( + /obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose = 5 + ) + cost = 25 + containertype = /obj/structure/closet/crate/zenghu + containername = "Glucose Hypo Crate" diff --git a/modular_chomp/code/game/objects/structures/loot_pile.dm b/modular_chomp/code/game/objects/structures/loot_pile.dm index c233078e85..ae71c9b397 100644 --- a/modular_chomp/code/game/objects/structures/loot_pile.dm +++ b/modular_chomp/code/game/objects/structures/loot_pile.dm @@ -9,4 +9,5 @@ common_loot = list(/obj/item/weapon/a_gift/advanced) pixel_x = -32 bound_width = 96 - bound_height = 64 \ No newline at end of file + bound_height = 64 + density = 1 diff --git a/modular_chomp/code/modules/power/cells/device_cells.dm b/modular_chomp/code/modules/power/cells/device_cells.dm index 93bc939176..3621572bfa 100644 --- a/modular_chomp/code/modules/power/cells/device_cells.dm +++ b/modular_chomp/code/modules/power/cells/device_cells.dm @@ -89,7 +89,7 @@ name = "giga device power cell" desc = "A small power cell that holds a blistering amount of energy, constructed by clever scientists using secrets gleaned from alien technology." icon_state = "meb_m_hi" - maxcharge = 6000 + maxcharge = 10000 charge_amount = 20 origin_tech = list(TECH_POWER = 5, TECH_PRECURSOR = 1) @@ -161,9 +161,10 @@ catalogue_data = list(/datum/category_item/catalogue/anomalous/precursor_a/alien_void_cell) icon = 'icons/obj/abductor.dmi' icon_state = "cell" - charge_amount = 120 // 5%. + maxcharge = 3600 + charge_amount = 180 // 5%. charge_delay = 50 // Every five seconds, bit faster than the default. - origin_tech = list(TECH_POWER = 8, TECH_ENGINEERING = 6) + origin_tech = list(TECH_POWER = 7, TECH_ENGINEERING = 5, TECH_PHORON = 5, TECH_ARCANE = 1, TECH_PRECURSOR = 1) /obj/item/weapon/cell/device/weapon/recharge/alien/update_icon() return // No overlays please. @@ -224,10 +225,10 @@ /obj/item/weapon/cell/device/weapon/recharge/alien/omni name = "omni weapon power cell" desc = "A mix between alien technology and phoron tech. Seems to fit in almost any cell slot..." - charge_amount = 90 // 5%. - maxcharge = 1800 - charge_delay = 50 SECONDS - origin_tech = list(TECH_POWER = 6, TECH_ENGINEERING = 4, TECH_PHORON = 3) + charge_amount = 240 // 5%. + maxcharge = 4800 + charge_delay = 50 + origin_tech = list(TECH_POWER = 8, TECH_ENGINEERING = 6, TECH_PHORON = 6, TECH_ARCANE = 2, TECH_PRECURSOR = 2) /obj/item/weapon/cell/device/weapon/recharge/alien/omni/empty/Initialize() . = ..() diff --git a/modular_chomp/code/modules/power/cells/power_cells.dm b/modular_chomp/code/modules/power/cells/power_cells.dm index a374ffb9af..24e1045b62 100644 --- a/modular_chomp/code/modules/power/cells/power_cells.dm +++ b/modular_chomp/code/modules/power/cells/power_cells.dm @@ -160,8 +160,9 @@ origin_tech = list(TECH_POWER = 4, TECH_BIO = 5) icon = 'icons/mob/slimes.dmi' //'icons/obj/harvest.dmi' icon_state = "yellow slime extract" //"potato_battery" - description_info = "This 'cell' holds a max charge of 10k and self recharges over time." - maxcharge = 10000 + description_info = "This 'cell' holds a max charge of 20k and self recharges over time." + maxcharge = 20000 + charge_amount = 1000 // 5%. matter = null self_recharge = TRUE standard_overlays = FALSE diff --git a/modular_chomp/code/modules/research/designs/power_cells.dm b/modular_chomp/code/modules/research/designs/power_cells.dm index 174c3aa6df..891c5ce05e 100644 --- a/modular_chomp/code/modules/research/designs/power_cells.dm +++ b/modular_chomp/code/modules/research/designs/power_cells.dm @@ -113,8 +113,8 @@ /datum/design/item/powercell/advance_device_recharge name = "device, advanced recharging" id = "recharging_advanced_device" - req_tech = list(TECH_POWER = 5, TECH_MATERIAL = 4, TECH_PHORON = 4, TECH_PRECURSOR = 2) - materials = list(MAT_STEEL = 1500, MAT_GLASS = 100, MAT_MORPHIUM = 100, MAT_PHORON = 500, MAT_DURASTEEL = 500, MAT_URANIUM = 200, MAT_VERDANTIUM = 150) + req_tech = list(TECH_POWER = 7, TECH_MATERIAL = 6, TECH_PHORON = 6) + materials = list(MAT_STEEL = 1000, MAT_GLASS = 400, MAT_DURASTEEL = 100, MAT_METALHYDROGEN = 200, MAT_VERDANTIUM = 150, MAT_PHORON = 2000) build_path = /obj/item/weapon/cell/device/weapon/recharge category = list("Misc") sort_string = "BAABE" diff --git a/tgui/packages/tgui/interfaces/AppearanceChanger.js b/tgui/packages/tgui/interfaces/AppearanceChanger.js index 088306b969..23fd8d8ebb 100644 --- a/tgui/packages/tgui/interfaces/AppearanceChanger.js +++ b/tgui/packages/tgui/interfaces/AppearanceChanger.js @@ -18,6 +18,7 @@ export const AppearanceChanger = (props, context) => { ear_style, tail_style, wing_style, + markings, change_race, change_gender, change_eye_color, @@ -128,6 +129,9 @@ export const AppearanceChanger = (props, context) => { setTabIndex(7)}> Wing + setTabIndex(8)}> + Markings + ) : null} {change_facial_hair ? ( @@ -145,6 +149,7 @@ export const AppearanceChanger = (props, context) => { {change_hair && tabIndex === 5 ? : null} {change_hair && tabIndex === 6 ? : null} {change_hair && tabIndex === 7 ? : null} + {change_hair && tabIndex === 8 ? : null} @@ -383,3 +388,28 @@ const AppearanceChangerWings = (props, context) => { ); }; + +const AppearanceChangerMarkings = (props, context) => { + const { act, data } = useBackend(context); + + const { markings } = data; + + return ( +
+ +
+ ); +}; diff --git a/tgui/packages/tgui/interfaces/VorePanel.js b/tgui/packages/tgui/interfaces/VorePanel.js index 3357ef5109..8c3d51da50 100644 --- a/tgui/packages/tgui/interfaces/VorePanel.js +++ b/tgui/packages/tgui/interfaces/VorePanel.js @@ -49,7 +49,7 @@ const digestModeToPreyMode = { * show_liq, liq_interacts, liq_reagent_gen, liq_reagent_type, liq_reagent_name, * liq_reagent_transfer_verb, liq_reagent_nutri_rate, liq_reagent_capacity, liq_sloshing, liq_reagent_addons, * show_liq_fullness, liq_messages, liq_msg_toggle1, liq_msg_toggle2, liq_msg_toggle3, liq_msg_toggle4, - * liq_msg_toggle5, liq_msg1, liq_msg2, liq_msg3, liq_msg4, liq_msg5, sound_volume, + * liq_msg_toggle5, liq_msg1, liq_msg2, liq_msg3, liq_msg4, liq_msg5, sound_volume, egg_name, * * To the tabs section of VoreSelectedBelly return * setTabIndex(5)}> @@ -649,6 +649,7 @@ const VoreSelectedBellyOptions = (props, context) => { contaminate_flavor, contaminate_color, egg_type, + egg_name, selective_preference, save_digest_mode, vorespawn_blacklist, @@ -776,6 +777,13 @@ const VoreSelectedBellyOptions = (props, context) => { content={capitalize(egg_type)} /> + +