From 5057a9ca36a4040803dad371449aef3f51eed8c8 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Sat, 24 Feb 2024 21:53:56 +0300 Subject: [PATCH 01/24] 1 --- .../structures/crates_lockers/closets.dm | 9 +- .../closets/secure/marine_personal.dm | 24 + .../modules/gear_presets/_select_equipment.dm | 81 +- colonialmarines.dme | 1 + maps/map_files/golden_arrow/golden_arrow.dmm | 33006 +--------------- 5 files changed, 1249 insertions(+), 31872 deletions(-) create mode 100644 code/game/objects/structures/crates_lockers/closets/secure/marine_personal.dm diff --git a/code/game/objects/structures/crates_lockers/closets.dm b/code/game/objects/structures/crates_lockers/closets.dm index d6148b23b7..ebe16e2b1f 100644 --- a/code/game/objects/structures/crates_lockers/closets.dm +++ b/code/game/objects/structures/crates_lockers/closets.dm @@ -10,6 +10,7 @@ var/opened = 0 var/welded = 0 var/wall_mounted = 0 //never solid (You can always pass over it) + var/can_be_stacked = FALSE health = 100 var/lastbang var/storage_capacity = 30 //This is so that someone can't pack hundreds of items in a locker/crate @@ -63,17 +64,21 @@ return 1 /obj/structure/closet/proc/can_close() + for(var/mob/living/carbon/xenomorph/xeno in get_turf(src)) + return 0 + if(can_be_stacked) + return 1 for(var/obj/structure/closet/closet in get_turf(src)) if(closet != src && !closet.wall_mounted) return 0 - for(var/mob/living/carbon/xenomorph/xeno in get_turf(src)) - return 0 return 1 /obj/structure/closet/proc/dump_contents() for(var/obj/I in src) I.forceMove(loc) + I.pixel_x = pixel_x + I.pixel_y = pixel_y for(var/mob/M in src) M.forceMove(loc) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/marine_personal.dm b/code/game/objects/structures/crates_lockers/closets/secure/marine_personal.dm new file mode 100644 index 0000000000..fc62b7efe7 --- /dev/null +++ b/code/game/objects/structures/crates_lockers/closets/secure/marine_personal.dm @@ -0,0 +1,24 @@ +/obj/structure/closet/secure_closet/marine_personal + name = "personal locker" + desc = "It's an immobile card-locked storage unit." + icon_state = "secure1" + can_be_stacked = TRUE + var/owner + var/job = "Rifleman" + +/obj/structure/closet/secure_closet/marine_personal/get_examine_text(mob/user) + . = ..() + . += SPAN_NOTICE("It has a name tag[owner ? ": [owner]." : ". It's someone's from 1st Platoon..."]") + +/obj/structure/closet/secure_closet/marine_personal/Initialize(mapload, ...) + . = ..() + GLOB.personal_closets += src + +/obj/structure/closet/secure_closet/marine_personal/Destroy() + GLOB.personal_closets -= src + return ..() + +/obj/structure/closet/secure_closet/marine_personal/allowed(mob/M) + if(owner == M.name) + return TRUE + return FALSE diff --git a/code/modules/gear_presets/_select_equipment.dm b/code/modules/gear_presets/_select_equipment.dm index 39f832ea8c..2ac9679529 100644 --- a/code/modules/gear_presets/_select_equipment.dm +++ b/code/modules/gear_presets/_select_equipment.dm @@ -153,7 +153,10 @@ load_gear(new_human, mob_client) load_id(new_human, mob_client) load_status(new_human, mob_client) - load_vanity(new_human, mob_client) + if(is_ground_level(new_human.z)) + load_vanity(new_human, mob_client) + else + INVOKE_ASYNC(src, PROC_REF(spawn_vanity_in_personal_lockers), new_human, mob_client) load_traits(new_human, mob_client) if(round_statistics && count_participant) round_statistics.track_new_participant(faction) @@ -246,6 +249,82 @@ if(!new_human.equip_to_slot_if_possible(P, WEAR_R_HAND)) P.forceMove(new_human.loc) +GLOBAL_LIST_EMPTY(personal_closets) + +/datum/equipment_preset/proc/spawn_vanity_in_personal_lockers(mob/living/carbon/human/new_human, client/mob_client) + var/obj/structure/closet/secure_closet/marine_personal/closet_to_spawn_in + if(!new_human.client || !new_human.client.prefs || !new_human.client.prefs.gear) + return//We want to equip them with custom stuff second, after they are equipped with everything else. + for(var/obj/structure/closet/secure_closet/marine_personal/closet in GLOB.personal_closets) + if(closet.owner) + continue + if(new_human.job != closet.job) + continue + closet.owner = new_human.real_name + closet_to_spawn_in = closet + break + if(!closet_to_spawn_in) + load_vanity(new_human, mob_client) + return + + for(var/gear_name in new_human.client.prefs.gear) + var/datum/gear/current_gear = gear_datums_by_name[gear_name] + if(current_gear) + if(current_gear.allowed_roles && !(assignment in current_gear.allowed_roles)) + to_chat(new_human, SPAN_WARNING("Custom gear [current_gear.display_name] cannot be equipped: Invalid Role")) + return + if(current_gear.allowed_origins && !(new_human.origin in current_gear.allowed_origins)) + to_chat(new_human, SPAN_WARNING("Custom gear [current_gear.display_name] cannot be equipped: Invalid Origin")) + return + new current_gear.path(closet_to_spawn_in) + + //Gives ranks to the ranked + var/current_rank = paygrade + var/obj/item/card/id/I = new_human.get_idcard() + if(I) + current_rank = I.paygrade + if(current_rank) + var/rankpath = get_rank_pins(current_rank) + if(rankpath) + new rankpath(closet_to_spawn_in) + + if(flags & EQUIPMENT_PRESET_MARINE) + var/playtime = get_job_playtime(new_human.client, assignment) + var/medal_type + + switch(playtime) + if(JOB_PLAYTIME_TIER_1 to JOB_PLAYTIME_TIER_2) + medal_type = /obj/item/clothing/accessory/medal/bronze/service + if(JOB_PLAYTIME_TIER_2 to JOB_PLAYTIME_TIER_3) + medal_type = /obj/item/clothing/accessory/medal/silver/service + if(JOB_PLAYTIME_TIER_3 to JOB_PLAYTIME_TIER_4) + medal_type = /obj/item/clothing/accessory/medal/gold/service + if(JOB_PLAYTIME_TIER_4 to INFINITY) + medal_type = /obj/item/clothing/accessory/medal/platinum/service + + if(!new_human.client.prefs.playtime_perks) + medal_type = null + + if(medal_type) + var/obj/item/clothing/accessory/medal/medal = new medal_type(closet_to_spawn_in) + medal.recipient_name = new_human.real_name + medal.recipient_rank = current_rank + + + //Gives glasses to the vision impaired + if(new_human.disabilities & NEARSIGHTED) + new /obj/item/clothing/glasses/regular(closet_to_spawn_in) + + for(var/datum/view_record/medal_view/medal as anything in DB_VIEW(/datum/view_record/medal_view, DB_COMP("player_id", DB_EQUALS, mob_client.player_data.id))) + if(medal.recipient_name != new_human.real_name) + continue + if(medal.recipient_role != new_human.job) + continue + var/obj/item/clothing/accessory/medal/given_medal = new medal.medal_type(closet_to_spawn_in) + given_medal.recipient_name = medal.recipient_name + given_medal.recipient_rank = medal.recipient_role + given_medal.medal_citation = medal.citation + /datum/equipment_preset/proc/load_traits(mob/living/carbon/human/new_human, client/mob_client) var/client/real_client = mob_client || new_human.client if(!real_client?.prefs?.traits) diff --git a/colonialmarines.dme b/colonialmarines.dme index f3f5d9a012..500df1191e 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -1306,6 +1306,7 @@ #include "code\game\objects\structures\crates_lockers\closets\secure\engineering.dm" #include "code\game\objects\structures\crates_lockers\closets\secure\freezer.dm" #include "code\game\objects\structures\crates_lockers\closets\secure\hydroponics.dm" +#include "code\game\objects\structures\crates_lockers\closets\secure\marine_personal.dm" #include "code\game\objects\structures\crates_lockers\closets\secure\medical.dm" #include "code\game\objects\structures\crates_lockers\closets\secure\personal.dm" #include "code\game\objects\structures\crates_lockers\closets\secure\scientist.dm" diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm index fa093c5b8a..de54f64388 100644 --- a/maps/map_files/golden_arrow/golden_arrow.dmm +++ b/maps/map_files/golden_arrow/golden_arrow.dmm @@ -1,31872 +1,1140 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ad" = ( -/obj/structure/machinery/light, -/obj/structure/target{ - name = "ready line Ronald" - }, -/obj/item/clothing/suit/storage/marine/heavy/smooth, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"af" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"ag" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/briefing) -"ah" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/warning_cone{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"al" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"an" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"aq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"ar" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"aw" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 9; - pixel_y = 29 - }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"ax" = ( -/obj/structure/cargo_container/arious/mid, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"ay" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 12; - pixel_y = 29 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"aA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform/stair_cut, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"aB" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"aG" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) -"aI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"aJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/item/prop/magazine/book/borntokill, -/obj/item/prop/magazine/book/starshiptroopers{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_one) -"aN" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/golden_arrow/hangar) -"aO" = ( -/obj/item/prop/colony/game, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"aQ" = ( -/obj/structure/sign/safety/galley{ - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"aS" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 17" - }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"aT" = ( -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - network = list("Golden Arrow","Vehicle","Midway"); - pixel_x = -17 - }, -/obj/structure/machinery/prop/almayer/CICmap{ - density = 0; - dir = 4; - icon_state = "shuttle"; - layer = 2.97; - name = "Tactical Map Display"; - pixel_x = -17; - pixel_y = 14 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"aX" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/supply) -"ba" = ( -/obj/item/tool/warning_cone{ - pixel_x = 4; - pixel_y = 16 - }, -/obj/item/stool, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/synthcloset) -"bb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"bf" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"bg" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/crate/construction, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) -"bh" = ( -/obj/effect/landmark/start/marine/leader/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"bl" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/firingrange) -"bo" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/platoon_commander_rooms) -"bq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"bu" = ( -/obj/structure/machinery/camera/autoname/golden_arrow, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"bw" = ( -/obj/structure/curtain/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"by" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"bB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"bD" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Platoon Commander's Office"; - req_access = list(); - req_one_access_txt = "19;12" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/platoon_commander_rooms) -"bO" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_one_access = list() - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"bQ" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"bR" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"bS" = ( -/obj/structure/platform/stair_cut/alt, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"bZ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/supply) -"ca" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/hangar) -"ce" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/firingrange) -"cj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"cl" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"co" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/supply) -"cp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"cr" = ( -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"cs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"ct" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"cw" = ( -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"cy" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"cz" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"cA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/magazine/boots/n054{ - pixel_x = 29 - }, -/obj/structure/closet/secure_closet/smartgunner{ - req_access_txt = "14;40"; - req_one_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"cB" = ( -/obj/structure/machinery/camera/autoname/golden_arrow, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"cD" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/item/storage/box/co2_knife{ - pixel_x = 3; - pixel_y = 13 - }, -/turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"cG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"cH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"cJ" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"cL" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"cR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; - name = "dip cup"; - pixel_x = -4; - pixel_y = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_one) -"cS" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - name = "\improper Platoon Medic Office"; - req_one_access = list(); - req_one_access_txt = "8" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) -"cT" = ( -/turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"cU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"cZ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"dd" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"de" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"dg" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) -"di" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"dj" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 30 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"dl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/coffee{ - pixel_x = -19 - }, -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"dm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"dn" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"dr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"ds" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, -/obj/item/tool/wirecutters{ - pixel_y = -6 - }, -/obj/item/device/multitool{ - pixel_x = -10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"dt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"dv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"dA" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"dB" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"dE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"dG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"dH" = ( -/obj/item/bedsheet/brown, -/obj/structure/bed, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_commander_rooms) -"dJ" = ( -/turf/open/floor/plating, -/area/golden_arrow/hangar) -"dO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"dP" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"dX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/golden_arrow/squad_two) -"ea" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"eh" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/m41aMK1{ - current_rounds = 0; - pixel_x = -5 - }, -/obj/item/ammo_magazine/rifle/m41aMK1{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/m41aMK1{ - current_rounds = 0; - pixel_x = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) -"ek" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/golden_arrow/firingrange) -"eo" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"eu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"ey" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 8; - name = "\improper Synthetic Preperations"; - req_one_access = list(36) - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - indestructible = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/synthcloset) -"eB" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"eH" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) -"eJ" = ( -/obj/structure/machinery/power/apc/almayer, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"eL" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/cryo_cells) -"eR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"eT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/golden_arrow/synthcloset) -"eU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) -"eY" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/hangar) -"fe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"ff" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"fg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/uscm/directional{ - dir = 10 - }, -/area/golden_arrow/briefing) -"fh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/platoon_sergeant) -"fl" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"fm" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/golden_arrow/engineering) -"fo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"fp" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"fq" = ( -/obj/structure/machinery/conveyor{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/supply) -"ft" = ( -/obj/structure/curtain/red, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"fv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"fx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"fy" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut/alt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"fF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"fJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = -7; - pixel_y = -4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"fL" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/megaphone, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"fO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "\improper Medical Subsection"; - req_one_access = list(); - req_one_access_txt = "8" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) -"fW" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"fX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"fY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - req_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"gd" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"gf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"gg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"gh" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"gn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/synthcloset) -"gp" = ( -/obj/structure/surface/rack, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/platoon_commander_rooms) -"gq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"gt" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"gx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_one_access = list() - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"gz" = ( -/obj/structure/ship_ammo/rocket/widowmaker, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"gA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"gB" = ( -/obj/structure/machinery/telecomms/relay/preset/tower, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"gD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"gE" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/supply) -"gG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"gH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"gI" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight/lamp/on{ - pixel_y = 13 - }, -/obj/item/weapon/straight_razor{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"gL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"gM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"gQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"gS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"gT" = ( -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/supply) -"gW" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/engineering) -"ha" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"he" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"hk" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"ho" = ( -/obj/structure/machinery/autodoc_console{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) -"hq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/synthcloset) -"hy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"hA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"hC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/smartgun_battery{ - pixel_x = 4; - pixel_y = -5 - }, -/obj/effect/spawner/random/powercell{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_two) -"hD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/firingrange) -"hF" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"hG" = ( -/obj/structure/machinery/medical_pod/autodoc{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) -"hL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/sign/safety/electronics{ - pixel_x = 31; - pixel_y = 6 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 31; - pixel_y = -6 - }, -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"hM" = ( -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/firingrange) -"hN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"hQ" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) -"hR" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"hS" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/platoon_commander_rooms) -"hU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/item/device/flashlight{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/tool/warning_cone, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"hW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"ie" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"if" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) -"ik" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"il" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"ip" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_1"; - name = "\improper Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/cryo_cells) -"iy" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"iA" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"iC" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = -25 - }, -/obj/structure/sign/safety/west{ - pixel_x = 3; - pixel_y = -25 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"iE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_one) -"iF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"iG" = ( -/obj/structure/machinery/door/poddoor/almayer/open, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/prep_hallway) -"iK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/prep_hallway) -"iL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"iN" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"iQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"iR" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_commander_rooms) -"iX" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"jb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"jc" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/prep_hallway) -"je" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"jf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"jg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"jj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"jl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"js" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/largecrate/supply/ammo/m41amk1, -/obj/structure/largecrate/supply/ammo/m41amk1{ - pixel_x = 3; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"jt" = ( -/obj/structure/target, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/golden_arrow/firingrange) -"jy" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/computer/station_alert{ - dir = 8; - pixel_x = 15; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/synthcloset) -"jD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"jG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"jN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"jO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"jQ" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) -"jS" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"jU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"jV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "\improper Medical Subsection"; - req_one_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) -"kg" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/briefing) -"kh" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"kk" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"km" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) -"kq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"kr" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/cryo_cells) -"kw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"kB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"kF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder/industrial{ - pixel_y = 9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"kH" = ( -/obj/structure/machinery/computer/cryopod{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"kI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"kO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/supply) -"kS" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/supply) -"kU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"kV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"kX" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"lc" = ( -/obj/structure/closet/cryo, -/obj/structure/closet/cryo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"ld" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"lg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/golden_arrow/hangar) -"lh" = ( -/obj/structure/machinery/floodlight/landing, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"lm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/hangar) -"lo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"ly" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"lA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"lB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"lE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"lG" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"lK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"lQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"lS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/platoon_sergeant) -"lV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ - req_access = list(); - req_one_access_txt = "8;12;39" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"mb" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/closed/wall/almayer/outer, -/area/golden_arrow/supply) -"mc" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"me" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Briefing Room"; - req_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/briefing) -"mf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/item/storage/fancy/cigarettes/lucky_strikes{ - pixel_x = -6; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_two) -"mk" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/briefing) -"ml" = ( -/obj/structure/ship_ammo/minirocket, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"mm" = ( -/obj/structure/cargo_container/lockmart/mid{ - layer = 3.1; - pixel_y = 5 - }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"mo" = ( -/obj/structure/surface/rack, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"ms" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"mB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"mD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - req_one_access_txt = "8;12;39" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/squad_one) -"mR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/squad_two) -"mW" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"mY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"mZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset/full, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/supply) -"nb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Squad Two Armoury"; - req_one_access_txt = "8;12;40" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/squad_two) -"nd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"ng" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light, -/obj/structure/largecrate, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"ni" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy/alpha{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"nj" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -15 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"nm" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ - layer = 2.1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"ns" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/cryo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"nx" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"ny" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/supply) -"nD" = ( -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"nF" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/synthcloset) -"nG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"nH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"nK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"nL" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) -"nM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/banners/united_americas_flag{ - pixel_x = -16; - pixel_y = 30 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"nN" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"nR" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/cryo_cells) -"nT" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/obj/structure/cargo_container/wy/right, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -22; - pixel_y = 3; - serial_number = 11 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"nV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"nY" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/briefing) -"oa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"oe" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"og" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"oh" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"ol" = ( -/obj/effect/landmark/observer_start, -/turf/open/floor/almayer/uscm/directional{ - dir = 8; - icon_state = "logo_c" - }, -/area/golden_arrow/briefing) -"oo" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_one_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"or" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/supply) -"ot" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/m41aMK1{ - pixel_y = 7 - }, -/obj/item/weapon/gun/rifle/m41aMK1, -/obj/item/weapon/gun/rifle/m41aMK1{ - pixel_y = -7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"ou" = ( -/turf/open/floor/almayer_hull{ - dir = 1; - icon_state = "outerhull_dir" - }, -/area/golden_arrow/hangar) -"ov" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/pillbottles, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"oA" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/door/window/westleft, -/obj/structure/window/reinforced/tinted/frosted, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/platoon_commander_rooms) -"oC" = ( -/obj/structure/plasticflaps, -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/supply) -"oH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"oJ" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) -"oK" = ( -/obj/structure/machinery/door/poddoor/almayer/open, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/prep_hallway) -"oL" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"oM" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"oO" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"oQ" = ( -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/prop/helmetgarb/gunoil, -/obj/structure/surface/table/almayer, -/obj/structure/sign/poster{ - desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; - icon_state = "poster10"; - name = "Koorlander Gold Poster"; - pixel_x = 29; - pixel_y = 6; - serial_number = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"oW" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"oX" = ( -/obj/structure/largecrate/supply/generator, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) -"pf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/heap/empty, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_two) -"pl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"pt" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/prep_hallway) -"pw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 - }, -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"pB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"pD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"pF" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"pG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"pJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/almayer/outer, -/area/golden_arrow/squad_one) -"pO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"pR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"pS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"pW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/prep_hallway) -"pZ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"qa" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/squad_one) -"qc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"qf" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/cryo_cells) -"qh" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"qi" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) -"qm" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/cryo_cells) -"qu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Briefing Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/briefing) -"qv" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/golden_arrow/briefing) -"qw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"qz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"qA" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/platoon_sergeant) -"qD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = 27; - serial_number = 11 - }, -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"qE" = ( -/obj/structure/barricade/metal{ - dir = 8 - }, -/obj/structure/machinery/light, -/obj/structure/sign/safety/two{ - pixel_y = -22 - }, -/turf/open/floor/almayer, -/area/golden_arrow/firingrange) -"qI" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"qQ" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/golden_arrow/platoon_sergeant) -"qR" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"qT" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 9 - }, -/area/golden_arrow/briefing) -"qU" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"qW" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 10 - }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = -7; - pixel_y = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"rb" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/cryo_cells) -"rd" = ( -/obj/structure/closet/cryo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"rf" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"rh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"rk" = ( -/obj/structure/cargo_container/arious/left, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"rl" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 1 - }, -/area/golden_arrow/briefing) -"ro" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) -"rq" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) -"rr" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 5 - }, -/area/golden_arrow/briefing) -"rt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/item/tool/wet_sign, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"rx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"ry" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/golden_arrow/briefing) -"rA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/janitorialcart, -/obj/item/tool/mop{ - pixel_x = -1; - pixel_y = -10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"rH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"rI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/toy/beach_ball/holoball, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 28; - pixel_y = 5; - serial_number = 12 - }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - name = "'Miss July' Pinup"; - pixel_x = 32; - serial_number = 16 - }, -/obj/item/storage/fancy/cigarettes/lucky_strikes{ - pixel_x = 6; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"rJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/briefing) -"rM" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"rV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/uscm/directional, -/area/golden_arrow/briefing) -"rX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"rZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"sa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"sc" = ( -/obj/structure/pipes/vents/scrubber, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"sf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"sg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dorms" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/dorms) -"sk" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"sm" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 6 - }, -/area/golden_arrow/briefing) -"so" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"sv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"sy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/tool/warning_cone, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"sC" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/platoon_sergeant) -"sE" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/engineering) -"sI" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/cryo_cells) -"sN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"sO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"sR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/dorms) -"sS" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"sU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"sV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_two) -"sX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin/uscm{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/clipboard{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"sY" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/item/clothing/suit/storage/jacket/marine/service, -/obj/item/clothing/suit/storage/jacket/marine/service/tanker, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_commander_rooms) -"tb" = ( -/obj/structure/sign/safety/firingrange{ - pixel_x = -24; - pixel_y = 7 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = -24; - pixel_y = -7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"tf" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/firingrange) -"ti" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"to" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ - layer = 2.1 - }, -/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ - layer = 2.1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"tr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"tv" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"ty" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/pdt_kit{ - pixel_x = 7; - pixel_y = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_two) -"tA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"tB" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"tS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ - req_access = list(); - req_one_access_txt = "8;12;40" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"tT" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"tV" = ( -/obj/structure/ship_ammo/rocket/keeper, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"tX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/scrubber, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"ua" = ( -/obj/item/tool/warning_cone{ - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) -"ub" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"ug" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"um" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/machinery/faxmachine/uscm/command/capt, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"uo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/supply) -"up" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"us" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"uu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"uw" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"uA" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"uE" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) -"uF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"uG" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"uH" = ( -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = -30; - pixel_y = 6; - serial_number = 12 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"uO" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 11; - pixel_y = 5 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 4 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"uQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"uS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"uX" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"vb" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - layer = 2.0; - pixel_x = 12 - }, -/turf/closed/wall/almayer, -/area/golden_arrow/platoon_commander_rooms) -"vc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"vg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/supply) -"vk" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/briefing) -"vo" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"vp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/prep_hallway) -"vt" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_commander_rooms) -"vA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Platoon Sergeant's Bunk"; - req_one_access_txt = "12" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"vB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"vF" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/squad_two) -"vG" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/pouch/electronics{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -7; - pixel_y = -8 - }, -/obj/item/stack/cable_coil, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"vJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"vK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/supply) -"vL" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"vN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"vP" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"vS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"vU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/dorms) -"wa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"wc" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Platoon Commander's Quarters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/platoon_commander_rooms) -"wd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"wi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"wl" = ( -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"wn" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/prep_hallway) -"wp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"wx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"wz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"wH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/item/device/walkman{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"wI" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"wJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/prop/magazine/book/bladerunner, -/obj/item/storage/fancy/cigarettes/lucky_strikes{ - pixel_x = 2; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"wK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"wN" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_x = -32 - }, -/obj/item/book/manual/robotics_cyborgs{ - pixel_y = 8 - }, -/obj/item/tool/wirecutters, -/obj/item/tool/weldingtool/hugetank, -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/synthcloset) -"wS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/golden_arrow/briefing) -"wV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Platoon Sergeant's Bunk"; - req_one_access_txt = "12" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/platoon_sergeant) -"wX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) -"xf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"xh" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"xm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"xo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"xx" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"xz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"xB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 6 - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"xJ" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access = list() - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"xK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"xM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"xQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/galley{ - pixel_x = -19 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"xX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/golden_arrow/dorms) -"yc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"ye" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/engineering) -"yg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/supply_drop/echo, -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/supply) -"yj" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/machinery/vending/walkman, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"yo" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"ys" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"yt" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/platoon_sergeant) -"yv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"yw" = ( -/obj/item/toy/deck/uno, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"yx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/machinery/computer/arcade, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"yy" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"yA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/squad_sergeant{ - req_access_txt = "32;39"; - req_one_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"yF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"yJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/golden_arrow/synthcloset) -"yL" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"yM" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/cholula{ - pixel_x = -9; - pixel_y = -3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"yO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"yT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"yU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"yY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/bed/chair, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/platoon_sergeant) -"yZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"za" = ( -/obj/structure/machinery/camera/autoname/golden_arrow, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"zk" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_one_access = list(); - req_one_access_txt = "8;12;39" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"zl" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/engineering) -"zn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"zt" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"zv" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) -"zy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"zA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"zD" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/hangar) -"zG" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"zI" = ( -/obj/structure/pipes/vents/pump, -/obj/item/tool/mop{ - pixel_x = -9; - pixel_y = 20 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"zJ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"zK" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 7; - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"zL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"zM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"zP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/firingrange) -"zV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"zY" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_one_access = list() - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"zZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"Ad" = ( -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Ap" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"As" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"Aw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Canteen" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/canteen) -"Ax" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"Ay" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/prep_hallway) -"AA" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"AC" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/obj/item/stack/catwalk{ - pixel_x = 12; - pixel_y = -9 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"AG" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"AH" = ( -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"AK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) -"AL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"AO" = ( -/obj/structure/machinery/autolathe, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"AP" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ - layer = 2.1 - }, -/obj/structure/sign/safety/manualopenclose{ - layer = 2.11; - pixel_x = 12; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"AQ" = ( -/obj/structure/cargo_container/lockmart/right{ - layer = 3.1; - pixel_y = 5 - }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"AY" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"Bd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"Bf" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"Bg" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"Bh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/coffee/simple, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"Bi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Bj" = ( -/obj/structure/window/framed/almayer/white, -/turf/open/floor/almayer, -/area/golden_arrow/medical) -"Bo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"Bq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Br" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"Bt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"Bu" = ( -/obj/item/ammo_magazine/sentry{ - layer = 3.01 - }, -/obj/item/defenses/handheld/sentry, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"Bv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - name = "Damage Control Locker"; - req_one_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/engineering) -"Bw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/rewire{ - pixel_y = -29 - }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"Bz" = ( -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"BA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -3 - }, -/obj/item/storage/toolbox{ - pixel_y = -5 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"BC" = ( -/obj/structure/target, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/golden_arrow/firingrange) -"BD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) -"BK" = ( -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"BM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/cryo_cells) -"BO" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"BP" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"BW" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -19; - pixel_y = 6 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -19; - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -31; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"BY" = ( -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"BZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"Cb" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/trash/semki{ - layer = 2; - pixel_x = -13; - pixel_y = 14 - }, -/obj/item/prop/magazine/boots/n054{ - pixel_x = 29 - }, -/obj/item/prop/magazine/dirty/torn{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/tool/hand_labeler{ - pixel_x = -3; - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"Ce" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/item/storage/toolbox/electrical, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"Cf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"Cg" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"Cl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/hangar) -"Cn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"Co" = ( -/obj/structure/barricade/plasteel{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) -"Cr" = ( -/turf/open/space/basic, -/area/space) -"Cs" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Cu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Sergeants Room"; - req_one_access_txt = "12;32" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/platoon_sergeant) -"Cv" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"Cw" = ( -/obj/structure/machinery/body_scanconsole{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) -"Cy" = ( -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"CA" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/prep_hallway) -"CC" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/flamer_tank, -/obj/item/ammo_magazine/flamer_tank, -/obj/item/weapon/gun/flamer{ - current_mag = null; - pixel_y = 4 - }, -/obj/item/device/motiondetector, -/obj/item/attachable/attached_gun/extinguisher/pyro{ - layer = 3.01 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"CF" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"CK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) -"CN" = ( -/obj/structure/cargo_container/lockmart/left{ - layer = 3.1; - pixel_y = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"CP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"CS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/computer/supply_drop_console/limited/alternate, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"CX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"CZ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - name = "Midway Remote Control Console"; - shuttleId = "dropship_midway" - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"Db" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/almayer, -/area/golden_arrow/squad_two) -"Dc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"Df" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/misc/flares/empty{ - pixel_x = -1; - pixel_y = 16 - }, -/obj/item/device/flashlight/flare{ - pixel_x = 10 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"Dg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"Dl" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Dw" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Dx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/item/bananapeel{ - desc = "Ew."; - gender = "plural"; - icon = 'icons/obj/items/shards.dmi'; - icon_state = "shrapnelsmall"; - name = "\improper finger nails"; - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/ashtray/glass{ - pixel_x = 3; - pixel_y = -4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_one) -"DB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/platoon_commander_rooms) -"DC" = ( -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"DE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"DF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"DM" = ( -/obj/structure/machinery/power/apc/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"DR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/golden_arrow/squad_two) -"DX" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"DY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"Ea" = ( -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"Eb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer, -/area/golden_arrow/briefing) -"Ei" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"Eo" = ( -/obj/structure/platform_decoration, -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"Ep" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/synthcloset) -"Er" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"Eu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Ey" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"EA" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"EB" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/engineering) -"ED" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"EF" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"EI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/scrubber, -/obj/structure/sign/safety/bathunisex{ - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"EJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"EK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/cryo_cells) -"EN" = ( -/obj/structure/barricade/metal{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/firingrange) -"EO" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"EQ" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"EX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"EZ" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Fa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Canteen" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/canteen) -"Fe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_y = 4 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"Ff" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"Fg" = ( -/turf/open/floor/almayer, -/area/golden_arrow/squad_two) -"Fi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller, -/obj/item/storage/box/bodybags, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"Fj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/ammo_box/magazine/misc/mre{ - pixel_x = -23; - pixel_y = -11 - }, -/obj/item/facepaint/black, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"Fl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/supply) -"Fu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Fw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"Fy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_two) -"Fz" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"FE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/dorms) -"FI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"FK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/firingrange) -"FN" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8; - pixel_y = 6 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) -"FP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"FR" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"FS" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"FT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"FV" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_x = 18; - pixel_y = 3 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 18; - pixel_y = 5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"FW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"Gf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/prop{ - dir = 8; - layer = 3.2; - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = 27; - serial_number = 11 - }, -/obj/item/trash/pistachios{ - layer = 2; - pixel_x = 6; - pixel_y = -6 - }, -/obj/structure/machinery/recharger{ - layer = 3.1; - pixel_y = 22 - }, -/obj/item/ammo_magazine/rifle/incendiary{ - current_rounds = 0; - desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; - pixel_x = 10; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"Gg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Gi" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 14; - pixel_y = -28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"Gk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Gl" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/prep_hallway) -"Gq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Gs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"Gu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"Gv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"Gy" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"Gz" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"GA" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) -"GG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"GK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - id = "Delta_1"; - name = "\improper Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/cryo_cells) -"GL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"GN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) -"GO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/synth_storage{ - pixel_x = -20 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"GQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"GU" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"GV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/golden_arrow/platoon_commander_rooms) -"GY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/briefing) -"Hc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - dir = 4; - name = "Lower Deck Waste Tank Control" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"Hd" = ( -/obj/structure/closet, -/obj/structure/sign/banners/united_americas_flag{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"Hh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/engineering) -"Hj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/CICmap{ - pixel_y = 29 - }, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"Hk" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/clothing/accessory/storage/droppouch, -/obj/item/clothing/accessory/storage/droppouch, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/supply) -"Hm" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"Hu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/target, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/golden_arrow/firingrange) -"Hv" = ( -/obj/item/frame/camera{ - desc = "The Staff Officer insisted he needed to monitor everyone at all times."; - layer = 2.9; - name = "broken camera"; - pixel_x = -7; - pixel_y = -6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Hw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - req_one_access_txt = "8;12;40" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/squad_two) -"Hx" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light, -/obj/item/device/cassette_tape/aesthetic, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"HG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"HH" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"HK" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/cryo_cells) -"HQ" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"HR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/golden_arrow/hangar) -"HS" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"HT" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"HV" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"HX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Ib" = ( -/obj/structure/barricade/metal{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/one{ - pixel_y = 22 - }, -/turf/open/floor/almayer, -/area/golden_arrow/firingrange) -"Ii" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/cryo_cells) -"Is" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/golden_arrow/firingrange) -"It" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ - autoname = 0; - dir = 1; - req_one_access = list() - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/engineering) -"Iw" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"Iy" = ( -/obj/structure/computer3frame, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"IC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"ID" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/platoon_sergeant) -"IE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/tool/warning_cone{ - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_two) -"IH" = ( -/obj/structure/barricade/metal{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/golden_arrow/firingrange) -"IP" = ( -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"IR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"IS" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) -"IT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/prop/almayer/hangar_stencil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"IU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"IW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"IX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"IZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Jc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Jg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_commander_rooms) -"Jj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/golden_arrow/firingrange) -"Jk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"Jn" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/prop/helmetgarb/flair_io{ - pixel_x = -10; - pixel_y = 6 - }, -/obj/item/tool/hand_labeler{ - pixel_y = 14 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"Jp" = ( -/obj/structure/machinery/conveyor{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/supply) -"Jq" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Jv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"JD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"JI" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"JJ" = ( -/obj/structure/machinery/sleep_console{ - dir = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) -"JL" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"JP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"JT" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"JU" = ( -/obj/structure/machinery/cm_vending/clothing/medic, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"JZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Kb" = ( -/obj/structure/surface/rack, -/obj/item/tool/screwdriver, -/obj/item/prop/helmetgarb/gunoil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) -"Kd" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Ke" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Ki" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"Kl" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"Kp" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/m41aMK1{ - pixel_y = 7 - }, -/obj/item/weapon/gun/rifle/m41aMK1, -/obj/item/weapon/gun/rifle/m41aMK1{ - pixel_y = -7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"Ku" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_one_access = list(); - req_one_access_txt = "8;12;40" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"Kv" = ( -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"Kx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"KD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"KH" = ( -/obj/vehicle/powerloader, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"KK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"KL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) -"KM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"KO" = ( -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"KP" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"KQ" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"KU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"KY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"KZ" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/cmcap{ - layer = 4.1; - pixel_x = -1; - pixel_y = 22 - }, -/obj/item/toy/plush/therapy/red{ - desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; - force = 15; - layer = 4.1; - name = "Sergeant Huggs"; - pixel_y = 15; - throwforce = 15 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"La" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"Ld" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"Lf" = ( -/obj/effect/landmark/start/marine/tl/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"Lg" = ( -/obj/docking_port/stationary/marine_dropship/golden_arrow_hangar, -/turf/open/floor/plating, -/area/golden_arrow/hangar) -"Ll" = ( -/obj/structure/ship_ammo/minirocket/incendiary, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"Ln" = ( -/obj/structure/ship_ammo/rocket/banshee, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"Lo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"Ls" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/alpha{ - density = 0 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"Lx" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"LC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/supply) -"LE" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"LF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/squad_one) -"LH" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"LJ" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 8 - }, -/area/golden_arrow/briefing) -"LK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"LL" = ( -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/start/marine/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"LQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"LS" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"LT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"LZ" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"Mc" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"Md" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"Me" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/squad_two) -"Mf" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 8 - }, -/obj/item/notepad, -/obj/item/maintenance_jack, -/obj/structure/closet, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/storage/photo_album, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/synthcloset) -"Mi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Mj" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"Ml" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/rad{ - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"Mn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/cryo_cells) -"Mu" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - name = "\improper Engineering Airlock"; - req_one_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/engineering) -"Mz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) -"MB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/platoon_commander_rooms) -"MC" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"MI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"MJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"MK" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/platoon_commander_rooms) -"ML" = ( -/obj/structure/largecrate, -/obj/structure/largecrate{ - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/supply) -"MN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"MW" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"MZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/golden_arrow/dorms) -"Na" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Ne" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/briefing) -"Nf" = ( -/turf/closed/wall/almayer/white, -/area/golden_arrow/medical) -"Ng" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"Nk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"No" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer, -/area/golden_arrow/synthcloset) -"Np" = ( -/turf/open/floor/almayer, -/area/golden_arrow/briefing) -"Nr" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/prop_gun/anti_tank, -/turf/open/floor/almayer, -/area/golden_arrow/squad_two) -"Nx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/engineering) -"Nz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"NB" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 6; - pixel_y = -29 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = -7; - pixel_y = -3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"ND" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 - }, -/obj/item/ammo_magazine/sentry{ - layer = 3.01 - }, -/obj/item/defenses/handheld/sentry, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"NE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 21 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/platoon_commander_rooms) -"NI" = ( -/obj/structure/machinery/cm_vending/clothing/synth/snowflake{ - density = 0; - pixel_x = -30 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/synthcloset) -"NO" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"NT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"NU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ - autoname = 0; - dir = 1; - req_one_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/engineering) -"NV" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 6; - pixel_y = -29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"NZ" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"Ob" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"Oc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"Od" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/briefing) -"Of" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/firingrange) -"Oj" = ( -/obj/structure/machinery/camera/autoname/golden_arrow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"Ol" = ( -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/structure/janitorialcart, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"Op" = ( -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/prep_hallway) -"Os" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Oy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/golden_arrow/firingrange) -"Oz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"OA" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"OC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light, -/obj/item/device/cassette_tape/pop3{ - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_commander_rooms) -"OG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"OH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"OI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/item/tool/wrench, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"OJ" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"ON" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"OU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/squad_two) -"OX" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 4 - }, -/area/golden_arrow/briefing) -"OY" = ( -/obj/structure/ladder{ - height = 2; - id = "req1" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/supply) -"OZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"Pc" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/tool/kitchen/tray{ - pixel_x = 16; - pixel_y = -10 - }, -/obj/item/storage/box/cups{ - pixel_x = 11; - pixel_y = -9 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 18; - pixel_y = 3 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 18; - pixel_y = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"Pe" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Pf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/bedsheetbin{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"Ph" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Pl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Pm" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/special{ - pixel_y = 8 - }, -/obj/item/storage/box/nade_box{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/ammo_magazine/shotgun/buckshot/special, -/obj/item/device/motiondetector, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"Pp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Squad One Armoury"; - req_one_access_txt = "8;12;39" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/squad_one) -"Pr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"Ps" = ( -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/plasteel{ - amount = 40; - pixel_x = 7; - pixel_y = 6 - }, -/obj/structure/closet/crate/construction, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"Pt" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Py" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"PA" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/special{ - pixel_y = 10 - }, -/obj/item/storage/box/nade_box{ - pixel_x = 2; - pixel_y = -4 - }, -/obj/item/ammo_magazine/shotgun/buckshot/special, -/obj/item/device/motiondetector, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"PF" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"PG" = ( -/obj/structure/machinery/computer/arcade{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"PI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/firingrange) -"PL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"PQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/golden_arrow/platoon_sergeant) -"PS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/firingrange) -"PW" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Private Briefing Room"; - req_access = list(); - req_one_access_txt = "12;19;32" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/briefing) -"PY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"PZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/cassette_tape/nam{ - layer = 2.9; - pixel_x = -6; - pixel_y = 7 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_one) -"Qc" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 16 - }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Overwatch" - }, -/obj/item/clothing/glasses/hud/health{ - pixel_x = -8; - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"Qe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/ammo_magazine/pistol{ - current_rounds = 0 - }, -/obj/item/weapon/gun/pistol/m4a3{ - current_mag = null - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/platoon_sergeant) -"Qi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/conference_room{ - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"Qk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"Ql" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -15 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"Qq" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - name = "\improper Engineering Airlock"; - req_one_access = list() - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/engineering) -"Qt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - pixel_x = -6; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"Qu" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"Qw" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/squad_two) -"Qx" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"Qz" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/closet/firecloset/full, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"QD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"QE" = ( -/obj/structure/machinery/chem_dispenser, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"QI" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/fancy/cigarettes/lucky_strikes{ - pixel_x = -7; - pixel_y = 9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"QJ" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/squad_one) -"QL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"QM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"QN" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"QO" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"QP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"QQ" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/platoon_commander_rooms) -"QS" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"QT" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/cryo_cells) -"QW" = ( -/obj/structure/cargo_container/wy/left, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 6; - pixel_y = 8; - serial_number = 12 - }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - name = "'Miss July' Pinup"; - serial_number = 16 - }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"QX" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"Ra" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Rc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Supply Office" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/supply) -"Rd" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/golden_arrow/supply) -"Rg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Rh" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"Ri" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/firingrange) -"Rl" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = -10 - }, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 7; - pixel_y = -2 - }, -/obj/item/storage/box/cups{ - pixel_x = -5; - pixel_y = -10 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Rr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"Rt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Rv" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/canteen) -"Rx" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -11; - pixel_y = -10 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Ry" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_y = 7 - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -4; - pixel_y = 32; - serial_number = 11 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"RD" = ( -/obj/effect/landmark/late_join, -/obj/effect/landmark/start/marine/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"RK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"RM" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"RN" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care."; - pixel_y = -9 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"RO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/squad_sergeant{ - req_access_txt = "32;40"; - req_one_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"RP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"RT" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"RW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"RY" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"Sc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"Sd" = ( -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"Si" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Sj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"Sl" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 11; - pixel_y = -10 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Sn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"So" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Sq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Su" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = -10 - }, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/storage/box/cups{ - pixel_x = -5; - pixel_y = -10 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Sw" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"Sy" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"SB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"SC" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/classic{ - pixel_x = 10; - pixel_y = 3 - }, -/obj/item/prop/magazine/boots/n054{ - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"SE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/target, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/golden_arrow/firingrange) -"SI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"SL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"SO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"SR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"ST" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/flare{ - pixel_x = 8; - pixel_y = -1 - }, -/obj/item/device/flashlight/flare{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"SV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/prop/magazine/book/theartofwar, -/obj/item/paper_bin/uscm{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"SY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"Tb" = ( -/obj/item/toy/deck, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"Tc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/closed/wall/almayer/white, -/area/golden_arrow/medical) -"Td" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"Tg" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"Tj" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"Tk" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"To" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/cryo_cells) -"Tr" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Tu" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -19; - pixel_y = 6 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -19; - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -31; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Tx" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Ty" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/squad_one) -"Tz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"TC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"TD" = ( -/obj/item/tool/crowbar/red{ - pixel_x = -13; - pixel_y = -13 - }, -/obj/item/stack/cable_coil{ - pixel_x = 7 - }, -/obj/item/tool/wirecutters{ - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/bed{ - can_buckle = 0; - desc = "A lightweight support lattice."; - icon = 'icons/obj/structures/structures.dmi'; - icon_state = "latticefull"; - layer = 2.1; - name = "lattice" - }, -/turf/open/floor/plating, -/area/golden_arrow/hangar) -"TI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"TK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"TN" = ( -/turf/closed/wall/almayer/reinforced, -/area/golden_arrow/engineering) -"TO" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"TP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"TT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/golden_arrow/squad_two) -"TW" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/synthcloset) -"TY" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/canteen) -"Ub" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"Uf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"Uh" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/briefing) -"Ui" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/canteen) -"Uj" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/platoon_sergeant) -"Uk" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 7 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_one) -"Um" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/clothing/synth{ - density = 0; - pixel_x = -30 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/synthcloset) -"Uv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"UI" = ( -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_one) -"UK" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/m4ra/pve{ - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"UN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/line_nexter{ - dir = 1; - id = "MTline"; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/canteen) -"UO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/dorms) -"UT" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"UX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Va" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Vc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Ve" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/item/storage/pill_bottle/tramadol/skillless{ - layer = 2.9; - pill_type_to_fill = null; - pixel_y = 14 - }, -/obj/structure/pipes/vents/pump, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 26 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/tool/soap, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Vj" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"Vp" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/dorms) -"Vq" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"Vr" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"Vu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Supply Bay" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/supply) -"Vv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Vz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"VG" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/firingrange) -"VJ" = ( -/obj/structure/ladder{ - height = 1; - id = "req1" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/supply) -"VK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/smartgunner{ - req_access_txt = "14;39"; - req_one_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"VL" = ( -/obj/structure/closet/secure_closet/platoon_sergeant, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"VQ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"VT" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/stamp/denied{ - pixel_x = 2; - pixel_y = 10 - }, -/obj/item/device/eftpos{ - eftpos_name = "Cargo Bay EFTPOS scanner"; - pixel_x = -10 - }, -/obj/item/tool/stamp/ro{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/storage/fancy/cigar{ - pixel_x = 6 - }, -/obj/item/ashtray/glass{ - pixel_x = 11; - pixel_y = 9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"VX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"Wf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 - }, -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"Wg" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/platoon_commander_rooms) -"Wj" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/dorms) -"Wl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Wm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Wo" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"Wp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"Wr" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"Ws" = ( -/obj/item/tool/warning_cone, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Wu" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) -"Wv" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Wy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"WA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/largecrate, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"WG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/supply) -"WK" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/flamer{ - current_mag = null; - pixel_y = 4 - }, -/obj/item/ammo_magazine/flamer_tank, -/obj/item/ammo_magazine/flamer_tank, -/obj/item/device/motiondetector, -/obj/item/attachable/attached_gun/extinguisher/pyro{ - layer = 3.01 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"WP" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/briefing) -"WY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19 - }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Xa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Xb" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/folder/yellow, -/obj/item/book/manual/engineering_construction, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"Xc" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"Xd" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"Xj" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -20 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"Xs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"Xu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Firing Range" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/firingrange) -"Xv" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/golden_arrow/platoon_commander_rooms) -"Xw" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Xy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Xz" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/golden_arrow/platoon_sergeant) -"XI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/prep_hallway) -"XJ" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/briefing) -"XL" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = -7; - pixel_y = -4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 14; - pixel_y = 24 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -7; - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"XN" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"XP" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 7; - pixel_y = -28 - }, -/obj/structure/reagent_dispensers/ammoniatank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"XQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"XR" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/ceramic_plate{ - pixel_y = 19 - }, -/obj/item/trash/ceramic_plate{ - pixel_y = 21 - }, -/obj/item/trash/ceramic_plate{ - pixel_y = 23 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"XV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Ya" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/squad_two) -"Yc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/supply/ammo/m41amk1, -/obj/structure/largecrate/supply/ammo/m41amk1{ - pixel_x = 3; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"Yd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/item/folder/black_random, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/platoon_sergeant) -"Ye" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"Yh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"Yj" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/hangar) -"Yk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/firingrange) -"Yl" = ( -/obj/structure/machinery/cm_vending/gear/synth{ - density = 0; - pixel_x = -30 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/synthcloset) -"Ym" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"Yp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/golden_arrow/squad_two) -"Ys" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/item/trash/ceramic_plate{ - pixel_x = 6; - pixel_y = 19 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 6; - pixel_y = 21 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 5; - pixel_y = 23 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Yv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"Yw" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) -"Yx" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_x = -6; - pixel_y = 19 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = -6; - pixel_y = 21 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = -5; - pixel_y = 23 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"YA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/briefing) -"YB" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/engineering) -"YG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"YK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"YO" = ( -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) -"YP" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/briefing) -"YQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"YX" = ( -/obj/effect/landmark/start/marine/medic/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"Zb" = ( -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"Zd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"Zf" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Zk" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/prep_hallway) -"Zl" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"Zw" = ( -/obj/structure/largecrate/supply/generator, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) -"ZB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"ZC" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/squad_one) -"ZI" = ( -/obj/effect/landmark/start/marine/smartgunner/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"ZJ" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/synthcloset) -"ZL" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"ZM" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/canteen) -"ZQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/firingrange) -"ZR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"ZU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/supply) -"ZV" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"ZX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/engineering{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) +"ad" = (/obj/structure/machinery/light,/obj/structure/target{name = "ready line Ronald"},/obj/item/clothing/suit/storage/marine/heavy/smooth,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"af" = (/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/squad_one) +"ag" = (/obj/structure/window/framed/almayer,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) +"ah" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/obj/item/tool/warning_cone{pixel_x = -7; pixel_y = 6},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"al" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"an" = (/obj/structure/closet/emcloset,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"aq" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"ar" = (/obj/structure/machinery/landinglight/ds1/delayone{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"aw" = (/obj/structure/sign/safety/storage{pixel_x = 9; pixel_y = 29},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"ax" = (/obj/structure/cargo_container/arious/mid,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"ay" = (/obj/structure/sign/safety/restrictedarea{pixel_x = 12; pixel_y = 29},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"aA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/platform/stair_cut,/obj/structure/stairs/perspective{dir = 8; icon_state = "p_stair_full"},/turf/open/floor/almayer,/area/golden_arrow/supply) +"aB" = (/obj/structure/machinery/landinglight/ds1/delaythree{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"aG" = (/obj/structure/largecrate/supply/supplies/tables_racks,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"aI" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"aJ" = (/obj/structure/surface/table/almayer,/obj/structure/pipes/standard/simple/hidden/supply{dir = 6},/obj/item/prop/magazine/book/borntokill,/obj/item/prop/magazine/book/starshiptroopers{pixel_x = 3; pixel_y = 3},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_one) +"aN" = (/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"aO" = (/obj/item/prop/colony/game,/obj/structure/surface/table/almayer,/turf/open/floor/almayer,/area/golden_arrow/dorms) +"aQ" = (/obj/structure/sign/safety/galley{pixel_y = 29},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"aS" = (/obj/structure/machinery/power/fusion_engine{name = "\improper S-52 fusion reactor 17"},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"aT" = (/obj/structure/machinery/computer/cameras/almayer/vehicle{dir = 4; network = list("Golden Arrow","Vehicle","Midway"); pixel_x = -17},/obj/structure/machinery/prop/almayer/CICmap{density = 0; dir = 4; icon_state = "shuttle"; layer = 2.97; name = "Tactical Map Display"; pixel_x = -17; pixel_y = 14},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) +"aX" = (/obj/structure/platform_decoration{dir = 4},/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/supply) +"ba" = (/obj/item/tool/warning_cone{pixel_x = 4; pixel_y = 16},/obj/item/stool,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/synthcloset) +"bb" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"bf" = (/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"bg" = (/obj/structure/machinery/light{dir = 1},/obj/structure/closet/crate/construction,/obj/item/stack/sandbags_empty/half,/obj/item/stack/sandbags_empty/half,/obj/item/stack/sandbags_empty/half,/obj/item/stack/sandbags_empty/half,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"bh" = (/obj/effect/landmark/start/marine/leader/alpha,/obj/effect/landmark/late_join/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"bl" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/firingrange) +"bo" = (/obj/structure/window/framed/almayer,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_commander_rooms) +"bq" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"bu" = (/obj/structure/machinery/camera/autoname/golden_arrow,/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"bw" = (/obj/structure/curtain/red,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"by" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"bB" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"bD" = (/obj/structure/machinery/door/airlock/almayer/command/reinforced{dir = 1; name = "\improper Platoon Commander's Office"; req_access = list(); req_one_access_txt = "19;12"},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_commander_rooms) +"bO" = (/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{req_one_access = list()},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"bQ" = (/obj/structure/machinery/landinglight/ds1{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"bR" = (/obj/structure/bed/chair/comfy,/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"bS" = (/obj/structure/platform/stair_cut/alt,/obj/structure/stairs/perspective{dir = 8; icon_state = "p_stair_full"},/obj/structure/platform,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"bZ" = (/obj/structure/window/framed/almayer,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"ca" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/hangar) +"ce" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/firingrange) +"cj" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"cl" = (/obj/structure/machinery/landinglight/ds1/delayone{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"co" = (/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) +"cp" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/machinery/landinglight/ds1/delayone{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"cr" = (/obj/effect/landmark/start/marine/alpha,/obj/effect/landmark/late_join/alpha,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"cs" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"ct" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/prop/almayer/hangar_stencil,/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"cw" = (/obj/structure/machinery/computer/atmos_alert{dir = 4},/obj/structure/surface/table/almayer,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"cy" = (/obj/structure/machinery/power/apc/almayer{dir = 1},/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"cz" = (/obj/structure/machinery/disposal{density = 0; layer = 3.2; pixel_y = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"cA" = (/obj/effect/decal/cleanable/dirt,/obj/item/prop/magazine/boots/n054{pixel_x = 29},/obj/structure/closet/secure_closet/smartgunner{req_access_txt = "14;40"; req_one_access = list()},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"cB" = (/obj/structure/machinery/camera/autoname/golden_arrow,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"cD" = (/obj/structure/surface/table/almayer,/obj/item/spacecash/c10{pixel_x = 5; pixel_y = 7},/obj/item/storage/box/co2_knife{pixel_x = 3; pixel_y = 13},/turf/open/floor/almayer,/area/golden_arrow/squad_one) +"cG" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/spawner/random/powercell,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"cH" = (/obj/structure/surface/table/reinforced/prison,/obj/structure/machinery/computer/med_data/laptop,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"cJ" = (/obj/structure/bed/chair/office/light{dir = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"cL" = (/obj/structure/machinery/landinglight/ds1/delaytwo,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"cR" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/structure/surface/table/almayer,/obj/item/reagent_container/food/drinks/coffeecup/wy{desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; name = "dip cup"; pixel_x = -4; pixel_y = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_one) +"cS" = (/obj/structure/machinery/door/airlock/almayer/medical{name = "\improper Platoon Medic Office"; req_one_access = list(); req_one_access_txt = "8"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) +"cT" = (/turf/open/floor/almayer,/area/golden_arrow/squad_one) +"cU" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"cZ" = (/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"dd" = (/obj/structure/pipes/vents/pump{dir = 8},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"de" = (/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"dg" = (/obj/structure/machinery/portable_atmospherics/powered/scrubber,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"di" = (/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"dj" = (/obj/structure/closet/fireaxecabinet{pixel_y = 30},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"dl" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/safety/coffee{pixel_x = -19},/obj/structure/machinery/vending/cigarette,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"dm" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"dn" = (/obj/structure/bed/chair/comfy{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"dr" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) +"ds" = (/obj/structure/machinery/power/terminal{dir = 4},/obj/item/tool/wirecutters{pixel_y = -6},/obj/item/device/multitool{pixel_x = -10},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"dt" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"dv" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"dA" = (/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"dB" = (/obj/structure/machinery/landinglight/ds1/delayone{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"dE" = (/obj/structure/surface/table/reinforced/prison,/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"dG" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"dH" = (/obj/item/bedsheet/brown,/obj/structure/bed,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_commander_rooms) +"dJ" = (/turf/open/floor/plating,/area/golden_arrow/hangar) +"dO" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"dP" = (/obj/structure/closet/firecloset,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"dX" = (/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/squad_two) +"ea" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"eh" = (/obj/structure/surface/rack,/obj/item/ammo_magazine/rifle/m41aMK1{current_rounds = 0; pixel_x = -5},/obj/item/ammo_magazine/rifle/m41aMK1{current_rounds = 0},/obj/item/ammo_magazine/rifle/m41aMK1{current_rounds = 0; pixel_x = 5},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) +"ek" = (/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/firingrange) +"eo" = (/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"eu" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"ey" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/structure/machinery/door/airlock/almayer/maint/reinforced{access_modified = 1; dir = 8; name = "\improper Synthetic Preperations"; req_one_access = list(36)},/obj/structure/machinery/door/poddoor/almayer/closed{dir = 4; indestructible = 1},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/synthcloset) +"eB" = (/obj/structure/prop/almayer/computers/sensor_computer1,/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"eH" = (/obj/structure/window/framed/almayer/hull,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) +"eJ" = (/obj/structure/machinery/power/apc/almayer,/obj/structure/surface/table/reinforced/prison,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"eL" = (/obj/structure/machinery/cryopod/right,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) +"eR" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"eT" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/almayer,/area/golden_arrow/synthcloset) +"eU" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) +"eY" = (/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/hangar) +"fe" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"ff" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"fg" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer/uscm/directional{dir = 10},/area/golden_arrow/briefing) +"fh" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/obj/structure/bed/chair{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_sergeant) +"fl" = (/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"fm" = (/obj/structure/foamed_metal,/turf/open/floor/plating,/area/golden_arrow/engineering) +"fo" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"fp" = (/obj/structure/closet/secure_closet/engineering_welding{req_one_access = list()},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"fq" = (/obj/structure/machinery/conveyor{dir = 10},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/supply) +"ft" = (/obj/structure/curtain/red,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"fv" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"fx" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"fy" = (/obj/structure/platform,/obj/structure/stairs/perspective{dir = 8; icon_state = "p_stair_full"},/obj/structure/platform/stair_cut/alt,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"fF" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"fJ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/prop/invuln/overhead_pipe{pixel_x = -7; pixel_y = -4},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"fL" = (/obj/structure/surface/table/almayer,/obj/item/device/megaphone,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"fO" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/structure/machinery/door/airlock/almayer/medical{dir = 1; name = "\improper Medical Subsection"; req_one_access = list(); req_one_access_txt = "8"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) +"fW" = (/obj/structure/pipes/vents/scrubber,/obj/structure/machinery/alarm/almayer{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) +"fX" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"fY" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/cm_vending/sorted/medical/blood{req_access = list()},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"gd" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"gf" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 6},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"gg" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"gh" = (/obj/structure/machinery/landinglight/ds1{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"gn" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/surgical{pixel_x = -30},/obj/structure/surface/table/almayer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/synthcloset) +"gp" = (/obj/structure/surface/rack,/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/platoon_commander_rooms) +"gq" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"gt" = (/obj/structure/machinery/power/monitor{name = "Core Power Monitoring"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"gx" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{req_one_access = list()},/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"gz" = (/obj/structure/ship_ammo/rocket/widowmaker,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"gA" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/computer/emails{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"gB" = (/obj/structure/machinery/telecomms/relay/preset/tower,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"gD" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"gE" = (/turf/closed/wall/almayer,/area/golden_arrow/supply) +"gG" = (/obj/structure/machinery/light{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/cm_vending/sorted/medical/no_access,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"gH" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/power/apc/almayer{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"gI" = (/obj/structure/surface/rack,/obj/item/device/flashlight/lamp/on{pixel_y = 13},/obj/item/weapon/straight_razor{pixel_x = 4; pixel_y = -6},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"gL" = (/obj/structure/machinery/light{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"gM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"gQ" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"gS" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"gT" = (/obj/structure/machinery/conveyor{dir = 8},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/supply) +"gW" = (/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"ha" = (/obj/structure/machinery/light{dir = 8},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"he" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 6},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"hk" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 4; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"ho" = (/obj/structure/machinery/autodoc_console{dir = 1; pixel_y = 6},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) +"hq" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer,/area/golden_arrow/synthcloset) +"hy" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"hA" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"hC" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/item/smartgun_battery{pixel_x = 4; pixel_y = -5},/obj/effect/spawner/random/powercell{pixel_x = -8; pixel_y = 7},/obj/structure/pipes/standard/manifold/hidden/supply{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_two) +"hD" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/firingrange) +"hF" = (/obj/effect/decal/cleanable/blood/oil,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"hG" = (/obj/structure/machinery/medical_pod/autodoc{dir = 1; pixel_y = 6},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) +"hL" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/structure/sign/safety/electronics{pixel_x = 31; pixel_y = 6},/obj/structure/sign/safety/high_voltage{pixel_x = 31; pixel_y = -6},/obj/structure/machinery/portable_atmospherics/canister/air,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"hM" = (/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/firingrange) +"hN" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/computer/secure_data{pixel_y = 6},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"hQ" = (/obj/structure/machinery/power/apc/almayer{dir = 1},/obj/structure/pipes/standard/manifold/hidden/supply{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) +"hR" = (/obj/structure/machinery/firealarm{pixel_y = 28},/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"hS" = (/turf/closed/wall/almayer,/area/golden_arrow/platoon_commander_rooms) +"hU" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/item/device/flashlight{pixel_x = -4; pixel_y = 7},/obj/item/tool/warning_cone,/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"hW" = (/obj/structure/surface/table/reinforced/prison,/obj/structure/machinery/recharger,/obj/item/reagent_container/spray/cleaner,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"ie" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"if" = (/obj/structure/reagent_dispensers/fueltank/custom,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"ik" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"il" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"ip" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "SE-out"},/obj/structure/machinery/door/airlock/almayer/generic{id = "Delta_1"; name = "\improper Bathroom"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/cryo_cells) +"iy" = (/obj/structure/pipes/vents/pump{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"iA" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/item/device/flashlight/lamp,/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) +"iC" = (/obj/structure/sign/safety/security{pixel_x = 15; pixel_y = -25},/obj/structure/sign/safety/west{pixel_x = 3; pixel_y = -25},/obj/structure/largecrate/random/barrel/blue,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"iE" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_one) +"iF" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/turf/open/floor/almayer,/area/golden_arrow/supply) +"iG" = (/obj/structure/machinery/door/poddoor/almayer/open,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/prep_hallway) +"iK" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) +"iL" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/structure/machinery/light{dir = 4},/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"iN" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"iQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 8},/obj/structure/machinery/photocopier,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"iR" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_commander_rooms) +"iX" = (/obj/structure/sign/safety/rewire{pixel_x = 14; pixel_y = 29},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"jb" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"jc" = (/obj/structure/closet/firecloset,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/prep_hallway) +"je" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"jf" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"jg" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"jj" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"jl" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"js" = (/obj/structure/machinery/firealarm{pixel_y = 28},/obj/structure/largecrate/supply/ammo/m41amk1,/obj/structure/largecrate/supply/ammo/m41amk1{pixel_x = 3; pixel_y = 10},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"jt" = (/obj/structure/target,/obj/structure/machinery/light{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/firingrange) +"jy" = (/obj/effect/decal/cleanable/blood/oil,/obj/structure/machinery/computer/station_alert{dir = 8; pixel_x = 15; pixel_y = 2},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/synthcloset) +"jD" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"jG" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"jN" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/cell_charger,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"jO" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"jQ" = (/obj/structure/machinery/pipedispenser,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"jS" = (/obj/structure/machinery/power/terminal{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"jU" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"jV" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/obj/structure/machinery/door/airlock/almayer/medical{dir = 1; name = "\improper Medical Subsection"; req_one_access = list()},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) +"kg" = (/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) +"kh" = (/obj/structure/surface/table/almayer,/obj/item/storage/belt/utility/full,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"kk" = (/obj/structure/pipes/vents/pump{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"km" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) +"kq" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"kr" = (/obj/structure/machinery/cryopod/right,/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) +"kw" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"kB" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"kF" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/reagentgrinder/industrial{pixel_y = 9},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"kH" = (/obj/structure/machinery/computer/cryopod{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"kI" = (/obj/structure/machinery/light{dir = 8},/obj/structure/bed/chair{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) +"kO" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"kS" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/supply) +"kU" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/structure/machinery/floodlight/landing,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"kV" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/cleanable/blood/oil,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"kX" = (/obj/structure/machinery/power/apc/almayer{dir = 1},/obj/structure/prop/invuln/lattice_prop{icon_state = "lattice2"; pixel_x = 16; pixel_y = 16},/obj/structure/prop/invuln/lattice_prop{dir = 1; icon_state = "lattice-simple"; pixel_x = 16; pixel_y = -15},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"lc" = (/obj/structure/closet/cryo,/obj/structure/closet/cryo,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"ld" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"lg" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"lh" = (/obj/structure/machinery/floodlight/landing,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"lm" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"lo" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"ly" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/manifold/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"lA" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/supply) +"lB" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/machinery/alarm/almayer{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"lE" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"lG" = (/obj/structure/bed/chair/comfy{dir = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"lK" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/computer/atmos_alert{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"lQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/firealarm{pixel_y = 28},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"lS" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_sergeant) +"lV" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{req_access = list(); req_one_access_txt = "8;12;39"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"mb" = (/obj/structure/machinery/door/poddoor/almayer/locked{dir = 4; name = "\improper Hangar Lockdown Blast Door"},/turf/closed/wall/almayer/outer,/area/golden_arrow/supply) +"mc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/marine_personal{job = "Platoon Sergeant"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"me" = (/obj/structure/machinery/door/airlock/almayer/command/reinforced{dir = 1; name = "\improper Briefing Room"; req_access = list()},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) +"mf" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/structure/pipes/standard/simple/hidden/supply,/obj/item/storage/fancy/cigarettes/lucky_strikes{pixel_x = -6; pixel_y = 12},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_two) +"mk" = (/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/briefing) +"ml" = (/obj/structure/ship_ammo/minirocket,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"mm" = (/obj/structure/cargo_container/lockmart/mid{layer = 3.1; pixel_y = 5},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"mo" = (/obj/structure/surface/rack,/obj/item/storage/briefcase/inflatable,/obj/item/storage/briefcase/inflatable,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"ms" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"mB" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/prop/almayer/hangar_stencil,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"mD" = (/obj/structure/machinery/door/airlock/almayer/generic{req_one_access_txt = "8;12;39"},/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/squad_one) +"mR" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/squad_two) +"mW" = (/obj/structure/machinery/landinglight/ds1,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"mY" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"mZ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/firecloset/full,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) +"nb" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{name = "\improper Squad Two Armoury"; req_one_access_txt = "8;12;40"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/squad_two) +"nd" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"ng" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/machinery/light,/obj/structure/largecrate,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"ni" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed/chair/comfy/alpha{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"nj" = (/obj/effect/decal/cleanable/dirt,/obj/structure/prop/invuln/lattice_prop{icon_state = "lattice1"; pixel_x = 16; pixel_y = -15},/obj/structure/closet/secure_closet/marine_personal{pixel_x = 8},/obj/structure/closet/secure_closet/marine_personal{pixel_x = -8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"nm" = (/obj/structure/prop/invuln/lifeboat_hatch_placeholder{layer = 2.1},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"ns" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/cryo,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"nx" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"ny" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"nD" = (/obj/structure/machinery/conveyor{dir = 8},/obj/structure/barricade/handrail{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"nF" = (/obj/structure/pipes/vents/pump{dir = 8},/obj/structure/machinery/power/apc/almayer{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/synthcloset) +"nG" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/squad_one) +"nH" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"nK" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/power/apc/almayer{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) +"nL" = (/obj/structure/surface/table/almayer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) +"nM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/reinforced/almayer_B,/obj/structure/sign/banners/united_americas_flag{pixel_x = -16; pixel_y = 30},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"nN" = (/obj/structure/largecrate/random/secure,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"nR" = (/obj/structure/machinery/cryopod{layer = 3.1; pixel_y = 13},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) +"nT" = (/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 4},/obj/structure/cargo_container/wy/right,/obj/structure/sign/poster{desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; icon_state = "poster11"; name = "YOU ALWAYS KNOW A WORKING JOE."; pixel_x = -22; pixel_y = 3; serial_number = 11},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"nV" = (/obj/structure/machinery/light{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"nY" = (/obj/structure/bed/chair/comfy/alpha{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/briefing) +"oa" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed/chair/comfy/alpha{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"oe" = (/obj/structure/sign/safety/bulkhead_door{pixel_y = -29},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"og" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"oh" = (/obj/structure/largecrate/random/barrel/blue,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"ol" = (/obj/effect/landmark/observer_start,/turf/open/floor/almayer/uscm/directional{dir = 8; icon_state = "logo_c"},/area/golden_arrow/briefing) +"oo" = (/obj/structure/closet/secure_closet/engineering_electrical{req_one_access = list()},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"or" = (/obj/structure/machinery/conveyor,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/supply) +"ot" = (/obj/structure/surface/rack,/obj/item/weapon/gun/rifle/m41aMK1{pixel_y = 7},/obj/item/weapon/gun/rifle/m41aMK1,/obj/item/weapon/gun/rifle/m41aMK1{pixel_y = -7},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"ou" = (/turf/open/floor/almayer_hull{dir = 1; icon_state = "outerhull_dir"},/area/golden_arrow/hangar) +"ov" = (/obj/structure/machinery/light{dir = 1},/obj/structure/surface/table/reinforced/prison,/obj/item/storage/box/pillbottles,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"oA" = (/obj/structure/machinery/shower{dir = 8},/obj/structure/machinery/door/window/westleft,/obj/structure/window/reinforced/tinted/frosted,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_commander_rooms) +"oC" = (/obj/structure/plasticflaps,/obj/structure/machinery/conveyor{dir = 8},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"oH" = (/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) +"oJ" = (/obj/structure/machinery/medical_pod/bodyscanner{pixel_y = 6},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) +"oK" = (/obj/structure/machinery/door/poddoor/almayer/open,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/prep_hallway) +"oL" = (/obj/structure/platform_decoration{dir = 8},/obj/structure/platform_decoration,/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"oM" = (/obj/structure/bed/chair/comfy{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/safety/rewire{pixel_x = 14; pixel_y = 29},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) +"oO" = (/obj/structure/machinery/power/terminal{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"oQ" = (/obj/item/prop/helmetgarb/gunoil{pixel_x = 7; pixel_y = 6},/obj/item/prop/helmetgarb/gunoil,/obj/structure/surface/table/almayer,/obj/structure/sign/poster{desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; icon_state = "poster10"; name = "Koorlander Gold Poster"; pixel_x = 29; pixel_y = 6; serial_number = 10},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"oW" = (/obj/structure/machinery/power/apc/almayer{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"oX" = (/obj/structure/largecrate/supply/generator,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"pf" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/item/ammo_box/magazine/heap/empty,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_two) +"pl" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"pt" = (/obj/structure/machinery/door/poddoor/almayer/locked{dir = 4; name = "\improper Hangar Lockdown Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/prep_hallway) +"pw" = (/obj/effect/decal/cleanable/dirt,/obj/structure/prop/invuln/lattice_prop{dir = 1; icon_state = "lattice-simple"; pixel_x = 16; pixel_y = -15},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"pB" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"pD" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"pF" = (/obj/structure/bed/chair,/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) +"pG" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"pJ" = (/obj/effect/decal/cleanable/dirt,/turf/closed/wall/almayer/outer,/area/golden_arrow/squad_one) +"pO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"pR" = (/obj/structure/pipes/standard/manifold/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"pS" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/suit_storage_unit/carbon_unit,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"pW" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/obj/structure/largecrate/random/barrel/blue,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) +"pZ" = (/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"qa" = (/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/squad_one) +"qc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/manifold/hidden/supply{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"qf" = (/obj/structure/machinery/cryopod/right{pixel_y = 6},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) +"qh" = (/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"qi" = (/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) +"qm" = (/obj/structure/machinery/cryopod/right{layer = 3.1; pixel_y = 13},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) +"qu" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{dir = 1; name = "\improper Briefing Room"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) +"qv" = (/obj/structure/bed/chair/comfy/alpha{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/briefing) +"qw" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"qz" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/filingcabinet{density = 0; pixel_x = 8; pixel_y = 16},/obj/structure/filingcabinet{density = 0; pixel_x = -8; pixel_y = 18},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"qA" = (/turf/closed/wall/almayer,/area/golden_arrow/platoon_sergeant) +"qD" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/poster{desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; icon_state = "poster11"; name = "YOU ALWAYS KNOW A WORKING JOE."; pixel_x = 27; serial_number = 11},/obj/structure/machinery/disposal{density = 0; layer = 3.2; pixel_y = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"qE" = (/obj/structure/barricade/metal{dir = 8},/obj/structure/machinery/light,/obj/structure/sign/safety/two{pixel_y = -22},/turf/open/floor/almayer,/area/golden_arrow/firingrange) +"qI" = (/obj/structure/machinery/landinglight/ds1/delayone{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"qQ" = (/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/platoon_sergeant) +"qR" = (/obj/structure/machinery/cm_vending/sorted/marine_food,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"qT" = (/turf/open/floor/almayer/uscm/directional{dir = 9},/area/golden_arrow/briefing) +"qU" = (/obj/structure/flora/pottedplant{icon_state = "pottedplant_21"},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) +"qW" = (/obj/structure/surface/table/almayer,/obj/item/storage/toolbox/mechanical/green{pixel_y = 10},/obj/item/storage/toolbox/mechanical/green{pixel_x = -7; pixel_y = -1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"rb" = (/obj/structure/machinery/cryopod{pixel_y = 6},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) +"rd" = (/obj/structure/closet/cryo,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"rf" = (/obj/structure/machinery/landinglight/ds1{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"rh" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"rk" = (/obj/structure/cargo_container/arious/left,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"rl" = (/turf/open/floor/almayer/uscm/directional{dir = 1},/area/golden_arrow/briefing) +"ro" = (/obj/structure/largecrate/supply/supplies/water,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"rq" = (/obj/structure/largecrate/supply/floodlights,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"rr" = (/turf/open/floor/almayer/uscm/directional{dir = 5},/area/golden_arrow/briefing) +"rt" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/item/tool/wet_sign,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"rx" = (/obj/structure/surface/table/almayer,/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"ry" = (/obj/structure/bed/chair/comfy/alpha{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/briefing) +"rA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/janitorialcart,/obj/item/tool/mop{pixel_x = -1; pixel_y = -10},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"rH" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"rI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/item/toy/beach_ball/holoball,/obj/structure/sign/poster{desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; icon_state = "poster12"; name = "Beach Babe Pinup"; pixel_x = 28; pixel_y = 5; serial_number = 12},/obj/structure/sign/poster{desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; icon_state = "poster16"; name = "'Miss July' Pinup"; pixel_x = 32; serial_number = 16},/obj/item/storage/fancy/cigarettes/lucky_strikes{pixel_x = 6; pixel_y = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"rJ" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/briefing) +"rM" = (/obj/structure/cargo_container/wy/mid,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"rV" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer/uscm/directional,/area/golden_arrow/briefing) +"rX" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/marine_personal{pixel_x = 8; job = "Smartgunner"},/obj/structure/closet/secure_closet/marine_personal{pixel_x = -8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"rZ" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"sa" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"sc" = (/obj/structure/pipes/vents/scrubber,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"sf" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/squad_one) +"sg" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{name = "\improper Dorms"},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/dorms) +"sk" = (/obj/structure/machinery/power/apc/almayer{dir = 8},/obj/structure/bed/chair{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"sm" = (/turf/open/floor/almayer/uscm/directional{dir = 6},/area/golden_arrow/briefing) +"so" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"sv" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"sy" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/item/tool/warning_cone,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"sC" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/platoon_sergeant) +"sE" = (/obj/structure/machinery/power/smes/buildable,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"sI" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/cryo_cells) +"sN" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"sO" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"sR" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/bed/chair{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/dorms) +"sS" = (/obj/structure/surface/table/almayer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"sU" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"sV" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_two) +"sX" = (/obj/effect/decal/cleanable/dirt,/obj/item/paper_bin/uscm{pixel_x = -8; pixel_y = 5},/obj/item/clipboard{pixel_x = 8; pixel_y = 3},/obj/item/tool/pen{pixel_x = 12},/obj/structure/surface/table/almayer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"sY" = (/obj/item/clothing/suit/storage/jacket/marine/service,/obj/item/clothing/suit/storage/jacket/marine/service/tanker,/obj/structure/closet/secure_closet/marine_personal{icon_broken = "cabinetdetective_broken"; icon_closed = "cabinetdetective"; icon_locked = "cabinetdetective_locked"; icon_off = "cabinetdetective_broken"; icon_opened = "cabinetdetective_open"; icon_state = "cabinetdetective_locked"; job = "Platoon Commander"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_commander_rooms) +"tb" = (/obj/structure/sign/safety/firingrange{pixel_x = -24; pixel_y = 7},/obj/structure/sign/safety/hazard{pixel_x = -24; pixel_y = -7},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"tf" = (/obj/structure/pipes/vents/pump{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/firingrange) +"ti" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"to" = (/obj/structure/prop/invuln/lifeboat_hatch_placeholder{layer = 2.1},/obj/structure/prop/invuln/lifeboat_hatch_placeholder{layer = 2.1},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"tr" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) +"tv" = (/obj/structure/flora/pottedplant{icon_state = "pottedplant_18"},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) +"ty" = (/obj/structure/surface/table/almayer,/obj/item/storage/box/pdt_kit{pixel_x = 7; pixel_y = 9},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_two) +"tA" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/supply) +"tB" = (/obj/structure/closet/firecloset/full,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"tS" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{req_access = list(); req_one_access_txt = "8;12;40"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"tT" = (/obj/structure/surface/table/almayer,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"tV" = (/obj/structure/ship_ammo/rocket/keeper,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"tX" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/vents/scrubber,/obj/structure/machinery/cm_vending/sorted/medical/wall_med{pixel_y = 25},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) +"ua" = (/obj/item/tool/warning_cone{pixel_y = 16},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) +"ub" = (/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) +"ug" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 4; name = "ship-grade camera"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"um" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/structure/machinery/firealarm{pixel_y = 28},/obj/structure/machinery/faxmachine/uscm/command/capt,/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) +"uo" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/supply) +"up" = (/obj/structure/bed/chair/comfy{dir = 1},/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"us" = (/obj/structure/pipes/vents/pump{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"uu" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"uw" = (/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"uA" = (/obj/structure/machinery/light,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"uE" = (/obj/structure/machinery/firealarm{pixel_y = 28},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) +"uF" = (/obj/structure/surface/table/reinforced/prison,/obj/structure/machinery/computer/crew/alt,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"uG" = (/obj/item/tool/warning_cone,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"uH" = (/obj/structure/sign/poster{desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; icon_state = "poster12"; name = "Beach Babe Pinup"; pixel_x = -30; pixel_y = 6; serial_number = 12},/obj/effect/decal/cleanable/dirt,/obj/structure/bed/chair{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"uO" = (/obj/structure/surface/table/almayer,/obj/item/device/flashlight/lamp{pixel_x = 11; pixel_y = 5},/obj/item/paper_bin/uscm{pixel_x = -4; pixel_y = 7},/obj/item/tool/pen{pixel_x = -5; pixel_y = 4},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) +"uQ" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"uS" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/turf/open/floor/almayer,/area/golden_arrow/supply) +"uX" = (/obj/structure/closet/secure_closet/engineering_chief,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"vb" = (/obj/structure/surface/table/reinforced/almayer_B{layer = 2; pixel_x = 12},/turf/closed/wall/almayer,/area/golden_arrow/platoon_commander_rooms) +"vc" = (/obj/structure/machinery/light{dir = 1},/obj/structure/closet/emcloset,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"vg" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"vk" = (/obj/structure/machinery/light,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/briefing) +"vo" = (/obj/structure/machinery/cm_vending/sorted/medical/wall_med{pixel_y = 25},/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"vp" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/structure/prop/invuln/lattice_prop{dir = 1; icon_state = "lattice-simple"; pixel_x = 16; pixel_y = -15},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) +"vt" = (/obj/structure/machinery/power/apc/almayer{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_commander_rooms) +"vA" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/machinery/door/airlock/almayer/generic{dir = 1; name = "\improper Platoon Sergeant's Bunk"; req_one_access_txt = "12"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"vB" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"vF" = (/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/squad_two) +"vG" = (/obj/structure/machinery/power/terminal{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/item/storage/pouch/electronics{pixel_x = 6; pixel_y = -1},/obj/item/storage/toolbox/mechanical{pixel_x = -7; pixel_y = -8},/obj/item/stack/cable_coil,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"vJ" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"vK" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/supply) +"vL" = (/obj/structure/sign/safety/bulkhead_door{pixel_x = -19},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"vN" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"vP" = (/obj/structure/machinery/light,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"vS" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/machinery/landinglight/ds1{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"vU" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 6},/obj/structure/bed/chair{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/dorms) +"wa" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"wc" = (/obj/structure/machinery/door/airlock/almayer/command/reinforced{name = "\improper Platoon Commander's Quarters"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_commander_rooms) +"wd" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"wi" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"wl" = (/turf/open/floor/almayer,/area/golden_arrow/dorms) +"wn" = (/obj/structure/pipes/standard/manifold/fourway/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) +"wp" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"wx" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"wz" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"wH" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/item/clothing/ears/earmuffs{pixel_x = -8; pixel_y = 8},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/item/device/walkman{pixel_x = 4; pixel_y = -6},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"wI" = (/obj/structure/surface/rack,/obj/effect/spawner/random/technology_scanner,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"wJ" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/light{dir = 8},/obj/item/prop/magazine/book/bladerunner,/obj/item/storage/fancy/cigarettes/lucky_strikes{pixel_x = 2; pixel_y = 18},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"wK" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"wN" = (/obj/structure/closet/fireaxecabinet{pixel_x = -32},/obj/item/book/manual/robotics_cyborgs{pixel_y = 8},/obj/item/tool/wirecutters,/obj/item/tool/weldingtool/hugetank,/obj/structure/surface/rack,/obj/structure/machinery/light/small{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/synthcloset) +"wS" = (/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/briefing) +"wV" = (/obj/structure/machinery/door/airlock/almayer/generic{dir = 1; name = "\improper Platoon Sergeant's Bunk"; req_one_access_txt = "12"},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_sergeant) +"wX" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) +"xf" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/squad_one) +"xh" = (/obj/structure/cargo_container/arious/right,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"xm" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/firealarm{pixel_y = 28},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"xo" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"xx" = (/obj/structure/machinery/light,/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer,/area/golden_arrow/squad_one) +"xz" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"xB" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/structure/machinery/recharger{pixel_y = 6},/obj/structure/machinery/camera/autoname/golden_arrow{dir = 4; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"xJ" = (/obj/structure/closet/secure_closet/engineering_welding{req_one_access = list()},/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"xK" = (/obj/structure/machinery/light{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"xM" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"xQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/safety/galley{pixel_x = -19},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"xX" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/dorms) +"yc" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"ye" = (/turf/closed/wall/almayer,/area/golden_arrow/engineering) +"yg" = (/obj/effect/decal/cleanable/dirt,/obj/structure/supply_drop/echo,/obj/effect/decal/cleanable/dirt,/obj/structure/platform{dir = 8},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) +"yj" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 1; name = "ship-grade camera"},/obj/structure/machinery/vending/walkman,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"yo" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/structure/machinery/status_display{pixel_y = -30},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"ys" = (/obj/structure/sign/safety/rewire{pixel_x = 14; pixel_y = 29},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"yt" = (/obj/structure/window/framed/almayer,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_sergeant) +"yv" = (/obj/structure/machinery/light{dir = 4},/obj/structure/machinery/power/apc/almayer{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"yw" = (/obj/item/toy/deck/uno,/obj/structure/surface/table/almayer,/turf/open/floor/almayer,/area/golden_arrow/dorms) +"yx" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/firealarm{pixel_y = 28},/obj/structure/machinery/computer/arcade,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"yy" = (/obj/structure/closet/emcloset,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"yA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/squad_sergeant{req_access_txt = "32;39"; req_one_access = list()},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"yF" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"yJ" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer,/area/golden_arrow/synthcloset) +"yL" = (/obj/structure/closet/coffin/woodencrate,/obj/item/storage/box/m94,/obj/item/storage/box/m94,/obj/item/storage/box/m94,/obj/structure/sign/safety/rewire{pixel_x = 14; pixel_y = 29},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"yM" = (/obj/structure/surface/table/almayer,/obj/item/reagent_container/food/condiment/hotsauce/cholula{pixel_x = -9; pixel_y = -3},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) +"yO" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"yT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"yU" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/supply) +"yY" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/obj/structure/bed/chair,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_sergeant) +"yZ" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"za" = (/obj/structure/machinery/camera/autoname/golden_arrow,/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"zk" = (/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{req_one_access = list(); req_one_access_txt = "8;12;39"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"zl" = (/obj/structure/machinery/power/smes/buildable,/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"zn" = (/obj/structure/machinery/light{dir = 4},/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"zt" = (/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"zv" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) +"zy" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"zA" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"zD" = (/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"zG" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"zI" = (/obj/structure/pipes/vents/pump,/obj/item/tool/mop{pixel_x = -9; pixel_y = 20},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"zJ" = (/obj/structure/machinery/firealarm{pixel_y = 28},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"zK" = (/obj/structure/pipes/vents/scrubber,/obj/structure/sign/safety/bulkhead_door{pixel_x = 7; pixel_y = 29},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"zL" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"zM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"zP" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/firingrange) +"zV" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/disposal,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"zY" = (/obj/structure/closet/secure_closet/engineering_electrical{req_one_access = list()},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"zZ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/item/tool/screwdriver,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"Ad" = (/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Ap" = (/obj/structure/surface/table/almayer,/obj/item/trash/ceramic_plate,/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) +"As" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"Aw" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/obj/structure/machinery/door/airlock/almayer/generic{name = "\improper Canteen"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/canteen) +"Ax" = (/obj/structure/machinery/shower{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"Ay" = (/obj/structure/machinery/door/poddoor/almayer/locked{dir = 2; name = "\improper Hangar Lockdown Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/prep_hallway) +"AA" = (/obj/structure/machinery/cm_vending/sorted/medical/wall_med{pixel_y = 25},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"AC" = (/obj/structure/machinery/power/terminal{dir = 8},/obj/item/stack/catwalk{pixel_x = 12; pixel_y = -9},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"AG" = (/obj/structure/machinery/landinglight/ds1/delaythree{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"AH" = (/turf/open/floor/almayer,/area/golden_arrow/engineering) +"AK" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/structure/largecrate/random/case/small,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) +"AL" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"AO" = (/obj/structure/machinery/autolathe,/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"AP" = (/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{layer = 2.1},/obj/structure/sign/safety/manualopenclose{layer = 2.11; pixel_x = 12; pixel_y = 2},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"AQ" = (/obj/structure/cargo_container/lockmart/right{layer = 3.1; pixel_y = 5},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"AY" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 4; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"Bd" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"Bf" = (/obj/effect/decal/cleanable/blood/oil,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"Bg" = (/obj/structure/bed/chair{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/dorms) +"Bh" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/vending/coffee/simple,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"Bi" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"Bj" = (/obj/structure/window/framed/almayer/white,/turf/open/floor/almayer,/area/golden_arrow/medical) +"Bo" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/dorms) +"Bq" = (/obj/structure/pipes/standard/manifold/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"Br" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"Bt" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"Bu" = (/obj/item/ammo_magazine/sentry{layer = 3.01},/obj/item/defenses/handheld/sentry,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"Bv" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{name = "Damage Control Locker"; req_one_access = list()},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"Bw" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/safety/rewire{pixel_y = -29},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Bz" = (/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) +"BA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/item/prop/helmetgarb/gunoil{pixel_x = -7; pixel_y = 4},/obj/item/prop/helmetgarb/gunoil{pixel_x = -3},/obj/item/storage/toolbox{pixel_y = -5},/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"BC" = (/obj/structure/target,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/firingrange) +"BD" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) +"BK" = (/obj/structure/bed{can_buckle = 0},/obj/item/bedsheet/brown{layer = 3.4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"BM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/cryo_cells) +"BO" = (/obj/structure/bed/chair{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"BP" = (/obj/effect/decal/cleanable/blood/oil,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"BW" = (/obj/structure/sign/safety/hazard{pixel_x = -19; pixel_y = 6},/obj/structure/sign/safety/ammunition{pixel_x = -19; pixel_y = -6},/obj/structure/sign/safety/bulkhead_door{pixel_x = -31; pixel_y = 6},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"BY" = (/obj/effect/landmark/start/marine/alpha,/obj/effect/landmark/late_join/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"BZ" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) +"Cb" = (/obj/structure/surface/table/almayer,/obj/item/ashtray/bronze{pixel_x = 7; pixel_y = 9},/obj/item/trash/semki{layer = 2; pixel_x = -13; pixel_y = 14},/obj/item/prop/magazine/boots/n054{pixel_x = 29},/obj/item/prop/magazine/dirty/torn{pixel_x = -6; pixel_y = 6},/obj/item/clothing/glasses/disco_fever{pixel_x = 5; pixel_y = 4},/obj/item/tool/hand_labeler{pixel_x = -3; pixel_y = 14},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"Ce" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/alarm/almayer{dir = 1},/obj/item/storage/toolbox/electrical,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"Cf" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) +"Cg" = (/obj/structure/surface/table/almayer,/obj/item/folder/black_random,/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) +"Cl" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) +"Cn" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/bed/chair{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/supply) +"Co" = (/obj/structure/barricade/plasteel{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) +"Cr" = (/turf/open/space/basic,/area/space) +"Cs" = (/obj/structure/bed/chair/comfy{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"Cu" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{name = "\improper Sergeants Room"; req_one_access_txt = "12;32"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_sergeant) +"Cv" = (/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"Cw" = (/obj/structure/machinery/body_scanconsole{pixel_y = 6},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) +"Cy" = (/obj/structure/machinery/conveyor{dir = 8},/obj/structure/barricade/handrail{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"CA" = (/obj/structure/largecrate/random/barrel/green,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) +"CC" = (/obj/structure/surface/rack,/obj/item/ammo_magazine/flamer_tank,/obj/item/ammo_magazine/flamer_tank,/obj/item/weapon/gun/flamer{current_mag = null; pixel_y = 4},/obj/item/device/motiondetector,/obj/item/attachable/attached_gun/extinguisher/pyro{layer = 3.01},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"CF" = (/obj/structure/bed/chair/comfy{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"CK" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/structure/largecrate/random/case/double,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) +"CN" = (/obj/structure/cargo_container/lockmart/left{layer = 3.1; pixel_y = 5},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"CP" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"CS" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/machinery/computer/supply_drop_console/limited/alternate,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"CT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/marine_personal{pixel_x = -8},/obj/structure/closet/secure_closet/marine_personal{pixel_x = 8; job = "Smartgunner"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"CX" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"CZ" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{name = "Midway Remote Control Console"; shuttleId = "dropship_midway"},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) +"Db" = (/obj/effect/decal/cleanable/dirt,/turf/closed/wall/almayer,/area/golden_arrow/squad_two) +"Dc" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"Df" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/item/ammo_box/magazine/misc/flares/empty{pixel_x = -1; pixel_y = 16},/obj/item/device/flashlight/flare{pixel_x = 10},/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"Dg" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"Dl" = (/obj/structure/surface/table/almayer,/obj/item/paper_bin{pixel_x = 5; pixel_y = 22},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"Dw" = (/obj/structure/bed/chair/comfy{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"Dx" = (/obj/structure/surface/table/almayer,/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/obj/item/bananapeel{desc = "Ew."; gender = "plural"; icon = 'icons/obj/items/shards.dmi'; icon_state = "shrapnelsmall"; name = "\improper finger nails"; pixel_x = -6; pixel_y = 5},/obj/item/ashtray/glass{pixel_x = 3; pixel_y = -4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_one) +"DB" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/platoon_commander_rooms) +"DC" = (/turf/open/floor/almayer,/area/golden_arrow/supply) +"DE" = (/obj/structure/machinery/light{dir = 4},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"DF" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/alarm/almayer{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) +"DM" = (/obj/structure/machinery/power/apc/almayer,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"DR" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/almayer,/area/golden_arrow/squad_two) +"DX" = (/obj/structure/toilet{pixel_y = 16},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"DY" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"Ea" = (/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"Eb" = (/obj/structure/surface/table/reinforced/almayer_B,/turf/open/floor/almayer,/area/golden_arrow/briefing) +"Ei" = (/obj/structure/machinery/space_heater,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"Eo" = (/obj/structure/platform_decoration,/obj/structure/platform_decoration{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"Ep" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer,/area/golden_arrow/synthcloset) +"Er" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Eu" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Ey" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"EA" = (/obj/structure/machinery/power/monitor{name = "Core Power Monitoring"},/obj/structure/sign/safety/terminal{pixel_x = -17},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"EB" = (/obj/structure/window/framed/almayer,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"ED" = (/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"EF" = (/obj/structure/machinery/washing_machine,/obj/structure/machinery/washing_machine{layer = 3.5; pixel_y = 15},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"EI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/vents/scrubber,/obj/structure/sign/safety/bathunisex{pixel_y = 29},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"EJ" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"EK" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/cryo_cells) +"EN" = (/obj/structure/barricade/metal{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/firingrange) +"EO" = (/obj/structure/machinery/disposal{density = 0; layer = 3.2; pixel_y = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"EQ" = (/obj/structure/window/reinforced{dir = 4; pixel_x = -2; pixel_y = 4},/obj/structure/window/reinforced{dir = 8; layer = 3.3; pixel_y = 4},/obj/structure/bed{can_buckle = 0},/obj/structure/bed{buckling_y = 13; layer = 3.5; pixel_y = 13},/obj/item/bedsheet/brown{layer = 3.4},/obj/item/bedsheet/brown{pixel_y = 13},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"EX" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"EZ" = (/obj/structure/machinery/landinglight/ds1{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Fa" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/structure/machinery/door/airlock/almayer/generic{name = "\improper Canteen"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/canteen) +"Fe" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/structure/machinery/computer/emails{pixel_y = 4},/obj/structure/machinery/firealarm{pixel_y = 28},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"Ff" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"Fg" = (/turf/open/floor/almayer,/area/golden_arrow/squad_two) +"Fi" = (/obj/structure/surface/table/reinforced/prison,/obj/item/roller,/obj/item/storage/box/bodybags,/obj/structure/machinery/light{dir = 8},/obj/item/storage/box/bodybags,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"Fj" = (/obj/structure/surface/table/almayer,/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/item/ammo_box/magazine/misc/mre{pixel_x = -23; pixel_y = -11},/obj/item/facepaint/black,/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) +"Fl" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"Fu" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Fw" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"Fy" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_two) +"Fz" = (/obj/structure/closet/crate/trashcart,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"FE" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/dorms) +"FI" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"FK" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/firingrange) +"FN" = (/obj/structure/machinery/medical_pod/sleeper{dir = 8; pixel_y = 6},/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) +"FP" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"FR" = (/obj/structure/pipes/vents/pump{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"FS" = (/obj/structure/machinery/cm_vending/sorted/medical/wall_med{pixel_y = 25},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"FT" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"FV" = (/obj/structure/surface/table/almayer,/obj/item/trash/ceramic_plate{pixel_x = 18; pixel_y = 3},/obj/item/trash/ceramic_plate{pixel_x = 18; pixel_y = 5},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"FW" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 8},/obj/structure/sign/safety/rewire{pixel_x = 14; pixel_y = 29},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"Gf" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/computer/cameras/wooden_tv/prop{dir = 8; layer = 3.2; pixel_x = -3; pixel_y = 6},/obj/structure/sign/poster{desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; icon_state = "poster11"; name = "YOU ALWAYS KNOW A WORKING JOE."; pixel_x = 27; serial_number = 11},/obj/item/trash/pistachios{layer = 2; pixel_x = 6; pixel_y = -6},/obj/structure/machinery/recharger{layer = 3.1; pixel_y = 22},/obj/item/ammo_magazine/rifle/incendiary{current_rounds = 0; desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; pixel_x = 10; pixel_y = 2},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"Gg" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"Gi" = (/obj/structure/sign/safety/ammunition{pixel_x = 14; pixel_y = -28},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"Gk" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"Gl" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/prep_hallway) +"Gq" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Gs" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"Gu" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Gv" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Gy" = (/obj/structure/machinery/recharge_station,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Gz" = (/obj/structure/bed/chair/comfy{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) +"GA" = (/obj/structure/machinery/power/apc/almayer{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"GG" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"GK" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/structure/machinery/door/airlock/almayer/generic{dir = 1; id = "Delta_1"; name = "\improper Bathroom"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/cryo_cells) +"GL" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"GN" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) +"GO" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/safety/synth_storage{pixel_x = -20},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"GQ" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"GU" = (/obj/structure/surface/table/almayer,/obj/item/device/radio,/obj/item/device/lightreplacer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"GV" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) +"GY" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/briefing) +"Hc" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/computer/general_air_control/large_tank_control{dir = 4; name = "Lower Deck Waste Tank Control"},/obj/structure/sign/safety/terminal{pixel_x = -17},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"Hd" = (/obj/structure/sign/banners/united_americas_flag{pixel_y = 30},/obj/structure/closet/secure_closet/marine_personal{pixel_x = -8},/obj/structure/closet/secure_closet/marine_personal{pixel_x = 8; job = "Smartgunner"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"Hh" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"Hj" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/prop/almayer/CICmap{pixel_y = 29},/obj/effect/landmark/map_item,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"Hk" = (/obj/structure/closet/coffin/woodencrate,/obj/item/clothing/accessory/storage/droppouch,/obj/item/clothing/accessory/storage/droppouch,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) +"Hm" = (/obj/structure/bed/chair{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) +"Hu" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/target,/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/firingrange) +"Hv" = (/obj/item/frame/camera{desc = "The Staff Officer insisted he needed to monitor everyone at all times."; layer = 2.9; name = "broken camera"; pixel_x = -7; pixel_y = -6},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"Hw" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/structure/machinery/door/airlock/almayer/generic{req_one_access_txt = "8;12;40"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/squad_two) +"Hx" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/structure/machinery/light,/obj/item/device/cassette_tape/aesthetic,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"HG" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"HH" = (/obj/structure/machinery/status_display{pixel_y = 30},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"HK" = (/turf/closed/wall/almayer,/area/golden_arrow/cryo_cells) +"HQ" = (/obj/structure/machinery/light,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"HR" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/hangar) +"HS" = (/obj/structure/machinery/landinglight/ds1/delaythree{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"HT" = (/obj/structure/machinery/power/terminal{dir = 8},/obj/effect/decal/cleanable/blood/oil,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"HV" = (/obj/structure/machinery/landinglight/ds1/delayone{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"HX" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"Ib" = (/obj/structure/barricade/metal{dir = 8},/obj/structure/machinery/light{dir = 1},/obj/structure/sign/safety/one{pixel_y = 22},/turf/open/floor/almayer,/area/golden_arrow/firingrange) +"Ii" = (/obj/structure/machinery/cryopod,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) +"Is" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/firingrange) +"It" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{autoname = 0; dir = 1; req_one_access = list()},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"Iw" = (/obj/structure/surface/table/almayer,/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) +"Iy" = (/obj/structure/computer3frame,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"IC" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"ID" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_sergeant) +"IE" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/item/tool/warning_cone{pixel_x = 2; pixel_y = 10},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_two) +"IH" = (/obj/structure/barricade/metal{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/firingrange) +"IP" = (/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"IR" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/obj/structure/pipes/standard/manifold/hidden/supply,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"IS" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/machinery/camera/autoname/golden_arrow{dir = 4; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"IT" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/structure/prop/almayer/hangar_stencil,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"IU" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"IW" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"IX" = (/obj/structure/machinery/light{dir = 4},/obj/structure/surface/table/almayer,/obj/item/paper_bin/uscm,/obj/item/tool/pen,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"IZ" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Jc" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Jg" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/item/clipboard{pixel_x = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_commander_rooms) +"Jj" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/firingrange) +"Jk" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"Jn" = (/obj/structure/surface/table/almayer,/obj/item/reagent_container/food/drinks/cans/waterbottle{pixel_x = 9; pixel_y = 3},/obj/item/prop/helmetgarb/flair_io{pixel_x = -10; pixel_y = 6},/obj/item/tool/hand_labeler{pixel_y = 14},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) +"Jp" = (/obj/structure/machinery/conveyor{dir = 9},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/supply) +"Jq" = (/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Jv" = (/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) +"JD" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"JI" = (/obj/structure/machinery/landinglight/ds1/delaythree{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/vending/cigarette,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"JJ" = (/obj/structure/machinery/sleep_console{dir = 8; pixel_y = 6},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) +"JL" = (/obj/structure/bed/chair,/turf/open/floor/almayer,/area/golden_arrow/dorms) +"JP" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"JT" = (/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"JU" = (/obj/structure/machinery/cm_vending/clothing/medic,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"JZ" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Kb" = (/obj/structure/surface/rack,/obj/item/tool/screwdriver,/obj/item/prop/helmetgarb/gunoil,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) +"Kd" = (/obj/structure/surface/table/almayer,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"Ke" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Ki" = (/obj/structure/machinery/shower{pixel_y = 16},/obj/structure/window/reinforced{dir = 4; health = 80},/obj/structure/window/reinforced{dir = 8; health = 80},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"Kl" = (/obj/structure/closet/coffin/woodencrate,/obj/item/ammo_magazine/rifle/m4ra/pve,/obj/item/ammo_magazine/rifle/m4ra/pve,/obj/item/ammo_magazine/rifle/m4ra/pve,/obj/item/ammo_magazine/rifle/m4ra/pve,/obj/item/ammo_magazine/rifle/m4ra/pve,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"Kp" = (/obj/structure/surface/rack,/obj/item/weapon/gun/rifle/m41aMK1{pixel_y = 7},/obj/item/weapon/gun/rifle/m41aMK1,/obj/item/weapon/gun/rifle/m41aMK1{pixel_y = -7},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"Ku" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{req_one_access = list(); req_one_access_txt = "8;12;40"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"Kv" = (/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) +"Kx" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"KD" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"KH" = (/obj/vehicle/powerloader,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"KK" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"KL" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) +"KM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light,/obj/structure/barricade/handrail{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) +"KO" = (/turf/open/floor/almayer,/area/golden_arrow/hangar) +"KP" = (/obj/structure/surface/table/almayer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"KQ" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"KU" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"KY" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"KZ" = (/obj/structure/window/reinforced{dir = 4; pixel_x = -2; pixel_y = 4},/obj/structure/window/reinforced{dir = 8; layer = 3.3; pixel_y = 4},/obj/structure/bed{can_buckle = 0},/obj/structure/bed{buckling_y = 13; layer = 3.5; pixel_y = 13},/obj/item/bedsheet/brown{layer = 3.4},/obj/item/bedsheet/brown{pixel_y = 13},/obj/effect/decal/cleanable/dirt,/obj/item/clothing/head/cmcap{layer = 4.1; pixel_x = -1; pixel_y = 22},/obj/item/toy/plush/therapy/red{desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; force = 15; layer = 4.1; name = "Sergeant Huggs"; pixel_y = 15; throwforce = 15},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"La" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/engineering) +"Ld" = (/obj/structure/window/reinforced{dir = 4; pixel_x = -2; pixel_y = 4},/obj/structure/window/reinforced{dir = 8; layer = 3.3; pixel_y = 4},/obj/structure/bed{can_buckle = 0},/obj/structure/bed{buckling_y = 13; layer = 3.5; pixel_y = 13},/obj/item/bedsheet/brown{layer = 3.4},/obj/item/bedsheet/brown{pixel_y = 13},/obj/structure/prop/invuln/lattice_prop{dir = 1; icon_state = "lattice-simple"; pixel_x = 16; pixel_y = -15},/obj/structure/prop/invuln/lattice_prop{icon_state = "lattice2"; pixel_x = 16; pixel_y = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"Lf" = (/obj/effect/landmark/start/marine/tl/alpha,/obj/effect/landmark/late_join/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"Lg" = (/obj/docking_port/stationary/marine_dropship/golden_arrow_hangar,/turf/open/floor/plating,/area/golden_arrow/hangar) +"Ll" = (/obj/structure/ship_ammo/minirocket/incendiary,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"Ln" = (/obj/structure/ship_ammo/rocket/banshee,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"Lo" = (/obj/structure/machinery/light{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Ls" = (/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/alpha{density = 0},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"Lx" = (/obj/structure/machinery/landinglight/ds1{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"LC" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/emcloset,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) +"LE" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) +"LF" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/squad_one) +"LH" = (/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"LJ" = (/turf/open/floor/almayer/uscm/directional{dir = 8},/area/golden_arrow/briefing) +"LK" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed/chair{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"LL" = (/obj/effect/landmark/late_join/alpha,/obj/effect/landmark/start/marine/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"LQ" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"LS" = (/obj/structure/bed/chair/comfy{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"LT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/status_display{pixel_x = -32},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"LZ" = (/obj/structure/machinery/light,/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) +"Mc" = (/obj/structure/pipes/vents/pump{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) +"Md" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer,/area/golden_arrow/supply) +"Me" = (/turf/closed/wall/almayer,/area/golden_arrow/squad_two) +"Mf" = (/obj/effect/decal/cleanable/cobweb{dir = 8},/obj/item/notepad,/obj/item/maintenance_jack,/obj/structure/closet,/obj/item/tool/pen{pixel_x = -5; pixel_y = 4},/obj/item/device/camera,/obj/item/device/camera_film,/obj/item/storage/photo_album,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/synthcloset) +"Mi" = (/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"Mj" = (/obj/structure/surface/table/reinforced/prison,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"Ml" = (/obj/structure/surface/table/almayer,/obj/item/storage/firstaid/rad{pixel_x = -7; pixel_y = 2},/obj/item/storage/firstaid/toxin{pixel_x = 8; pixel_y = 2},/obj/structure/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"Mn" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/cryo_cells) +"Mu" = (/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{name = "\improper Engineering Airlock"; req_one_access = list()},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"Mz" = (/obj/structure/machinery/light{dir = 4},/obj/structure/surface/table/almayer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) +"MB" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"},/obj/structure/machinery/door/airlock/almayer/generic{name = "\improper Bathroom"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_commander_rooms) +"MC" = (/obj/structure/machinery/light,/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"MI" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"MJ" = (/obj/structure/machinery/light{dir = 4},/obj/structure/largecrate/random/case/small,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"MK" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/platoon_commander_rooms) +"ML" = (/obj/structure/largecrate,/obj/structure/largecrate{pixel_y = 16},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) +"MN" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"MW" = (/obj/structure/pipes/vents/pump{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"MZ" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/dorms) +"Na" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"Ne" = (/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/briefing) +"Nf" = (/turf/closed/wall/almayer/white,/area/golden_arrow/medical) +"Ng" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) +"Nk" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 6},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"No" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light/small,/turf/open/floor/almayer,/area/golden_arrow/synthcloset) +"Np" = (/turf/open/floor/almayer,/area/golden_arrow/briefing) +"Nr" = (/obj/structure/surface/table/almayer,/obj/effect/spawner/prop_gun/anti_tank,/turf/open/floor/almayer,/area/golden_arrow/squad_two) +"Nx" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/machinery/power/smes/buildable,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"Nz" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"NB" = (/obj/structure/sign/safety/cryo{pixel_x = 6; pixel_y = -29},/obj/effect/decal/cleanable/dirt,/obj/structure/prop/invuln/overhead_pipe{pixel_x = -7; pixel_y = -3},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"ND" = (/obj/structure/sign/safety/rewire{pixel_x = 14; pixel_y = 29},/obj/item/ammo_magazine/sentry{layer = 3.01},/obj/item/defenses/handheld/sentry,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"NE" = (/obj/structure/machinery/light{dir = 8},/obj/structure/sink{pixel_y = 16},/obj/structure/mirror{pixel_y = 21},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/platoon_commander_rooms) +"NH" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/marine_personal{pixel_x = -8; job = "Squad Sergeant"},/obj/structure/closet/secure_closet/marine_personal{pixel_x = 8; job = "Squad Sergeant"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"NI" = (/obj/structure/machinery/cm_vending/clothing/synth/snowflake{density = 0; pixel_x = -30},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/synthcloset) +"NO" = (/obj/structure/bed/chair/comfy,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) +"NT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"NU" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{autoname = 0; dir = 1; req_one_access = list()},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"NV" = (/obj/structure/sign/safety/cryo{pixel_x = 6; pixel_y = -29},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"NZ" = (/obj/structure/closet/secure_closet/engineering_electrical,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"Ob" = (/obj/structure/platform{dir = 4; layer = 2.7},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"Oc" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Od" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/briefing) +"Of" = (/turf/closed/wall/almayer,/area/golden_arrow/firingrange) +"Oj" = (/obj/structure/machinery/camera/autoname/golden_arrow,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"Ol" = (/obj/item/reagent_container/spray/cleaner{pixel_x = 5; pixel_y = 10},/obj/structure/janitorialcart,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Op" = (/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) +"Os" = (/obj/structure/bed/chair/comfy,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"Oy" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/firingrange) +"Oz" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"OA" = (/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"OC" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/structure/machinery/light,/obj/item/device/cassette_tape/pop3{pixel_y = 3},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_commander_rooms) +"OG" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/alarm/almayer{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"OH" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"OI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/structure/machinery/light{dir = 4},/obj/item/storage/toolbox/mechanical{pixel_x = 1; pixel_y = 7},/obj/item/tool/wrench,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"OJ" = (/obj/structure/machinery/landinglight/ds1/delaythree,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"ON" = (/obj/structure/machinery/landinglight/ds1/delaythree{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"OU" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/squad_two) +"OX" = (/turf/open/floor/almayer/uscm/directional{dir = 4},/area/golden_arrow/briefing) +"OY" = (/obj/structure/ladder{height = 2; id = "req1"},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) +"OZ" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 6},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/supply) +"Pc" = (/obj/structure/surface/table/almayer,/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 1},/obj/item/tool/kitchen/tray{pixel_x = 16; pixel_y = -10},/obj/item/storage/box/cups{pixel_x = 11; pixel_y = -9},/obj/item/trash/ceramic_plate{pixel_x = 18; pixel_y = 3},/obj/item/trash/ceramic_plate{pixel_x = 18; pixel_y = 5},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) +"Pe" = (/obj/structure/bed/chair/comfy,/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"Pf" = (/obj/structure/surface/table/almayer,/obj/structure/bedsheetbin{pixel_y = 6},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"Ph" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/cleanable/blood/oil,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Pl" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"Pm" = (/obj/structure/surface/rack,/obj/item/weapon/gun/shotgun/pump/special{pixel_y = 8},/obj/item/storage/box/nade_box{pixel_x = 4; pixel_y = -2},/obj/item/ammo_magazine/shotgun/buckshot/special,/obj/item/device/motiondetector,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"Pp" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{name = "\improper Squad One Armoury"; req_one_access_txt = "8;12;39"},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/squad_one) +"Pr" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"Ps" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/plasteel{amount = 40; pixel_x = 7; pixel_y = 6},/obj/structure/closet/crate/construction,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"Pt" = (/obj/effect/decal/cleanable/blood/oil,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Py" = (/obj/structure/machinery/landinglight/ds1{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"PA" = (/obj/structure/surface/rack,/obj/item/weapon/gun/shotgun/pump/special{pixel_y = 10},/obj/item/storage/box/nade_box{pixel_x = 2; pixel_y = -4},/obj/item/ammo_magazine/shotgun/buckshot/special,/obj/item/device/motiondetector,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"PF" = (/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"PG" = (/obj/structure/machinery/computer/arcade{density = 0; pixel_y = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"PI" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/firingrange) +"PL" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"PQ" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/platoon_sergeant) +"PS" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/firingrange) +"PW" = (/obj/structure/machinery/door/airlock/almayer/command/reinforced{name = "\improper Private Briefing Room"; req_access = list(); req_one_access_txt = "12;19;32"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) +"PY" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) +"PZ" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/obj/structure/surface/table/almayer,/obj/item/device/cassette_tape/nam{layer = 2.9; pixel_x = -6; pixel_y = 7},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_one) +"Qc" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/structure/machinery/computer/overwatch/almayer{dir = 8; layer = 3.2; pixel_x = -17; pixel_y = 16},/obj/structure/phone_base/rotary/no_dnd{name = "Overwatch Telephone"; phone_category = "Command"; phone_id = "Overwatch"},/obj/item/clothing/glasses/hud/health{pixel_x = -8; pixel_y = 12},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) +"Qe" = (/obj/structure/surface/table/almayer,/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/item/ammo_magazine/pistol{current_rounds = 0},/obj/item/weapon/gun/pistol/m4a3{current_mag = null},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_sergeant) +"Qi" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/safety/conference_room{pixel_y = 29},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"Qk" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 1},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"Ql" = (/obj/structure/prop/invuln/lattice_prop{icon_state = "lattice1"; pixel_x = 16; pixel_y = -15},/obj/structure/largecrate/random/case/double,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"Qq" = (/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{name = "\improper Engineering Airlock"; req_one_access = list()},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) +"Qt" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/item/tool/hand_labeler{pixel_x = 4; pixel_y = 11},/obj/item/reagent_container/food/drinks/coffeecup/uscm{pixel_x = -6; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"Qu" = (/obj/structure/machinery/firealarm{pixel_y = 28},/obj/structure/filingcabinet/chestdrawer{density = 0; pixel_x = -8; pixel_y = 16},/obj/structure/filingcabinet{density = 0; pixel_x = 8; pixel_y = 16},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) +"Qw" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/squad_two) +"Qx" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 28},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"Qz" = (/obj/structure/machinery/status_display{pixel_y = 30},/obj/structure/closet/firecloset/full,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"QD" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"QE" = (/obj/structure/machinery/chem_dispenser,/obj/item/reagent_container/glass/beaker/bluespace,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"QI" = (/obj/structure/surface/table/almayer,/obj/effect/decal/cleanable/dirt,/obj/item/storage/fancy/cigarettes/lucky_strikes{pixel_x = -7; pixel_y = 9},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) +"QJ" = (/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/squad_one) +"QL" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"QM" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"QN" = (/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"QO" = (/obj/structure/bed/chair/office/dark,/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) +"QP" = (/obj/effect/decal/cleanable/dirt,/obj/structure/largecrate,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"QQ" = (/obj/structure/toilet{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_commander_rooms) +"QS" = (/obj/structure/bed/chair/comfy{dir = 8},/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"QT" = (/obj/structure/machinery/cryopod,/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) +"QW" = (/obj/structure/cargo_container/wy/left,/obj/structure/sign/poster{desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; icon_state = "poster12"; name = "Beach Babe Pinup"; pixel_x = 6; pixel_y = 8; serial_number = 12},/obj/structure/sign/poster{desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; icon_state = "poster16"; name = "'Miss July' Pinup"; serial_number = 16},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"QX" = (/obj/structure/machinery/power/apc/almayer{dir = 1},/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"Ra" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"Rc" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/obj/structure/machinery/door/airlock/almayer/generic{dir = 1; name = "\improper Supply Office"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"Rd" = (/obj/structure/foamed_metal,/turf/open/floor/plating,/area/golden_arrow/supply) +"Rg" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Rh" = (/obj/structure/machinery/alarm/almayer{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"Ri" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/firingrange) +"Rl" = (/obj/structure/surface/table/almayer,/obj/item/tool/kitchen/tray{pixel_y = -10},/obj/item/reagent_container/food/condiment/hotsauce/tabasco{pixel_x = 7; pixel_y = -2},/obj/item/storage/box/cups{pixel_x = -5; pixel_y = -10},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"Rr" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Rt" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Rv" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/canteen) +"Rx" = (/obj/structure/surface/table/almayer,/obj/item/paper_bin{pixel_x = -11; pixel_y = -10},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"Ry" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/item/tool/wrench{pixel_y = 7},/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/obj/structure/sign/poster{desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; icon_state = "poster11"; name = "YOU ALWAYS KNOW A WORKING JOE."; pixel_x = -4; pixel_y = 32; serial_number = 11},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"RD" = (/obj/effect/landmark/late_join,/obj/effect/landmark/start/marine/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"RK" = (/obj/structure/machinery/light{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"RM" = (/obj/structure/closet/firecloset/full,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"RN" = (/obj/structure/surface/rack,/obj/item/clothing/mask/gas{pixel_x = -5; pixel_y = 10},/obj/item/stack/sheet/glass{amount = 50},/obj/item/clothing/mask/gas{pixel_x = 5; pixel_y = 10},/obj/item/stack/sheet/mineral/phoron/medium_stack{desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care."; pixel_y = -9},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"RO" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/squad_sergeant{req_access_txt = "32;40"; req_one_access = list()},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"RP" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/engineering) +"RT" = (/obj/structure/machinery/landinglight/ds1/delayone,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"RW" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer,/area/golden_arrow/supply) +"RY" = (/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"Sc" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) +"Sd" = (/obj/structure/sign/poster{desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; icon_state = "poster16"; layer = 3.3; name = "'Miss July' Pinup"; pixel_y = 29; serial_number = 16},/obj/structure/closet/secure_closet/marine_personal{pixel_x = -8},/obj/structure/closet/secure_closet/marine_personal{pixel_x = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"Si" = (/obj/structure/machinery/light,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"Sj" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/cleanable/blood/oil,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"Sl" = (/obj/structure/surface/table/almayer,/obj/item/paper_bin{pixel_x = 11; pixel_y = -10},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"Sn" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"So" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Sq" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"Ss" = (/obj/structure/window/reinforced{dir = 8; layer = 3.3; pixel_y = 4},/obj/structure/bed{can_buckle = 0},/obj/structure/bed{buckling_y = 13; layer = 3.5; pixel_y = 13},/obj/item/bedsheet/brown{layer = 3.4},/obj/item/bedsheet/brown{pixel_y = 13},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"Su" = (/obj/structure/surface/table/almayer,/obj/item/tool/kitchen/tray{pixel_y = -10},/obj/item/reagent_container/food/condiment/hotsauce/franks{pixel_x = 7; pixel_y = -3},/obj/item/storage/box/cups{pixel_x = -5; pixel_y = -10},/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"Sw" = (/obj/structure/machinery/shower{dir = 1},/obj/structure/window/reinforced{dir = 4; health = 80},/obj/structure/window/reinforced{dir = 8; health = 80},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"Sy" = (/obj/structure/machinery/disposal,/obj/structure/machinery/camera/autoname/golden_arrow{dir = 4; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"Sz" = (/obj/structure/closet/secure_closet/marine_personal{job = "Platoon Corpsman"},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"SB" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/supply) +"SC" = (/obj/structure/machinery/firealarm{pixel_y = 28},/obj/structure/surface/table/almayer,/obj/item/reagent_container/food/drinks/cans/souto/classic{pixel_x = 10; pixel_y = 3},/obj/item/prop/magazine/boots/n054{pixel_x = -6; pixel_y = 5},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) +"SE" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/target,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/firingrange) +"SI" = (/obj/structure/bed/chair{dir = 4},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) +"SL" = (/obj/structure/machinery/light{dir = 8},/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"SO" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"SR" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"ST" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/item/device/flashlight/flare{pixel_x = 8; pixel_y = -1},/obj/item/device/flashlight/flare{pixel_x = 5; pixel_y = 5},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"SV" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/item/prop/magazine/book/theartofwar,/obj/item/paper_bin/uscm{pixel_x = -8; pixel_y = 5},/obj/item/tool/pen{pixel_x = 12},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) +"SY" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"Tb" = (/obj/item/toy/deck,/obj/structure/surface/table/almayer,/turf/open/floor/almayer,/area/golden_arrow/dorms) +"Tc" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/closed/wall/almayer/white,/area/golden_arrow/medical) +"Td" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"Tg" = (/obj/item/device/radio/intercom{freerange = 1; name = "General Listening Channel"; pixel_y = 28},/obj/structure/window/reinforced{dir = 8; layer = 3.3; pixel_y = 4},/obj/structure/bed{can_buckle = 0},/obj/structure/bed{buckling_y = 13; layer = 3.5; pixel_y = 13},/obj/item/bedsheet/brown{layer = 3.4},/obj/item/bedsheet/brown{pixel_y = 13},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"Tj" = (/obj/structure/filingcabinet/chestdrawer{density = 0; pixel_x = -8; pixel_y = 16},/obj/structure/filingcabinet{density = 0; pixel_x = 8; pixel_y = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"Tk" = (/obj/structure/window/reinforced{dir = 4; pixel_x = -2; pixel_y = 4},/obj/structure/window/reinforced{dir = 8; layer = 3.3; pixel_y = 4},/obj/structure/bed{can_buckle = 0},/obj/structure/bed{buckling_y = 13; layer = 3.5; pixel_y = 13},/obj/item/bedsheet/brown{layer = 3.4},/obj/item/bedsheet/brown{pixel_y = 13},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"To" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/cryo_cells) +"Tr" = (/obj/structure/machinery/alarm/almayer{dir = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"Tu" = (/obj/structure/sign/safety/hazard{pixel_x = -19; pixel_y = 6},/obj/structure/sign/safety/ammunition{pixel_x = -19; pixel_y = -6},/obj/structure/sign/safety/bulkhead_door{pixel_x = -31; pixel_y = 6},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/firealarm{pixel_y = 28},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Tx" = (/obj/structure/machinery/landinglight/ds1/delaythree{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Ty" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/squad_one) +"Tz" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/bed/chair{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) +"TC" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"TD" = (/obj/item/tool/crowbar/red{pixel_x = -13; pixel_y = -13},/obj/item/stack/cable_coil{pixel_x = 7},/obj/item/tool/wirecutters{pixel_x = -8; pixel_y = 18},/obj/structure/bed{can_buckle = 0; desc = "A lightweight support lattice."; icon = 'icons/obj/structures/structures.dmi'; icon_state = "latticefull"; layer = 2.1; name = "lattice"},/turf/open/floor/plating,/area/golden_arrow/hangar) +"TI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/structure/machinery/recharger{pixel_y = 5},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"TK" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"TN" = (/turf/closed/wall/almayer/reinforced,/area/golden_arrow/engineering) +"TO" = (/obj/structure/pipes/standard/manifold/fourway/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"TP" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/prop/almayer/hangar_stencil,/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"TT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer,/area/golden_arrow/squad_two) +"TW" = (/obj/structure/machinery/recharge_station,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/synthcloset) +"TY" = (/obj/structure/barricade/handrail{dir = 1; pixel_y = 12},/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/canteen) +"Ub" = (/obj/structure/surface/table/almayer,/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) +"Uf" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"Uh" = (/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/briefing) +"Ui" = (/turf/closed/wall/almayer,/area/golden_arrow/canteen) +"Uj" = (/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_sergeant) +"Uk" = (/obj/structure/surface/table/almayer,/obj/item/spacecash/c10{pixel_x = 5; pixel_y = 7},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_one) +"Um" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/cm_vending/clothing/synth{density = 0; pixel_x = -30},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/synthcloset) +"Uv" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) +"UI" = (/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_one) +"UK" = (/obj/structure/surface/rack,/obj/item/weapon/gun/rifle/m4ra/pve{pixel_y = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"UN" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/line_nexter{dir = 1; id = "MTline"; pixel_y = 13},/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/canteen) +"UO" = (/obj/structure/bed/chair{dir = 4},/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/dorms) +"UT" = (/obj/structure/machinery/disposal{density = 0; layer = 3.2; pixel_y = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) +"UX" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/cleanable/blood/oil,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Va" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Vc" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"Ve" = (/obj/structure/sink{pixel_y = 24},/obj/structure/mirror{pixel_y = 32},/obj/item/storage/pill_bottle/tramadol/skillless{layer = 2.9; pill_type_to_fill = null; pixel_y = 14},/obj/structure/pipes/vents/pump,/obj/structure/surface/rack{density = 0; pixel_x = 26},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/item/tool/soap,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"Vj" = (/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"Vp" = (/turf/closed/wall/almayer,/area/golden_arrow/dorms) +"Vq" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"Vr" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"Vu" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/machinery/door/airlock/almayer/generic{dir = 1; name = "\improper Supply Bay"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) +"Vv" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Vz" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed/chair,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"VG" = (/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/firingrange) +"VJ" = (/obj/structure/ladder{height = 1; id = "req1"},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) +"VK" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/smartgunner{req_access_txt = "14;39"; req_one_access = list()},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"VL" = (/obj/structure/closet/secure_closet/platoon_sergeant,/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"VQ" = (/obj/structure/machinery/disposal,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"VT" = (/obj/structure/surface/table/almayer,/obj/item/tool/stamp/denied{pixel_x = 2; pixel_y = 10},/obj/item/device/eftpos{eftpos_name = "Cargo Bay EFTPOS scanner"; pixel_x = -10},/obj/item/tool/stamp/ro{pixel_x = -8; pixel_y = 10},/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/item/storage/fancy/cigar{pixel_x = 6},/obj/item/ashtray/glass{pixel_x = 11; pixel_y = 9},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"VX" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) +"Wf" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/structure/prop/invuln/lattice_prop{dir = 1; icon_state = "lattice-simple"; pixel_x = 16; pixel_y = -15},/turf/open/floor/almayer,/area/golden_arrow/dorms) +"Wg" = (/obj/structure/sign/safety/cryo{pixel_x = 8; pixel_y = -26},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/platoon_commander_rooms) +"Wj" = (/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/dorms) +"Wl" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Wm" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Wo" = (/obj/structure/filingcabinet{density = 0; pixel_x = 8; pixel_y = 16},/obj/structure/filingcabinet{density = 0; pixel_x = -8; pixel_y = 18},/obj/structure/filingcabinet{density = 0; pixel_x = 8; pixel_y = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"Wp" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/turf/open/floor/almayer,/area/golden_arrow/squad_one) +"Wr" = (/obj/structure/machinery/floodlight/landing,/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Ws" = (/obj/item/tool/warning_cone,/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Wu" = (/obj/structure/largecrate/random/case/double,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) +"Wv" = (/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Wy" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"WA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/power/apc/almayer{dir = 1},/obj/structure/machinery/light{dir = 4},/obj/structure/largecrate,/turf/open/floor/almayer,/area/golden_arrow/supply) +"WG" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/supply) +"WK" = (/obj/structure/surface/rack,/obj/item/weapon/gun/flamer{current_mag = null; pixel_y = 4},/obj/item/ammo_magazine/flamer_tank,/obj/item/ammo_magazine/flamer_tank,/obj/item/device/motiondetector,/obj/item/attachable/attached_gun/extinguisher/pyro{layer = 3.01},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"WP" = (/obj/structure/bed/chair/comfy/alpha{dir = 4},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/briefing) +"WY" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 1},/obj/structure/machinery/light{dir = 8},/obj/structure/sign/safety/bulkhead_door{pixel_x = -19},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Xa" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"Xb" = (/obj/structure/surface/table/almayer,/obj/effect/decal/cleanable/dirt,/obj/item/folder/yellow,/obj/item/book/manual/engineering_construction,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"Xc" = (/obj/structure/machinery/shower{pixel_y = 16},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"Xd" = (/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"Xj" = (/obj/structure/pipes/vents/pump,/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 1},/obj/structure/surface/table/almayer,/obj/structure/machinery/prop/almayer/computer/PC{dir = 4},/obj/structure/sign/safety/terminal{pixel_x = -20},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) +"Xs" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) +"Xu" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{dir = 2; name = "\improper Firing Range"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/firingrange) +"Xv" = (/obj/structure/sign/safety/rewire{pixel_x = 14; pixel_y = 29},/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) +"Xw" = (/obj/structure/bed/chair/comfy{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"Xy" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"Xz" = (/obj/structure/foamed_metal,/turf/open/floor/plating,/area/golden_arrow/platoon_sergeant) +"XI" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) +"XJ" = (/turf/closed/wall/almayer,/area/golden_arrow/briefing) +"XL" = (/obj/structure/prop/invuln/overhead_pipe{pixel_x = -7; pixel_y = 12},/obj/structure/prop/invuln/overhead_pipe{pixel_x = -7; pixel_y = -4},/obj/structure/sign/safety/water{pixel_x = 14; pixel_y = 24},/obj/item/storage/backpack/marine/satchel{desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; icon = 'icons/obj/janitor.dmi'; icon_state = "trashbag3"; name = "trash bag"; pixel_x = -7; pixel_y = 14},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"XN" = (/obj/structure/closet/secure_closet/engineering_personal,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) +"XP" = (/obj/structure/sign/safety/storage{pixel_x = 7; pixel_y = -28},/obj/structure/reagent_dispensers/ammoniatank,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +"XQ" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) +"XR" = (/obj/structure/surface/table/almayer,/obj/effect/decal/cleanable/dirt,/obj/item/trash/ceramic_plate{pixel_y = 19},/obj/item/trash/ceramic_plate{pixel_y = 21},/obj/item/trash/ceramic_plate{pixel_y = 23},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) +"XV" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) +"Ya" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/squad_two) +"Yc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/largecrate/supply/ammo/m41amk1,/obj/structure/largecrate/supply/ammo/m41amk1{pixel_x = 3; pixel_y = 10},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) +"Yd" = (/obj/structure/surface/table/almayer,/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/obj/item/folder/black_random,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_sergeant) +"Ye" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) +"Yh" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer,/area/golden_arrow/hangar) +"Yj" = (/turf/closed/wall/almayer,/area/golden_arrow/hangar) +"Yk" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/firingrange) +"Yl" = (/obj/structure/machinery/cm_vending/gear/synth{density = 0; pixel_x = -30},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/synthcloset) +"Ym" = (/obj/structure/largecrate/random/secure,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) +"Yp" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/squad_two) +"Ys" = (/obj/structure/surface/table/almayer,/obj/item/trash/plate,/obj/item/trash/ceramic_plate{pixel_x = 6; pixel_y = 19},/obj/item/trash/ceramic_plate{pixel_x = 6; pixel_y = 21},/obj/item/trash/ceramic_plate{pixel_x = 5; pixel_y = 23},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"Yv" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) +"Yw" = (/obj/structure/machinery/door/poddoor/almayer/locked{dir = 4; name = "\improper Hangar Lockdown Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) +"Yx" = (/obj/structure/surface/table/almayer,/obj/item/trash/ceramic_plate{pixel_x = -6; pixel_y = 19},/obj/item/trash/ceramic_plate{pixel_x = -6; pixel_y = 21},/obj/item/trash/ceramic_plate{pixel_x = -5; pixel_y = 23},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"YA" = (/obj/structure/machinery/light{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/briefing) +"YB" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/engineering) +"YG" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"YK" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/firealarm{pixel_y = 28},/obj/structure/machinery/disposal{density = 0; layer = 3.2; pixel_y = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) +"YO" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/dirt,/obj/item/clothing/glasses/meson,/obj/item/clothing/gloves/yellow,/obj/item/clothing/gloves/yellow,/obj/item/clothing/gloves/yellow,/obj/item/clothing/gloves/yellow,/obj/item/clothing/gloves/yellow,/obj/item/tool/shovel/snow,/obj/item/tool/shovel/snow,/obj/item/tool/shovel/snow,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"YP" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/briefing) +"YQ" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"YX" = (/obj/effect/landmark/start/marine/medic/alpha,/obj/effect/landmark/late_join/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"Zb" = (/obj/structure/sign/poster{desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; icon_state = "poster16"; layer = 3.3; name = "'Miss July' Pinup"; pixel_y = 29; serial_number = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"Zd" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer,/area/golden_arrow/supply) +"Zf" = (/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) +"Zk" = (/obj/structure/closet/emcloset,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/prep_hallway) +"Zl" = (/obj/structure/machinery/power/apc/almayer{dir = 1},/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) +"Zn" = (/obj/structure/closet/secure_closet/marine_personal{pixel_x = -8; job = "Smartgunner"},/obj/structure/closet/secure_closet/marine_personal{pixel_x = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) +"Zw" = (/obj/structure/largecrate/supply/generator,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) +"ZB" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/computer/med_data/laptop{pixel_y = 6},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) +"ZC" = (/turf/closed/wall/almayer,/area/golden_arrow/squad_one) +"ZI" = (/obj/effect/landmark/start/marine/smartgunner/alpha,/obj/effect/landmark/late_join/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) +"ZJ" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/synthcloset) +"ZL" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) +"ZM" = (/obj/structure/window/framed/almayer,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/canteen) +"ZQ" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/firingrange) +"ZR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/chem_master,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) +"ZU" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) +"ZV" = (/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) +"ZX" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/computer/cameras/engineering{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) (1,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(2,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(3,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(4,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(5,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(6,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(7,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(8,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(9,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(10,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(11,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(12,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(13,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(14,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(15,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(16,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(17,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(18,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(19,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(20,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(21,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(22,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(23,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(24,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(25,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(26,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(27,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(28,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(29,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(30,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(31,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(32,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(33,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(34,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(35,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(36,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(37,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(38,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(39,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(40,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(41,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(42,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(43,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(44,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Qw -Qw -Qw -Qw -Qw -Qw -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(45,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Qw -ot -CC -Pm -ot -Qw -Cr -Cr -bl -bl -bl -bl -bl -bl -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(46,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -Cr -Cr -Cr -Cr -Cr -sC -sC -sC -sC -sC -sC -sC -sC -sC -sC -sC -sC -sC -sC -sC -sC -sC -pt -pt -pt -Qw -ND -Fg -Fg -gd -Qw -Cr -Cr -bl -Oy -SE -zv -Hu -ek -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(47,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -Ln -wz -gz -wK -gz -Pt -tV -ca -ml -wz -Ll -wK -Ll -wz -ml -ca -Cr -Cr -Cr -Cr -Cr -sC -Xz -Xz -sC -sC -VL -sC -sC -wJ -VQ -qA -zV -DY -qA -dl -Bh -qA -zK -pW -iC -Me -Zl -DE -DR -gd -Qw -Cr -Cr -bl -VG -hD -zv -zP -VG -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(48,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -Xd -wz -Xd -wz -Xd -wz -Xd -ca -ml -wz -Ll -wz -Ll -wz -ml -ca -Cr -Cr -Cr -Cr -Cr -sC -sC -sC -sC -Ls -KQ -sC -QX -rH -dr -wV -dr -tr -kI -Hm -DY -qA -FS -XI -oh -Me -Me -Me -Hw -Me -Qw -Qw -Qw -bl -VG -Ri -zv -Yk -VG -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(49,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -wz -jl -JZ -JZ -JZ -fe -wz -ca -Pt -jl -JZ -SR -SR -wx -Pt -ca -Cr -Cr -Cr -Cr -Cr -sC -SC -Kv -sC -sC -Uj -sC -Tj -SI -Kv -yt -Kv -yY -Yd -Iw -BO -qA -og -XI -IU -Me -BA -xB -Yp -gd -ST -Df -Me -Me -jt -Jj -BD -Is -BC -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(50,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -Yw -Yw -Yw -ca -Ln -So -KO -KO -Rr -Kx -tV -ca -ml -So -KO -KO -KO -Kx -ml -ca -Cr -Cr -Cr -Cr -Cr -sC -fW -dr -vA -lS -lS -ft -gQ -Ap -uO -qA -Qu -pF -Fj -Jn -BO -qA -Oj -TC -wp -Me -lQ -Fg -Yp -Fg -Fg -gd -tS -Me -VG -hD -zv -zP -VG -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(51,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -sc -MN -wz -ca -Xd -UX -Rr -Ea -KO -Kx -Xd -ca -ml -UX -Rr -Ea -KO -kV -ml -ca -Cr -Cr -Cr -Cr -Cr -sC -gI -BK -sC -mc -KQ -bw -KQ -QS -gA -qA -Rh -Kv -Qe -Cg -qQ -Cu -ED -TC -eo -nb -vF -Fg -IE -ty -Fg -Fg -Ku -Me -PS -ce -zv -FK -PS -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(52,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -wz -Dc -wz -ca -ca -ca -Yw -Yw -Yw -ca -ca -ca -ca -ca -Yw -Yw -Yw -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -qA -Ng -fh -Tz -PQ -ID -zM -TO -KU -OU -Ya -mR -hC -mf -Fy -DR -tS -Me -Ib -EN -Co -IH -qE -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(53,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -wz -Dc -HQ -ca -ca -Tu -wz -ZL -ZL -ZL -ZL -hk -ZL -BW -ZL -ZL -ZL -wz -wz -wz -wz -ZL -wz -wz -ca -ca -ZL -CN -rk -ZJ -wN -Yl -Um -NI -gn -ZJ -hN -Kv -Kv -Kv -Dg -qA -Qi -TC -Gi -Me -Zb -Fg -Nr -pf -sV -Yp -Db -Me -tf -hM -zv -hM -tf -bl -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(54,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Dc -ZL -ca -ca -lB -IW -IW -by -GN -kU -GN -by -JP -JP -IW -by -CK -kU -AK -EX -JP -IW -Kx -ca -ca -ZL -mm -ax -ZJ -nF -eT -hq -Ep -No -ZJ -Hj -Kv -Kv -DY -gM -qA -rA -XI -wp -Me -PG -gd -dX -pB -Fg -TT -Me -Of -hQ -wX -ZQ -wX -KL -Kb -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(55,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Dc -ZL -ug -wz -So -KO -Nk -nN -eU -MN -qi -Xd -hF -Lo -KO -Xd -qi -he -eU -gD -Rr -KO -pD -ug -wz -ZL -AQ -xh -ZJ -TW -yJ -ba -jy -Mf -ZJ -ZB -KQ -UK -Kl -qA -qA -Fw -XI -jj -Me -Me -js -Qw -qD -cA -RO -Me -Of -uE -BD -Mz -nL -BD -eh -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(56,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Qk -pl -pl -Gs -FP -zy -JD -Ym -qi -Dc -Wu -Xd -DM -Yj -KH -Xd -qi -Dc -qi -hA -zy -zy -GQ -pl -pl -pl -yO -wz -ZJ -ZJ -ey -ZJ -ZJ -ZJ -ZJ -qA -qA -qA -qA -qA -jc -Jc -nH -GG -Zk -Me -Me -Me -Me -Me -Me -Me -Of -PI -Xu -Of -Of -bl -bl -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(57,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -KO -KO -KO -MI -Rr -Rr -Bf -ua -Dc -qi -Xd -Bw -Yj -KH -Xd -qi -Dc -qi -Xd -KO -KO -Yh -KO -uG -KO -Dc -wz -oK -wp -gS -GO -iN -iN -iN -vL -AY -wp -wp -cU -lo -Eu -XI -Wl -uu -WY -iN -wp -iN -wp -iN -wp -tb -xo -RY -iN -oh -Ay -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(58,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -KO -Ke -al -TP -Rr -QW -Xd -qi -Xs -eU -qw -zy -SL -BP -qw -eU -Td -qi -Xd -TD -KO -sy -Ph -IT -KO -Qk -lm -iG -SO -Fu -SY -iK -iK -SO -zM -iK -iK -SO -SY -SO -iK -wn -iK -SO -so -SO -iK -iK -XV -XV -iK -iK -Wy -Ad -Op -CA -Ay -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(59,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Dc -KO -pD -ZL -Rg -KO -rM -dP -qi -Wr -qi -Xd -KO -Rr -Rr -Xd -qi -lh -km -Xd -KO -KO -pD -wz -Ws -zD -Dc -ZL -oK -ms -ms -iN -pZ -pZ -iN -wp -wp -iN -iN -sN -Va -Wm -XI -gq -Va -iL -iN -wp -iN -iN -iN -wp -wp -pZ -ms -wp -iN -Ay -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(60,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -yZ -Dc -KO -Vv -HV -cp -HV -nT -JI -Py -HV -fl -aB -EZ -HV -Wv -aB -EZ -HV -Wv -HS -EZ -cl -jO -aB -nd -KO -Dc -oe -XJ -kg -qu -XJ -kg -qu -Vp -Vp -Vp -Vp -Vp -Vp -Zk -Jc -TC -GG -jc -ZC -ZC -ZC -ZC -ZC -ZC -Ty -Gl -pt -pt -Gl -Gl -Gl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(61,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Dc -ZL -cL -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -bQ -KO -Dc -ad -XJ -YA -Od -Sy -mk -vk -Vp -KZ -gL -sk -uH -wl -Vp -wd -XQ -KD -ZC -ZC -Yc -Ty -cz -VK -yA -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(62,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -nm -RT -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dB -aN -Dc -eY -XJ -As -As -Vr -Vr -As -Vp -EQ -JL -Tb -KK -JL -Vp -OG -XI -iN -ZC -TI -cs -af -cT -cT -xf -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(63,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -AP -mW -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dA -lg -Dc -eY -ag -As -Np -Np -rJ -As -Vp -EF -JL -aO -yw -Vz -Vp -xm -XI -wp -ZC -Fe -cT -cD -aJ -iE -xx -pJ -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(64,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -ZL -OJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -AG -lg -Dc -eY -ag -As -qT -LJ -fg -Vr -Vp -Tk -wl -vU -sR -MZ -sg -SY -TO -yT -Pp -LF -nG -PZ -Dx -UI -cT -lV -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(65,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Dc -KO -cL -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -gh -aN -Dc -eY -XJ -Vr -rl -ol -rV -Vr -Vp -Hd -wl -FE -wl -xX -Wj -ED -TC -eo -QJ -qa -cT -cR -Uk -cT -cT -zk -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(66,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -yZ -Dc -KO -RT -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -Lg -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dB -zD -Qk -MC -XJ -dv -rr -OX -sm -uA -Vp -rX -wl -FI -Bo -ld -Vp -ys -XI -Gi -ZC -zZ -cT -sf -cT -cT -cs -lV -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(67,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Dc -KO -mW -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -LH -aN -Dc -eY -XJ -Vr -Np -Np -rJ -As -Vp -Ld -pw -Wf -pw -nj -Vp -kX -vp -Ql -ZC -Ry -LK -sf -oQ -OI -rI -Ty -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(68,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -ZL -OJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -AG -lg -Dc -eY -ag -FT -FT -FT -sv -vB -Vp -EQ -Bg -FE -wl -EQ -Vp -Oj -XI -iN -ZC -ZC -ZC -mD -ZC -Ty -Ty -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(69,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -to -cL -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -gh -lg -Dc -eY -ag -WP -WP -WP -WP -Jk -Vp -yx -Bo -UO -wl -yj -Vp -FS -XQ -PF -ZC -cy -ha -Wp -Ei -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(70,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -AP -RT -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dB -lg -Dc -eY -XJ -WP -WP -WP -WP -KY -Vp -Tg -wl -FR -wl -Tk -Vp -UT -XI -wp -ZC -yL -cT -cT -Bu -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(71,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Dc -ZL -mW -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dA -zD -Dc -bf -XJ -aI -VX -VX -VX -vN -Vp -Sd -Cb -Gf -MJ -Tk -Vp -aQ -XI -wp -ZC -Kp -WK -PA -Kp -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(72,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -yZ -Dc -KO -Ke -Tx -ct -qI -rf -ON -Jq -ar -Lx -Tx -JT -qI -Lx -Tx -Jq -ar -Lx -ON -JT -ar -vS -Tx -mB -aN -Dc -eY -XJ -WP -WP -WP -WP -KY -Ui -Ui -Ui -Ui -Ui -Ui -Ui -ZM -Fa -ZM -Ui -HK -HK -HK -HK -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(73,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Qk -zy -YQ -AL -IZ -zy -pl -pl -pl -zy -Oz -aN -KO -KO -KO -Ea -Ea -KO -aN -KO -KO -KO -pD -ZL -So -aN -Dc -eY -ag -WP -WP -WP -WP -KY -Ui -Ui -YK -Jv -NO -QI -XR -Xw -NT -KM -Ui -HK -HK -Ax -Ax -Ax -HK -Pf -KP -HK -Ii -nR -QT -nR -rb -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(74,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -KO -Xy -fx -bq -JZ -JZ -SR -SR -pO -Rt -OH -SR -fx -SR -Cl -JZ -JZ -ff -SR -SR -je -Vv -SR -pG -lg -Dc -eY -ag -Eo -Ob -Ob -Ob -oL -Ui -nK -Cf -ik -bR -Rl -Kd -Cs -NT -UN -qR -HK -Xc -YG -yF -yF -LQ -fX -ti -To -BY -BY -cr -BY -BY -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(75,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -KO -hS -hS -vb -bo -bo -hS -hS -ay -Dc -Rg -Nf -Nf -Bj -cS -Bj -Bj -Nf -Bj -Bj -Nf -Bj -Bj -Nf -lg -Dc -eY -XJ -fy -fL -sS -sS -bS -Ui -oM -CF -dO -Os -Rx -Ys -LS -NT -TY -qR -HK -Xc -QD -ZV -Mi -ZV -rh -gg -To -bh -RD -cr -LL -LL -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(76,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -ZL -hS -CZ -aT -Qc -Bz -Mc -bo -eu -Dc -ie -Nf -JU -Cv -Cv -dd -Mj -Nf -fY -hW -Fi -jf -oJ -Nf -zJ -Dc -bf -XJ -Vr -Np -Uh -Np -As -Ui -Pc -FV -Zf -Zf -Zf -Zf -sO -QM -TY -qR -HK -Xc -QD -ZV -HK -Tr -Xa -NV -HK -kr -qm -eL -qm -qf -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(77,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Dc -ZL -hS -um -QO -SV -Bz -GV -bD -HR -pR -Rg -Nf -uF -OA -OA -dm -Mj -Nf -gG -OA -OA -jg -Cw -Nf -KO -Ey -lg -me -GY -Np -Np -rJ -As -Ui -yM -Dl -Zf -Zf -Zf -Zf -Zf -QM -TY -qR -HK -HK -za -Si -HK -Na -dG -di -HK -HK -HK -HK -HK -HK -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(78,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Dc -ZL -hS -BZ -Bz -iA -Bz -LZ -hS -HH -Dc -Rg -Nf -cH -cJ -OA -dt -ea -fO -Pr -PY -Pr -jG -xz -jV -lm -ly -ZL -XJ -yv -As -Ne -tT -IX -Ui -Gz -Dw -Gk -Os -Sl -Yx -lG -QM -TY -qR -HK -Xc -kq -Vc -HK -XL -fJ -NB -HK -QT -nR -Ii -nR -rb -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(79,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Dc -bf -hS -Bz -Bz -Bz -LE -tv -hS -pD -Dc -Rg -Nf -ov -OA -OA -OA -eJ -Nf -ho -iy -ho -jU -JJ -Nf -cB -lE -wz -XJ -XJ -XJ -PW -XJ -XJ -Ui -tX -Uv -GL -Pe -Su -rx -up -Bq -TY -qR -HK -Xc -kq -ZV -zt -ZV -xM -ti -To -BY -BY -cr -BY -BY -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(80,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ZL -Dc -ZL -hS -hS -wc -hS -hS -hS -hS -iX -Er -Rg -Nf -ZR -QE -cZ -dE -Mj -Nf -hG -jb -hG -jb -FN -Nf -KO -Dc -wz -XJ -XJ -As -mk -uw -As -Ui -Ui -DF -oH -NO -Ub -XR -dn -QM -ub -Ui -HK -Xc -QD -ZV -Mi -ZV -rh -Sq -To -ZI -ZI -cr -BY -BY -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(81,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ZL -Xs -QN -MK -MK -Xv -iR -Bz -qU -hS -RK -Er -vP -Nf -Nf -Nf -Nf -Nf -Nf -Nf -Nf -Tc -Nf -Nf -Nf -Nf -KO -Dc -bf -YP -ni -ry -ry -Np -rJ -As -Rv -Ui -Ui -Ui -Ui -Ui -ZM -Aw -ZM -Ui -HK -HK -hR -Vc -HK -AA -Xa -NV -HK -eL -qm -kr -qm -qf -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(82,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -Yw -Yw -Yw -MK -MK -BZ -iR -Bz -OC -hS -pD -Er -Rg -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -aw -Dc -ZL -YP -nM -Eb -Eb -nY -Np -As -sI -Ki -xK -Sw -HK -FW -eR -bb -dG -xQ -HK -EO -QD -Si -HK -nV -Xa -di -HK -HK -HK -HK -HK -HK -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(83,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -MK -vt -iR -Bz -Jg -hS -bu -Dc -Rg -gE -gE -Xj -Qt -gE -Hk -OZ -yU -yU -ZU -Fl -lA -Vu -kw -qc -Gq -YP -oa -qv -qv -Np -wS -YP -sI -Ki -Hv -Sw -HK -gH -QD -bb -dG -Sc -BM -Br -QD -ZV -HK -Vc -Xa -NV -HK -QT -nR -Ii -nR -rb -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(84,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -MK -sY -iR -Bz -dH -hS -pD -Dc -Rg -gE -iQ -Cn -VT -gE -ML -ny -SB -nx -de -sa -QP -bZ -Er -Rr -Rt -YP -qh -Vr -Vr -Vr -YP -YP -sI -Ve -HG -Pl -GK -Gg -sU -Ra -dG -Sc -Mn -Sc -QD -ZV -zt -ZV -xM -rZ -To -Lf -Lf -cr -BY -BY -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(85,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -MK -MK -hS -MB -hS -hS -oW -Dc -Rg -gE -sX -tA -gE -gE -ML -ny -uS -ng -TN -EB -EB -ye -Qq -TN -Qq -YB -YB -YB -YB -YP -YP -YP -sI -HK -ip -HK -HK -EI -mY -zn -Bi -Sc -EK -Sc -fo -IC -IC -IC -IC -Bi -To -BY -YX -cr -BY -BY -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(86,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -MK -NE -DB -Wg -hS -pD -Dc -Rg -gE -Wo -iF -Rc -Md -kO -vg -RW -LC -TN -Fz -AH -AH -Gv -LT -Gv -Hc -lK -kF -YB -Cr -Cr -Cr -sI -DX -HX -Qx -HK -ns -ns -HK -rd -rd -HK -lc -rd -rd -HK -rd -rd -rd -HK -eL -qm -kr -qm -qf -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(87,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -MK -oA -QQ -gp -hS -pD -Dc -vP -gE -qz -Zd -gE -WA -DC -DC -RW -mZ -TN -CX -IP -gf -Bd -CP -PL -hy -AH -ZX -YB -Cr -Cr -Cr -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(88,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -MK -MK -MK -MK -MK -wi -Td -Rg -gE -co -OY -gE -gE -Cy -sa -nD -gE -TN -TN -gW -It -TN -TN -wI -Gv -IP -jN -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(89,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -MK -Yw -Yw -Yw -kS -kS -kS -kS -kS -oC -kS -oC -kS -TN -Ol -zI -jD -bO -TN -vo -Gv -IP -Iy -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(90,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -Rd -Rd -Rd -kS -gT -kS -gT -kS -TN -xJ -Oc -zA -gx -TN -CX -La -us -gt -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(91,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -Rd -Rd -Rd -kS -gT -kS -gT -kS -TN -zY -zG -Ff -Gy -TN -kH -kB -RP -hL -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(92,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -Rd -Rd -Rd -kS -gT -kS -gT -kS -TN -TN -TN -TN -TN -TN -TN -Hh -NU -YB -YB -YB -YB -YB -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(93,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -Rd -Rd -Rd -kS -gT -kS -gT -kS -TN -fm -fm -fm -fm -fm -TN -yc -Sn -Vq -YB -RN -tB -RM -YB -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(94,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -kS -kS -kS -kS -gT -kS -gT -kS -TN -TN -TN -TN -TN -TN -TN -Nz -rt -XP -YB -bB -EJ -zL -oo -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(95,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -kS -VJ -co -kS -gT -kS -gT -kS -TN -kh -qW -GU -Ml -AO -EA -yc -aq -Uf -Bv -Vj -Xb -Bt -fp -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(96,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -eB -uo -WG -kS -gT -kS -gT -kS -TN -Ce -fv -Sj -TK -MW -QL -IR -cG -fF -gW -Vj -cw -Bt -Ps -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(97,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -CS -vK -aA -kS -gT -kS -gT -kS -TN -vc -il -wa -sE -Nx -sE -Ye -Sn -uX -YB -dj -fF -uQ -pS -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(98,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -kS -yg -aX -kS -gT -kS -gT -kS -TN -Qz -il -wa -oO -AC -HT -ah -wa -yo -YB -yy -mo -an -YB -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(99,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -kS -mb -kS -kS -gT -kS -gT -kS -TN -NZ -il -Sn -jS -vG -ds -hU -wa -Hx -YB -YB -YB -YB -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(100,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -Rd -Rd -Rd -kS -gT -kS -gT -kS -TN -NZ -il -Sn -sE -zl -sE -wH -Sn -XN -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(101,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -Rd -Rd -Rd -kS -gT -kS -gT -kS -TN -TN -TN -Mu -TN -TN -TN -Qq -TN -YB -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(102,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -Rd -kS -kS -kS -gT -kS -gT -kS -kS -YB -Vq -Yv -if -IS -YO -cj -Vq -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(103,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -Rd -kS -or -or -fq -kS -Jp -or -or -YB -bg -kk -Gu -Gu -Gu -vJ -oX -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(104,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -YB -ro -rq -jQ -GA -dg -aG -Zw -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(105,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -YB -YB -YB -YB -YB -YB -YB -YB -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(106,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(107,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(108,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(109,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(110,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(111,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(112,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(113,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(114,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(115,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(116,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(117,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(118,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(119,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -aS -aS -aS -aS -aS -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(120,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -aS -gB -aS -aS -aS -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(121,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -aS -aS -aS -aS -aS -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(122,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(123,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(124,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(125,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(126,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(127,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(128,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(129,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(130,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(131,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(132,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(133,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(134,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(135,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(136,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(137,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(138,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(139,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(140,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(141,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(142,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(143,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(144,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(145,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(146,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(147,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(148,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(149,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(150,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcacacaouououcacacaouououcacacaouououcacacaouououcacacaCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcacacacacacaeHeHeHcacacaeHeHeHcacacaeHeHeHcacacaeHeHeHcacacacacacaCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrYwscwzwzZLZLZLZLZLZLyZZLZLZLZLZLyZZLZLZLZLZLyZZLZLZLZLZLZLZLZLZLYwCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrYwMNDcDcDcDcQkDcDcDcDcDcDcDcDcDcDcDcDcDcDcDcDcQkDcDcDcDcDcDcDcXsYwCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrYwwzwzHQZLZLplKOKOKOKOZLnmAPZLKOKOKOZLtoAPZLKOzyKOKOZLZLZLbfZLQNYwCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcacacacacacacacacaugplKOKepDVvcLRTmWOJcLRTmWOJcLRTmWKeYQXyhShShShShShSMKMKCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcaLnXdwzLnXdcacacawzGsKOalZLHVdJdJdJdJdJdJdJdJdJdJdJTxALfxhSCZumBZBzhSMKMKMKMKMKCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcawzwzjlSoUXcaTulBSoFPMITPRgcpdJdJdJdJdJdJdJdJdJdJdJctIZbqvbaTQOBzBzwcXvBZvtsYMKMKMKMKCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcagzXdJZKORrYwwzIWKOzyRrRrKOHVdJdJdJdJdJdJdJdJdJdJdJqIzyJZboQcSViABzhSiRiRiRiRhSNEoAMKCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcawKwzJZKOEaYwZLIWNkJDRrQWrMnTdJdJdJdJdJdJdJdJdJdJdJrfplJZboBzBzBzLEhSBzBzBzBzMBDBQQMKCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcagzXdJZRrKOYwZLbynNYmBfXddPJIdJdJdJdJdJdJdJdJdJdJdJONplSRhSMcGVLZtvhSqUOCJgdHhSWggpMKCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcaPtwzfeKxKxcaZLGNeUqiuaqiqiPydJdJdJdJdJdJdJdJdJdJdJJqplSRhSbobDhShShShShShShShShShSMKMKCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcatVXdwztVXdcaZLkUMNDcDcXsWrHVdJdJdJdJdJdJdJdJdJdJdJarzypOayeuHRHHpDiXRKpDbupDoWpDpDwiYwCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcacacacacacacahkGNqiWuqieUqifldJdJdJdJdJdJdJdJdJdJdJLxOzRtDcDcpRDcDcErErErDcDcDcDcDcTdYwCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcamlmlPtmlmlcaZLbyXdXdXdqwXdaBdJdJdJdJdJdJdJdJdJdJdJTxaNOHRgieRgRgRgRgvPRgRgRgRgRgvPRgYwCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcawzwzjlSoUXcaBWJPhFDMBwzyKOEZdJdJdJdJdJdJdJdJdJdJdJJTKOSRNfNfNfNfNfNfNfgEgEgEgEgEgEgEkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcaLlLlJZKORrYwZLJPLoYjYjSLRrHVdJdJdJdJdJLgdJdJdJdJdJqIKOfxNfJUuFcHovZRNfgEgEiQsXWoqzcokSRdRdRdRdkSkSeBCSkSkSRdRdRdRdkSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcawKwzSRKOEaYwZLIWKOKHKHBPRrWvdJdJdJdJdJdJdJdJdJdJdJLxKOSRBjCvOAcJOAQENfgEXjCntAiFZdOYkSRdRdRdRdkSVJuovKygmbRdRdkSkSkSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcaLlLlSRKOKOYwZLbyXdXdXdqwXdaBdJdJdJdJdJdJdJdJdJdJdJTxEaClcSCvOAOAOAcZNfgEQtVTgERcgEgEkSRdRdRdRdkScoWGaAaXkSRdRdkSorkSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcawzwzwxKxkVcawzCKqiqiqieUqiEZdJdJdJdJdJdJdJdJdJdJdJJqEaJZBjdddmdtOAdENfgEgEgEgEMdWAgEkSkSkSkSkSkSkSkSkSkSkSkSkSkSorkSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcamlmlPtmlmlcawzkUheDcDcTdlhHVdJdJdJdJdJdJdJdJdJdJdJarKOJZBjSzMjeaeJMjNfgEHkMLMLkODCCyoCgTgTgTgTgTgTgTgTgTgTgTgTgTfqkSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcacacacacacacawzAKeUqiqiqikmWvdJdJdJdJdJdJdJdJdJdJdJLxaNffNfNfNffONfNfNfgEOZnynyvgDCsakSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcawzEXgDhAXdXdXdHSdJdJdJdJdJdJdJdJdJdJdJONKOSRBjfYgGPrhohGNfgEyUSBuSRWRWnDoCgTgTgTgTgTgTgTgTgTgTgTgTgTJpkSCrCrCrCrCrCrCrCrCrCrCrCrCrCraSaSaSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcaZLJPRrzyKOTDKOEZdJdJdJdJdJdJdJdJdJdJdJJTKOSRBjhWOAPYiyjbTcgEyUnxngLCmZgEkSkSkSkSkSkSkSkSkSkSkSkSkSkSorkSCrCrCrCrCrCrCrCrCrCrCrCrCrCraSgBaSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcawzIWKOzyKOKOKOcldJdJdJdJdJdJdJdJdJdJdJarKOjeNfFiOAPrhohGNfgEZUdeTNTNTNTNTNTNTNTNTNTNTNTNTNTNTNTNTNkSorkSCrCrCrCrCrCrCrCrCrCrCrCrCrCraSaSaSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcawzKxpDGQYhsypDjOdJdJdJdJdJdJdJdJdJdJdJvSpDVvBjjfjgjGjUjbNfgEFlsaEBFzCXTNOlxJzYTNfmTNkhCevcQzNZNZTNYBYBYBYBCrCrCrCrCrCrCrCrCrCrCrCrCraSaSaSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcacacaugplKOPhwzaBdJdJdJdJdJdJdJdJdJdJdJTxZLSRBjoJCwxzJJFNNfgElAQPEBAHIPgWzIOczGTNfmTNqWfvililililTNVqbgroYBCrCrCrCrCrCrCrCrCrCrCrCrCraSaSaSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCsCsCsCsCsCcacacawzpluGITWsndbQdBdAAGghdBLHAGghdBdAmBSopGNfNfNfjVNfNfNfgEVubZyeAHgfItjDzAFfTNfmTNGUSjwawaSnSnMuYvkkrqYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCXzsCSCfWgIcaZLZLZLplKOKOzDKOKOaNlglgaNzDaNlglglgzDaNaNlglgzJKOlmcBKOKOawkwErQqGvBdTNbOgxGyTNfmTNMlTKsEoOjSsETNifGujQYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCXzsCKvdrBKcaCNmmAQyODcQkDcDcDcDcDcDcDcQkDcDcDcDcDcDcDcDcDcDcEylylEDcDcDcqcRrTNLTCPTNTNTNTNTNfmTNAOMWNxACvGzlTNISGuGAYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCsCsCsCvAsCcarkaxxhwzwzlmZLoeadeYeYeYeYMCeYeYeYeYbfeYeYeYeYbflgZLwzwzbfZLGqRtQqGvPLwIvoCXkHTNTNTNEAQLsEHTdssETNYOGudgYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCsCLssClSmcZJZJZJZJZJoKiGoKXJXJXJagagXJXJXJagagXJXJXJagagXJXJmeXJXJXJYPYPYPYPYBHchyGvGvLakBHhycNzycIRYeahhUwHQqcjvJaGYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCVLKQUjlSKQZJwNnFTWZJwpSOmskgYAAsAsAsVrdvVrFTWPWPaIWPWPEofyVrGYyvXJXJninMoaqhYBlKAHIPIPusRPNUSnrtaqcGSnwawaSnTNVqoXZwYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCsCsCsCftbwZJYleTyJeygSFumsquOdAsNpqTrlrrNpFTWPWPVXWPWPObfLNpNpAsXJAsryEbqvVrYBkFZXjNIygthLYBVqXPUffFuXyoHxXNYBYBYBYBYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCsCQXTjgQKQZJUmhqbaZJGOSYiNXJSyVrNpLJolOXNpFTWPWPVXWPWPObsSUhNpNePWmkryEbqvVrYBYBYBYBYBYBYBYBYBYBBvgWYBYBYBYBYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCwJrHSIApQSZJNIEpjyZJiNiKpZkgmkVrrJfgrVsmrJsvWPWPVXWPWPObsSNprJtTXJuwNpnYNpVrYPCrCrCrCrCrCrYBRNbBVjVjdjyyYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCVQdrKvuOgAZJgnNoMfZJiNiKpZquvkAsAsVrVruAAsvBJkKYvNKYKYoLbSAsAsIXXJAsrJNpwSYPYPCrCrCrCrCrCrYBtBEJXbcwfFmoYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCqAwVytqAqAZJZJZJZJZJiNSOiNVpVpVpVpVpVpVpVpVpVpVpVpUiUiUiUiUiUiUiUiUiAsAsYPYPYPCrCrCrCrCrCrYBRMzLBtBtuQanYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCzVdrKvQuRhqAhNHjZBqAvLzMwpVpKZCTEFTkHdrXLdEQyxTgSdUiUinKoMPcyMGztXUiRvsIsIsIsIsIsICrCrCrCrYBYBoofpPspSYBYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCNHtryYpFKvNgKvKvKQqAAYiKwpVpgLJLJLwlwlwlpwBgBowlCbUiYKCfCFFVDlDwUvDFUiKiKiVeHKDXsICrCrCrCrCrYBYBYBYBYBYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCqAkIYdFjQefhKvKvUKqAwpiKiNVpskTbaOvUFEFIWfFEUOFRGfUiJvikdOZfZfGkGLoHUixKHvHGipHXsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCdlHmIwJnCgTzKvDYKlqAwpSOiNVpuHKKywsRwlBopwwlwlwlMJUiNObROsZfZfOsPeNOUiSwSwPlHKQxsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCBhDYBOBOqQPQDggMqAqAcUSYsNVpVpJLVzMZxXldnjEQyjSsZnUiQIRlRxZfZfSlSuUbUiHKHKGKHKHKsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCqAqAqAqACuIDqAqAqAjcloSOVaZkVpVpVpsgWjVpVpVpVpVpVpUiXRKdYsZfZfYxrxXRUiFWgHGgEInssICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrptzKFSogOjEDzMQirAFwJcEuiKWmJcwdOGxmSYEDyskXOjFSUTaQZMXwCsLSsOZflGupdnZMeRQDsUmYnssICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrptpWXIXITCTCTOTCXIXInHXIwnXITCXQXIXITOTCXIvpXIXQXIXIFaNTNTNTQMQMQMBqQMAwbbbbRaznHKsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrptiCohIUwpeoKUGiwpjjGGWliKgqGGKDiNwpyTeoGiQliNPFwpwpZMKMUNTYTYTYTYTYubZMdGdGdGBirdsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrQwQwQwMeMeMeMenbOUMeMeMeZkuuSOVajcZCZCZCPpQJZCZCZCZCZCZCUiUiqRqRqRqRqRqRUiUixQScScScrdsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrQwotNDZlMeBAlQvFYaZbPGMeMeWYsoiLZCZCTIFeLFqazZRyZCcyyLKpHKHKHKHKHKHKHKHKHKHKHKBMMnEKHKsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrQwCCFgDEMexBFgFgmRFggdjsMeiNSOiNZCYccscTnGcTcTLKZChacTWKHKHKXcXcXcHKXcXcXcHKEOBrScSclcsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrQwPmFgDRHwYpYpIEhCNrdXQwMewpiKwpZCTyafcDPZcRsfsfmDWpcTPAHKAxYGQDQDzakqkqQDhRQDQDQDfordsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrQwotgdgdMegdFgtymfpfpBqDMeiNiKiNZCczcTaJDxUkcToQZCEiBuKpHKAxyFZVZVSiVcZVZVVcSiZVZVICrdsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrQwQwQwQwQwSTFgFgFysVFgcAMewpXViNZCVKcTiEUIcTcTOITyTyTyTysIAxyFMiHKHKHKztMiHKHKHKztICHKsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrQwDfgdFgDRYpTTROMeiNXViNZCyAxfxxcTcTcsrITyCrCrCrsIHKLQZVTrNaXLZVZVAAnVVcZVICrdsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrQwMetSKutSDbMeMeMewpiKwpTyTyTypJlVzklVTyTyCrCrCrsIPffXrhXadGfJxMrhXaXaXaxMICrdsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrblblblblMeMeMeMeMeOfOfOftbiKwpGlCrCrTyTyTyTyTyCrCrCrCrsIKPtiggNVdiNBtiSqNVdiNVrZBirdsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrblOyVGVGjtVGPSIbtfhQuEPIxoWypZptCrCrCrCrCrCrCrCrCrCrCrsIHKToToHKHKHKToToHKHKHKToToHKsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrblSEhDRiJjhDceENhMwXBDXuRYAdmsptCrCrCrCrCrCrCrCrCrCrCrsIIiBYbhkrHKQTBYZIeLHKQTLfBYeLsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrblzvzvzvBDzvzvCozvZQMzOfiNOpwpGlCrCrCrCrCrCrCrCrCrCrCrsInRBYRDqmHKnRBYZIqmHKnRLfYXqmsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrblHuzPYkIszPFKIHhMwXnLOfohCAiNGlCrCrCrCrCrCrCrCrCrCrCrsIQTcrcreLHKIicrcrkrHKIicrcrkrsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrblekVGVGBCVGPSqEtfKLBDblAyAyAyGlCrCrCrCrCrCrCrCrCrCrCrsInRBYLLqmHKnRBYBYqmHKnRBYBYqmsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrblblblblblblblblblKbehblCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsIrbBYLLqfHKrbBYBYqfHKrbBYBYqfsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrblblblblCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsIsIsIsIsIsIsIsIsIsIsIsIsIsIsIsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr "} From 732ff399e0f470571d2c3ea59f9ae87b75477855 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Sat, 24 Feb 2024 21:59:24 +0300 Subject: [PATCH 02/24] erm --- maps/map_files/golden_arrow/golden_arrow.dmm | 33006 ++++++++++++++++- 1 file changed, 31869 insertions(+), 1137 deletions(-) diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm index de54f64388..fa093c5b8a 100644 --- a/maps/map_files/golden_arrow/golden_arrow.dmm +++ b/maps/map_files/golden_arrow/golden_arrow.dmm @@ -1,1140 +1,31872 @@ -"ad" = (/obj/structure/machinery/light,/obj/structure/target{name = "ready line Ronald"},/obj/item/clothing/suit/storage/marine/heavy/smooth,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"af" = (/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/squad_one) -"ag" = (/obj/structure/window/framed/almayer,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) -"ah" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/obj/item/tool/warning_cone{pixel_x = -7; pixel_y = 6},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"al" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"an" = (/obj/structure/closet/emcloset,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) -"aq" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"ar" = (/obj/structure/machinery/landinglight/ds1/delayone{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"aw" = (/obj/structure/sign/safety/storage{pixel_x = 9; pixel_y = 29},/turf/open/floor/almayer,/area/golden_arrow/hangar) -"ax" = (/obj/structure/cargo_container/arious/mid,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"ay" = (/obj/structure/sign/safety/restrictedarea{pixel_x = 12; pixel_y = 29},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"aA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/platform/stair_cut,/obj/structure/stairs/perspective{dir = 8; icon_state = "p_stair_full"},/turf/open/floor/almayer,/area/golden_arrow/supply) -"aB" = (/obj/structure/machinery/landinglight/ds1/delaythree{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"aG" = (/obj/structure/largecrate/supply/supplies/tables_racks,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) -"aI" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"aJ" = (/obj/structure/surface/table/almayer,/obj/structure/pipes/standard/simple/hidden/supply{dir = 6},/obj/item/prop/magazine/book/borntokill,/obj/item/prop/magazine/book/starshiptroopers{pixel_x = 3; pixel_y = 3},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_one) -"aN" = (/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/hangar) -"aO" = (/obj/item/prop/colony/game,/obj/structure/surface/table/almayer,/turf/open/floor/almayer,/area/golden_arrow/dorms) -"aQ" = (/obj/structure/sign/safety/galley{pixel_y = 29},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"aS" = (/obj/structure/machinery/power/fusion_engine{name = "\improper S-52 fusion reactor 17"},/turf/open/floor/almayer,/area/golden_arrow/engineering) -"aT" = (/obj/structure/machinery/computer/cameras/almayer/vehicle{dir = 4; network = list("Golden Arrow","Vehicle","Midway"); pixel_x = -17},/obj/structure/machinery/prop/almayer/CICmap{density = 0; dir = 4; icon_state = "shuttle"; layer = 2.97; name = "Tactical Map Display"; pixel_x = -17; pixel_y = 14},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) -"aX" = (/obj/structure/platform_decoration{dir = 4},/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/supply) -"ba" = (/obj/item/tool/warning_cone{pixel_x = 4; pixel_y = 16},/obj/item/stool,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/synthcloset) -"bb" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"bf" = (/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"bg" = (/obj/structure/machinery/light{dir = 1},/obj/structure/closet/crate/construction,/obj/item/stack/sandbags_empty/half,/obj/item/stack/sandbags_empty/half,/obj/item/stack/sandbags_empty/half,/obj/item/stack/sandbags_empty/half,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) -"bh" = (/obj/effect/landmark/start/marine/leader/alpha,/obj/effect/landmark/late_join/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) -"bl" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/firingrange) -"bo" = (/obj/structure/window/framed/almayer,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_commander_rooms) -"bq" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"bu" = (/obj/structure/machinery/camera/autoname/golden_arrow,/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"bw" = (/obj/structure/curtain/red,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"by" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) -"bB" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"bD" = (/obj/structure/machinery/door/airlock/almayer/command/reinforced{dir = 1; name = "\improper Platoon Commander's Office"; req_access = list(); req_one_access_txt = "19;12"},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_commander_rooms) -"bO" = (/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{req_one_access = list()},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) -"bQ" = (/obj/structure/machinery/landinglight/ds1{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"bR" = (/obj/structure/bed/chair/comfy,/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"bS" = (/obj/structure/platform/stair_cut/alt,/obj/structure/stairs/perspective{dir = 8; icon_state = "p_stair_full"},/obj/structure/platform,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"bZ" = (/obj/structure/window/framed/almayer,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) -"ca" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/hangar) -"ce" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/firingrange) -"cj" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) -"cl" = (/obj/structure/machinery/landinglight/ds1/delayone{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"co" = (/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) -"cp" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/machinery/landinglight/ds1/delayone{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"cr" = (/obj/effect/landmark/start/marine/alpha,/obj/effect/landmark/late_join/alpha,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) -"cs" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"ct" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/prop/almayer/hangar_stencil,/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"cw" = (/obj/structure/machinery/computer/atmos_alert{dir = 4},/obj/structure/surface/table/almayer,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"cy" = (/obj/structure/machinery/power/apc/almayer{dir = 1},/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"cz" = (/obj/structure/machinery/disposal{density = 0; layer = 3.2; pixel_y = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"cA" = (/obj/effect/decal/cleanable/dirt,/obj/item/prop/magazine/boots/n054{pixel_x = 29},/obj/structure/closet/secure_closet/smartgunner{req_access_txt = "14;40"; req_one_access = list()},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"cB" = (/obj/structure/machinery/camera/autoname/golden_arrow,/turf/open/floor/almayer,/area/golden_arrow/hangar) -"cD" = (/obj/structure/surface/table/almayer,/obj/item/spacecash/c10{pixel_x = 5; pixel_y = 7},/obj/item/storage/box/co2_knife{pixel_x = 3; pixel_y = 13},/turf/open/floor/almayer,/area/golden_arrow/squad_one) -"cG" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/spawner/random/powercell,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"cH" = (/obj/structure/surface/table/reinforced/prison,/obj/structure/machinery/computer/med_data/laptop,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) -"cJ" = (/obj/structure/bed/chair/office/light{dir = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) -"cL" = (/obj/structure/machinery/landinglight/ds1/delaytwo,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"cR" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/structure/surface/table/almayer,/obj/item/reagent_container/food/drinks/coffeecup/wy{desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; name = "dip cup"; pixel_x = -4; pixel_y = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_one) -"cS" = (/obj/structure/machinery/door/airlock/almayer/medical{name = "\improper Platoon Medic Office"; req_one_access = list(); req_one_access_txt = "8"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) -"cT" = (/turf/open/floor/almayer,/area/golden_arrow/squad_one) -"cU" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"cZ" = (/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) -"dd" = (/obj/structure/pipes/vents/pump{dir = 8},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) -"de" = (/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) -"dg" = (/obj/structure/machinery/portable_atmospherics/powered/scrubber,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) -"di" = (/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) -"dj" = (/obj/structure/closet/fireaxecabinet{pixel_y = 30},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"dl" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/safety/coffee{pixel_x = -19},/obj/structure/machinery/vending/cigarette,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"dm" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) -"dn" = (/obj/structure/bed/chair/comfy{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"dr" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) -"ds" = (/obj/structure/machinery/power/terminal{dir = 4},/obj/item/tool/wirecutters{pixel_y = -6},/obj/item/device/multitool{pixel_x = -10},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) -"dt" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) -"dv" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"dA" = (/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"dB" = (/obj/structure/machinery/landinglight/ds1/delayone{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"dE" = (/obj/structure/surface/table/reinforced/prison,/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) -"dG" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"dH" = (/obj/item/bedsheet/brown,/obj/structure/bed,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_commander_rooms) -"dJ" = (/turf/open/floor/plating,/area/golden_arrow/hangar) -"dO" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"dP" = (/obj/structure/closet/firecloset,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) -"dX" = (/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/squad_two) -"ea" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) -"eh" = (/obj/structure/surface/rack,/obj/item/ammo_magazine/rifle/m41aMK1{current_rounds = 0; pixel_x = -5},/obj/item/ammo_magazine/rifle/m41aMK1{current_rounds = 0},/obj/item/ammo_magazine/rifle/m41aMK1{current_rounds = 0; pixel_x = 5},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) -"ek" = (/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/firingrange) -"eo" = (/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) -"eu" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"ey" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/structure/machinery/door/airlock/almayer/maint/reinforced{access_modified = 1; dir = 8; name = "\improper Synthetic Preperations"; req_one_access = list(36)},/obj/structure/machinery/door/poddoor/almayer/closed{dir = 4; indestructible = 1},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/synthcloset) -"eB" = (/obj/structure/prop/almayer/computers/sensor_computer1,/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) -"eH" = (/obj/structure/window/framed/almayer/hull,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) -"eJ" = (/obj/structure/machinery/power/apc/almayer,/obj/structure/surface/table/reinforced/prison,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) -"eL" = (/obj/structure/machinery/cryopod/right,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) -"eR" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"eT" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/almayer,/area/golden_arrow/synthcloset) -"eU" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) -"eY" = (/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/hangar) -"fe" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"ff" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"fg" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer/uscm/directional{dir = 10},/area/golden_arrow/briefing) -"fh" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/obj/structure/bed/chair{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_sergeant) -"fl" = (/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"fm" = (/obj/structure/foamed_metal,/turf/open/floor/plating,/area/golden_arrow/engineering) -"fo" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"fp" = (/obj/structure/closet/secure_closet/engineering_welding{req_one_access = list()},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) -"fq" = (/obj/structure/machinery/conveyor{dir = 10},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/supply) -"ft" = (/obj/structure/curtain/red,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"fv" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"fx" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"fy" = (/obj/structure/platform,/obj/structure/stairs/perspective{dir = 8; icon_state = "p_stair_full"},/obj/structure/platform/stair_cut/alt,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"fF" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"fJ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/prop/invuln/overhead_pipe{pixel_x = -7; pixel_y = -4},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"fL" = (/obj/structure/surface/table/almayer,/obj/item/device/megaphone,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"fO" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/structure/machinery/door/airlock/almayer/medical{dir = 1; name = "\improper Medical Subsection"; req_one_access = list(); req_one_access_txt = "8"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) -"fW" = (/obj/structure/pipes/vents/scrubber,/obj/structure/machinery/alarm/almayer{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) -"fX" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"fY" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/cm_vending/sorted/medical/blood{req_access = list()},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) -"gd" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"gf" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 6},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) -"gg" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"gh" = (/obj/structure/machinery/landinglight/ds1{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"gn" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/surgical{pixel_x = -30},/obj/structure/surface/table/almayer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/synthcloset) -"gp" = (/obj/structure/surface/rack,/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/platoon_commander_rooms) -"gq" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) -"gt" = (/obj/structure/machinery/power/monitor{name = "Core Power Monitoring"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"gx" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{req_one_access = list()},/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"gz" = (/obj/structure/ship_ammo/rocket/widowmaker,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) -"gA" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/computer/emails{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"gB" = (/obj/structure/machinery/telecomms/relay/preset/tower,/turf/open/floor/almayer,/area/golden_arrow/engineering) -"gD" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) -"gE" = (/turf/closed/wall/almayer,/area/golden_arrow/supply) -"gG" = (/obj/structure/machinery/light{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/cm_vending/sorted/medical/no_access,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) -"gH" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/power/apc/almayer{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) -"gI" = (/obj/structure/surface/rack,/obj/item/device/flashlight/lamp/on{pixel_y = 13},/obj/item/weapon/straight_razor{pixel_x = 4; pixel_y = -6},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"gL" = (/obj/structure/machinery/light{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"gM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"gQ" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"gS" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) -"gT" = (/obj/structure/machinery/conveyor{dir = 8},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/supply) -"gW" = (/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) -"ha" = (/obj/structure/machinery/light{dir = 8},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"he" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 6},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) -"hk" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 4; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"ho" = (/obj/structure/machinery/autodoc_console{dir = 1; pixel_y = 6},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) -"hq" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer,/area/golden_arrow/synthcloset) -"hy" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/almayer,/area/golden_arrow/engineering) -"hA" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) -"hC" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/item/smartgun_battery{pixel_x = 4; pixel_y = -5},/obj/effect/spawner/random/powercell{pixel_x = -8; pixel_y = 7},/obj/structure/pipes/standard/manifold/hidden/supply{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_two) -"hD" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/firingrange) -"hF" = (/obj/effect/decal/cleanable/blood/oil,/turf/open/floor/almayer,/area/golden_arrow/hangar) -"hG" = (/obj/structure/machinery/medical_pod/autodoc{dir = 1; pixel_y = 6},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) -"hL" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/structure/sign/safety/electronics{pixel_x = 31; pixel_y = 6},/obj/structure/sign/safety/high_voltage{pixel_x = 31; pixel_y = -6},/obj/structure/machinery/portable_atmospherics/canister/air,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"hM" = (/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/firingrange) -"hN" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/computer/secure_data{pixel_y = 6},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"hQ" = (/obj/structure/machinery/power/apc/almayer{dir = 1},/obj/structure/pipes/standard/manifold/hidden/supply{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) -"hR" = (/obj/structure/machinery/firealarm{pixel_y = 28},/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"hS" = (/turf/closed/wall/almayer,/area/golden_arrow/platoon_commander_rooms) -"hU" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/item/device/flashlight{pixel_x = -4; pixel_y = 7},/obj/item/tool/warning_cone,/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"hW" = (/obj/structure/surface/table/reinforced/prison,/obj/structure/machinery/recharger,/obj/item/reagent_container/spray/cleaner,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) -"ie" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"if" = (/obj/structure/reagent_dispensers/fueltank/custom,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) -"ik" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"il" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"ip" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "SE-out"},/obj/structure/machinery/door/airlock/almayer/generic{id = "Delta_1"; name = "\improper Bathroom"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/cryo_cells) -"iy" = (/obj/structure/pipes/vents/pump{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) -"iA" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/item/device/flashlight/lamp,/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) -"iC" = (/obj/structure/sign/safety/security{pixel_x = 15; pixel_y = -25},/obj/structure/sign/safety/west{pixel_x = 3; pixel_y = -25},/obj/structure/largecrate/random/barrel/blue,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"iE" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_one) -"iF" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/turf/open/floor/almayer,/area/golden_arrow/supply) -"iG" = (/obj/structure/machinery/door/poddoor/almayer/open,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/prep_hallway) -"iK" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) -"iL" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/obj/structure/machinery/light{dir = 4},/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) -"iN" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"iQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 8},/obj/structure/machinery/photocopier,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) -"iR" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_commander_rooms) -"iX" = (/obj/structure/sign/safety/rewire{pixel_x = 14; pixel_y = 29},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"jb" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) -"jc" = (/obj/structure/closet/firecloset,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/prep_hallway) -"je" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"jf" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) -"jg" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) -"jj" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"jl" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"js" = (/obj/structure/machinery/firealarm{pixel_y = 28},/obj/structure/largecrate/supply/ammo/m41amk1,/obj/structure/largecrate/supply/ammo/m41amk1{pixel_x = 3; pixel_y = 10},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"jt" = (/obj/structure/target,/obj/structure/machinery/light{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/firingrange) -"jy" = (/obj/effect/decal/cleanable/blood/oil,/obj/structure/machinery/computer/station_alert{dir = 8; pixel_x = 15; pixel_y = 2},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/synthcloset) -"jD" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/turf/open/floor/almayer,/area/golden_arrow/engineering) -"jG" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) -"jN" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/cell_charger,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"jO" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"jQ" = (/obj/structure/machinery/pipedispenser,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) -"jS" = (/obj/structure/machinery/power/terminal{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) -"jU" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) -"jV" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/obj/structure/machinery/door/airlock/almayer/medical{dir = 1; name = "\improper Medical Subsection"; req_one_access = list()},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) -"kg" = (/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) -"kh" = (/obj/structure/surface/table/almayer,/obj/item/storage/belt/utility/full,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"kk" = (/obj/structure/pipes/vents/pump{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"km" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) -"kq" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"kr" = (/obj/structure/machinery/cryopod/right,/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) -"kw" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) -"kB" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer,/area/golden_arrow/engineering) -"kF" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/reagentgrinder/industrial{pixel_y = 9},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"kH" = (/obj/structure/machinery/computer/cryopod{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) -"kI" = (/obj/structure/machinery/light{dir = 8},/obj/structure/bed/chair{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) -"kO" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) -"kS" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/supply) -"kU" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/structure/machinery/floodlight/landing,/turf/open/floor/almayer,/area/golden_arrow/hangar) -"kV" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/cleanable/blood/oil,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"kX" = (/obj/structure/machinery/power/apc/almayer{dir = 1},/obj/structure/prop/invuln/lattice_prop{icon_state = "lattice2"; pixel_x = 16; pixel_y = 16},/obj/structure/prop/invuln/lattice_prop{dir = 1; icon_state = "lattice-simple"; pixel_x = 16; pixel_y = -15},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"lc" = (/obj/structure/closet/cryo,/obj/structure/closet/cryo,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) -"ld" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"lg" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/hangar) -"lh" = (/obj/structure/machinery/floodlight/landing,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/hangar) -"lm" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) -"lo" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) -"ly" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/manifold/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) -"lA" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/supply) -"lB" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/machinery/alarm/almayer{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"lE" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) -"lG" = (/obj/structure/bed/chair/comfy{dir = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"lK" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/computer/atmos_alert{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"lQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/firealarm{pixel_y = 28},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"lS" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_sergeant) -"lV" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{req_access = list(); req_one_access_txt = "8;12;39"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"mb" = (/obj/structure/machinery/door/poddoor/almayer/locked{dir = 4; name = "\improper Hangar Lockdown Blast Door"},/turf/closed/wall/almayer/outer,/area/golden_arrow/supply) -"mc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/marine_personal{job = "Platoon Sergeant"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"me" = (/obj/structure/machinery/door/airlock/almayer/command/reinforced{dir = 1; name = "\improper Briefing Room"; req_access = list()},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) -"mf" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/structure/pipes/standard/simple/hidden/supply,/obj/item/storage/fancy/cigarettes/lucky_strikes{pixel_x = -6; pixel_y = 12},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_two) -"mk" = (/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/briefing) -"ml" = (/obj/structure/ship_ammo/minirocket,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) -"mm" = (/obj/structure/cargo_container/lockmart/mid{layer = 3.1; pixel_y = 5},/turf/open/floor/almayer,/area/golden_arrow/hangar) -"mo" = (/obj/structure/surface/rack,/obj/item/storage/briefcase/inflatable,/obj/item/storage/briefcase/inflatable,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) -"ms" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) -"mB" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/prop/almayer/hangar_stencil,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"mD" = (/obj/structure/machinery/door/airlock/almayer/generic{req_one_access_txt = "8;12;39"},/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/squad_one) -"mR" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/squad_two) -"mW" = (/obj/structure/machinery/landinglight/ds1,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"mY" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"mZ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/firecloset/full,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) -"nb" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{name = "\improper Squad Two Armoury"; req_one_access_txt = "8;12;40"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/squad_two) -"nd" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"ng" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/machinery/light,/obj/structure/largecrate,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) -"ni" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed/chair/comfy/alpha{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"nj" = (/obj/effect/decal/cleanable/dirt,/obj/structure/prop/invuln/lattice_prop{icon_state = "lattice1"; pixel_x = 16; pixel_y = -15},/obj/structure/closet/secure_closet/marine_personal{pixel_x = 8},/obj/structure/closet/secure_closet/marine_personal{pixel_x = -8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"nm" = (/obj/structure/prop/invuln/lifeboat_hatch_placeholder{layer = 2.1},/turf/open/floor/almayer,/area/golden_arrow/hangar) -"ns" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/cryo,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) -"nx" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) -"ny" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) -"nD" = (/obj/structure/machinery/conveyor{dir = 8},/obj/structure/barricade/handrail{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) -"nF" = (/obj/structure/pipes/vents/pump{dir = 8},/obj/structure/machinery/power/apc/almayer{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/synthcloset) -"nG" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/squad_one) -"nH" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) -"nK" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/power/apc/almayer{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) -"nL" = (/obj/structure/surface/table/almayer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) -"nM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/reinforced/almayer_B,/obj/structure/sign/banners/united_americas_flag{pixel_x = -16; pixel_y = 30},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"nN" = (/obj/structure/largecrate/random/secure,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) -"nR" = (/obj/structure/machinery/cryopod{layer = 3.1; pixel_y = 13},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) -"nT" = (/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 4},/obj/structure/cargo_container/wy/right,/obj/structure/sign/poster{desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; icon_state = "poster11"; name = "YOU ALWAYS KNOW A WORKING JOE."; pixel_x = -22; pixel_y = 3; serial_number = 11},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"nV" = (/obj/structure/machinery/light{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"nY" = (/obj/structure/bed/chair/comfy/alpha{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/briefing) -"oa" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed/chair/comfy/alpha{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"oe" = (/obj/structure/sign/safety/bulkhead_door{pixel_y = -29},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"og" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"oh" = (/obj/structure/largecrate/random/barrel/blue,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"ol" = (/obj/effect/landmark/observer_start,/turf/open/floor/almayer/uscm/directional{dir = 8; icon_state = "logo_c"},/area/golden_arrow/briefing) -"oo" = (/obj/structure/closet/secure_closet/engineering_electrical{req_one_access = list()},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) -"or" = (/obj/structure/machinery/conveyor,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/supply) -"ot" = (/obj/structure/surface/rack,/obj/item/weapon/gun/rifle/m41aMK1{pixel_y = 7},/obj/item/weapon/gun/rifle/m41aMK1,/obj/item/weapon/gun/rifle/m41aMK1{pixel_y = -7},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"ou" = (/turf/open/floor/almayer_hull{dir = 1; icon_state = "outerhull_dir"},/area/golden_arrow/hangar) -"ov" = (/obj/structure/machinery/light{dir = 1},/obj/structure/surface/table/reinforced/prison,/obj/item/storage/box/pillbottles,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) -"oA" = (/obj/structure/machinery/shower{dir = 8},/obj/structure/machinery/door/window/westleft,/obj/structure/window/reinforced/tinted/frosted,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_commander_rooms) -"oC" = (/obj/structure/plasticflaps,/obj/structure/machinery/conveyor{dir = 8},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) -"oH" = (/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) -"oJ" = (/obj/structure/machinery/medical_pod/bodyscanner{pixel_y = 6},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) -"oK" = (/obj/structure/machinery/door/poddoor/almayer/open,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/prep_hallway) -"oL" = (/obj/structure/platform_decoration{dir = 8},/obj/structure/platform_decoration,/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"oM" = (/obj/structure/bed/chair/comfy{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/safety/rewire{pixel_x = 14; pixel_y = 29},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) -"oO" = (/obj/structure/machinery/power/terminal{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) -"oQ" = (/obj/item/prop/helmetgarb/gunoil{pixel_x = 7; pixel_y = 6},/obj/item/prop/helmetgarb/gunoil,/obj/structure/surface/table/almayer,/obj/structure/sign/poster{desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; icon_state = "poster10"; name = "Koorlander Gold Poster"; pixel_x = 29; pixel_y = 6; serial_number = 10},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"oW" = (/obj/structure/machinery/power/apc/almayer{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"oX" = (/obj/structure/largecrate/supply/generator,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) -"pf" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/item/ammo_box/magazine/heap/empty,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_two) -"pl" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) -"pt" = (/obj/structure/machinery/door/poddoor/almayer/locked{dir = 4; name = "\improper Hangar Lockdown Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/prep_hallway) -"pw" = (/obj/effect/decal/cleanable/dirt,/obj/structure/prop/invuln/lattice_prop{dir = 1; icon_state = "lattice-simple"; pixel_x = 16; pixel_y = -15},/turf/open/floor/almayer,/area/golden_arrow/dorms) -"pB" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"pD" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"pF" = (/obj/structure/bed/chair,/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) -"pG" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"pJ" = (/obj/effect/decal/cleanable/dirt,/turf/closed/wall/almayer/outer,/area/golden_arrow/squad_one) -"pO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"pR" = (/obj/structure/pipes/standard/manifold/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/hangar) -"pS" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/suit_storage_unit/carbon_unit,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) -"pW" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/obj/structure/largecrate/random/barrel/blue,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) -"pZ" = (/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) -"qa" = (/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/squad_one) -"qc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/manifold/hidden/supply{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) -"qf" = (/obj/structure/machinery/cryopod/right{pixel_y = 6},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) -"qh" = (/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"qi" = (/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) -"qm" = (/obj/structure/machinery/cryopod/right{layer = 3.1; pixel_y = 13},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) -"qu" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{dir = 1; name = "\improper Briefing Room"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) -"qv" = (/obj/structure/bed/chair/comfy/alpha{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/briefing) -"qw" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) -"qz" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/filingcabinet{density = 0; pixel_x = 8; pixel_y = 16},/obj/structure/filingcabinet{density = 0; pixel_x = -8; pixel_y = 18},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) -"qA" = (/turf/closed/wall/almayer,/area/golden_arrow/platoon_sergeant) -"qD" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/poster{desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; icon_state = "poster11"; name = "YOU ALWAYS KNOW A WORKING JOE."; pixel_x = 27; serial_number = 11},/obj/structure/machinery/disposal{density = 0; layer = 3.2; pixel_y = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"qE" = (/obj/structure/barricade/metal{dir = 8},/obj/structure/machinery/light,/obj/structure/sign/safety/two{pixel_y = -22},/turf/open/floor/almayer,/area/golden_arrow/firingrange) -"qI" = (/obj/structure/machinery/landinglight/ds1/delayone{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"qQ" = (/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/platoon_sergeant) -"qR" = (/obj/structure/machinery/cm_vending/sorted/marine_food,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"qT" = (/turf/open/floor/almayer/uscm/directional{dir = 9},/area/golden_arrow/briefing) -"qU" = (/obj/structure/flora/pottedplant{icon_state = "pottedplant_21"},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) -"qW" = (/obj/structure/surface/table/almayer,/obj/item/storage/toolbox/mechanical/green{pixel_y = 10},/obj/item/storage/toolbox/mechanical/green{pixel_x = -7; pixel_y = -1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"rb" = (/obj/structure/machinery/cryopod{pixel_y = 6},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) -"rd" = (/obj/structure/closet/cryo,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) -"rf" = (/obj/structure/machinery/landinglight/ds1{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"rh" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"rk" = (/obj/structure/cargo_container/arious/left,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"rl" = (/turf/open/floor/almayer/uscm/directional{dir = 1},/area/golden_arrow/briefing) -"ro" = (/obj/structure/largecrate/supply/supplies/water,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) -"rq" = (/obj/structure/largecrate/supply/floodlights,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) -"rr" = (/turf/open/floor/almayer/uscm/directional{dir = 5},/area/golden_arrow/briefing) -"rt" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/item/tool/wet_sign,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"rx" = (/obj/structure/surface/table/almayer,/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"ry" = (/obj/structure/bed/chair/comfy/alpha{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/briefing) -"rA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/janitorialcart,/obj/item/tool/mop{pixel_x = -1; pixel_y = -10},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"rH" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"rI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/item/toy/beach_ball/holoball,/obj/structure/sign/poster{desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; icon_state = "poster12"; name = "Beach Babe Pinup"; pixel_x = 28; pixel_y = 5; serial_number = 12},/obj/structure/sign/poster{desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; icon_state = "poster16"; name = "'Miss July' Pinup"; pixel_x = 32; serial_number = 16},/obj/item/storage/fancy/cigarettes/lucky_strikes{pixel_x = 6; pixel_y = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"rJ" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/briefing) -"rM" = (/obj/structure/cargo_container/wy/mid,/turf/open/floor/almayer,/area/golden_arrow/hangar) -"rV" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer/uscm/directional,/area/golden_arrow/briefing) -"rX" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/marine_personal{pixel_x = 8; job = "Smartgunner"},/obj/structure/closet/secure_closet/marine_personal{pixel_x = -8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"rZ" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"sa" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) -"sc" = (/obj/structure/pipes/vents/scrubber,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"sf" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/squad_one) -"sg" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{name = "\improper Dorms"},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/dorms) -"sk" = (/obj/structure/machinery/power/apc/almayer{dir = 8},/obj/structure/bed/chair{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"sm" = (/turf/open/floor/almayer/uscm/directional{dir = 6},/area/golden_arrow/briefing) -"so" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) -"sv" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"sy" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/item/tool/warning_cone,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"sC" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/platoon_sergeant) -"sE" = (/obj/structure/machinery/power/smes/buildable,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) -"sI" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/cryo_cells) -"sN" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"sO" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"sR" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/bed/chair{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/dorms) -"sS" = (/obj/structure/surface/table/almayer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"sU" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"sV" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_two) -"sX" = (/obj/effect/decal/cleanable/dirt,/obj/item/paper_bin/uscm{pixel_x = -8; pixel_y = 5},/obj/item/clipboard{pixel_x = 8; pixel_y = 3},/obj/item/tool/pen{pixel_x = 12},/obj/structure/surface/table/almayer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) -"sY" = (/obj/item/clothing/suit/storage/jacket/marine/service,/obj/item/clothing/suit/storage/jacket/marine/service/tanker,/obj/structure/closet/secure_closet/marine_personal{icon_broken = "cabinetdetective_broken"; icon_closed = "cabinetdetective"; icon_locked = "cabinetdetective_locked"; icon_off = "cabinetdetective_broken"; icon_opened = "cabinetdetective_open"; icon_state = "cabinetdetective_locked"; job = "Platoon Commander"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_commander_rooms) -"tb" = (/obj/structure/sign/safety/firingrange{pixel_x = -24; pixel_y = 7},/obj/structure/sign/safety/hazard{pixel_x = -24; pixel_y = -7},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"tf" = (/obj/structure/pipes/vents/pump{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/firingrange) -"ti" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"to" = (/obj/structure/prop/invuln/lifeboat_hatch_placeholder{layer = 2.1},/obj/structure/prop/invuln/lifeboat_hatch_placeholder{layer = 2.1},/turf/open/floor/almayer,/area/golden_arrow/hangar) -"tr" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) -"tv" = (/obj/structure/flora/pottedplant{icon_state = "pottedplant_18"},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) -"ty" = (/obj/structure/surface/table/almayer,/obj/item/storage/box/pdt_kit{pixel_x = 7; pixel_y = 9},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_two) -"tA" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/supply) -"tB" = (/obj/structure/closet/firecloset/full,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) -"tS" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{req_access = list(); req_one_access_txt = "8;12;40"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"tT" = (/obj/structure/surface/table/almayer,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"tV" = (/obj/structure/ship_ammo/rocket/keeper,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) -"tX" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/vents/scrubber,/obj/structure/machinery/cm_vending/sorted/medical/wall_med{pixel_y = 25},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) -"ua" = (/obj/item/tool/warning_cone{pixel_y = 16},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) -"ub" = (/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) -"ug" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 4; name = "ship-grade camera"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"um" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/structure/machinery/firealarm{pixel_y = 28},/obj/structure/machinery/faxmachine/uscm/command/capt,/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) -"uo" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/supply) -"up" = (/obj/structure/bed/chair/comfy{dir = 1},/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"us" = (/obj/structure/pipes/vents/pump{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/engineering) -"uu" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) -"uw" = (/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"uA" = (/obj/structure/machinery/light,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"uE" = (/obj/structure/machinery/firealarm{pixel_y = 28},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) -"uF" = (/obj/structure/surface/table/reinforced/prison,/obj/structure/machinery/computer/crew/alt,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) -"uG" = (/obj/item/tool/warning_cone,/turf/open/floor/almayer,/area/golden_arrow/hangar) -"uH" = (/obj/structure/sign/poster{desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; icon_state = "poster12"; name = "Beach Babe Pinup"; pixel_x = -30; pixel_y = 6; serial_number = 12},/obj/effect/decal/cleanable/dirt,/obj/structure/bed/chair{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"uO" = (/obj/structure/surface/table/almayer,/obj/item/device/flashlight/lamp{pixel_x = 11; pixel_y = 5},/obj/item/paper_bin/uscm{pixel_x = -4; pixel_y = 7},/obj/item/tool/pen{pixel_x = -5; pixel_y = 4},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) -"uQ" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"uS" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/turf/open/floor/almayer,/area/golden_arrow/supply) -"uX" = (/obj/structure/closet/secure_closet/engineering_chief,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) -"vb" = (/obj/structure/surface/table/reinforced/almayer_B{layer = 2; pixel_x = 12},/turf/closed/wall/almayer,/area/golden_arrow/platoon_commander_rooms) -"vc" = (/obj/structure/machinery/light{dir = 1},/obj/structure/closet/emcloset,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) -"vg" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) -"vk" = (/obj/structure/machinery/light,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/briefing) -"vo" = (/obj/structure/machinery/cm_vending/sorted/medical/wall_med{pixel_y = 25},/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"vp" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/structure/prop/invuln/lattice_prop{dir = 1; icon_state = "lattice-simple"; pixel_x = 16; pixel_y = -15},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) -"vt" = (/obj/structure/machinery/power/apc/almayer{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_commander_rooms) -"vA" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/machinery/door/airlock/almayer/generic{dir = 1; name = "\improper Platoon Sergeant's Bunk"; req_one_access_txt = "12"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"vB" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"vF" = (/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/squad_two) -"vG" = (/obj/structure/machinery/power/terminal{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/item/storage/pouch/electronics{pixel_x = 6; pixel_y = -1},/obj/item/storage/toolbox/mechanical{pixel_x = -7; pixel_y = -8},/obj/item/stack/cable_coil,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) -"vJ" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"vK" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/supply) -"vL" = (/obj/structure/sign/safety/bulkhead_door{pixel_x = -19},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"vN" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"vP" = (/obj/structure/machinery/light,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"vS" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/machinery/landinglight/ds1{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"vU" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 6},/obj/structure/bed/chair{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/dorms) -"wa" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"wc" = (/obj/structure/machinery/door/airlock/almayer/command/reinforced{name = "\improper Platoon Commander's Quarters"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_commander_rooms) -"wd" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"wi" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"wl" = (/turf/open/floor/almayer,/area/golden_arrow/dorms) -"wn" = (/obj/structure/pipes/standard/manifold/fourway/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) -"wp" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"wx" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"wz" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"wH" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/item/clothing/ears/earmuffs{pixel_x = -8; pixel_y = 8},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/item/device/walkman{pixel_x = 4; pixel_y = -6},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"wI" = (/obj/structure/surface/rack,/obj/effect/spawner/random/technology_scanner,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"wJ" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/light{dir = 8},/obj/item/prop/magazine/book/bladerunner,/obj/item/storage/fancy/cigarettes/lucky_strikes{pixel_x = 2; pixel_y = 18},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"wK" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"wN" = (/obj/structure/closet/fireaxecabinet{pixel_x = -32},/obj/item/book/manual/robotics_cyborgs{pixel_y = 8},/obj/item/tool/wirecutters,/obj/item/tool/weldingtool/hugetank,/obj/structure/surface/rack,/obj/structure/machinery/light/small{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/synthcloset) -"wS" = (/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/briefing) -"wV" = (/obj/structure/machinery/door/airlock/almayer/generic{dir = 1; name = "\improper Platoon Sergeant's Bunk"; req_one_access_txt = "12"},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_sergeant) -"wX" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) -"xf" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/squad_one) -"xh" = (/obj/structure/cargo_container/arious/right,/turf/open/floor/almayer,/area/golden_arrow/hangar) -"xm" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/firealarm{pixel_y = 28},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"xo" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) -"xx" = (/obj/structure/machinery/light,/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer,/area/golden_arrow/squad_one) -"xz" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) -"xB" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/structure/machinery/recharger{pixel_y = 6},/obj/structure/machinery/camera/autoname/golden_arrow{dir = 4; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"xJ" = (/obj/structure/closet/secure_closet/engineering_welding{req_one_access = list()},/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"xK" = (/obj/structure/machinery/light{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"xM" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"xQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/safety/galley{pixel_x = -19},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) -"xX" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/dorms) -"yc" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"ye" = (/turf/closed/wall/almayer,/area/golden_arrow/engineering) -"yg" = (/obj/effect/decal/cleanable/dirt,/obj/structure/supply_drop/echo,/obj/effect/decal/cleanable/dirt,/obj/structure/platform{dir = 8},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) -"yj" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 1; name = "ship-grade camera"},/obj/structure/machinery/vending/walkman,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"yo" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/structure/machinery/status_display{pixel_y = -30},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) -"ys" = (/obj/structure/sign/safety/rewire{pixel_x = 14; pixel_y = 29},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"yt" = (/obj/structure/window/framed/almayer,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_sergeant) -"yv" = (/obj/structure/machinery/light{dir = 4},/obj/structure/machinery/power/apc/almayer{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"yw" = (/obj/item/toy/deck/uno,/obj/structure/surface/table/almayer,/turf/open/floor/almayer,/area/golden_arrow/dorms) -"yx" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/firealarm{pixel_y = 28},/obj/structure/machinery/computer/arcade,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"yy" = (/obj/structure/closet/emcloset,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) -"yA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/squad_sergeant{req_access_txt = "32;39"; req_one_access = list()},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"yF" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"yJ" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer,/area/golden_arrow/synthcloset) -"yL" = (/obj/structure/closet/coffin/woodencrate,/obj/item/storage/box/m94,/obj/item/storage/box/m94,/obj/item/storage/box/m94,/obj/structure/sign/safety/rewire{pixel_x = 14; pixel_y = 29},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"yM" = (/obj/structure/surface/table/almayer,/obj/item/reagent_container/food/condiment/hotsauce/cholula{pixel_x = -9; pixel_y = -3},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) -"yO" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) -"yT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) -"yU" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/supply) -"yY" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/obj/structure/bed/chair,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_sergeant) -"yZ" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"za" = (/obj/structure/machinery/camera/autoname/golden_arrow,/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"zk" = (/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{req_one_access = list(); req_one_access_txt = "8;12;39"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"zl" = (/obj/structure/machinery/power/smes/buildable,/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) -"zn" = (/obj/structure/machinery/light{dir = 4},/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"zt" = (/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"zv" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) -"zy" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/hangar) -"zA" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) -"zD" = (/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) -"zG" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer,/area/golden_arrow/engineering) -"zI" = (/obj/structure/pipes/vents/pump,/obj/item/tool/mop{pixel_x = -9; pixel_y = 20},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer,/area/golden_arrow/engineering) -"zJ" = (/obj/structure/machinery/firealarm{pixel_y = 28},/turf/open/floor/almayer,/area/golden_arrow/hangar) -"zK" = (/obj/structure/pipes/vents/scrubber,/obj/structure/sign/safety/bulkhead_door{pixel_x = 7; pixel_y = 29},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"zL" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"zM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) -"zP" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/firingrange) -"zV" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/disposal,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"zY" = (/obj/structure/closet/secure_closet/engineering_electrical{req_one_access = list()},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) -"zZ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/item/tool/screwdriver,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"Ad" = (/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) -"Ap" = (/obj/structure/surface/table/almayer,/obj/item/trash/ceramic_plate,/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) -"As" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"Aw" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/obj/structure/machinery/door/airlock/almayer/generic{name = "\improper Canteen"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/canteen) -"Ax" = (/obj/structure/machinery/shower{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) -"Ay" = (/obj/structure/machinery/door/poddoor/almayer/locked{dir = 2; name = "\improper Hangar Lockdown Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/prep_hallway) -"AA" = (/obj/structure/machinery/cm_vending/sorted/medical/wall_med{pixel_y = 25},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"AC" = (/obj/structure/machinery/power/terminal{dir = 8},/obj/item/stack/catwalk{pixel_x = 12; pixel_y = -9},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"AG" = (/obj/structure/machinery/landinglight/ds1/delaythree{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"AH" = (/turf/open/floor/almayer,/area/golden_arrow/engineering) -"AK" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/structure/largecrate/random/case/small,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) -"AL" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"AO" = (/obj/structure/machinery/autolathe,/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"AP" = (/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{layer = 2.1},/obj/structure/sign/safety/manualopenclose{layer = 2.11; pixel_x = 12; pixel_y = 2},/turf/open/floor/almayer,/area/golden_arrow/hangar) -"AQ" = (/obj/structure/cargo_container/lockmart/right{layer = 3.1; pixel_y = 5},/turf/open/floor/almayer,/area/golden_arrow/hangar) -"AY" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 4; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"Bd" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"Bf" = (/obj/effect/decal/cleanable/blood/oil,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) -"Bg" = (/obj/structure/bed/chair{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/dorms) -"Bh" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/vending/coffee/simple,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"Bi" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"Bj" = (/obj/structure/window/framed/almayer/white,/turf/open/floor/almayer,/area/golden_arrow/medical) -"Bo" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/dorms) -"Bq" = (/obj/structure/pipes/standard/manifold/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"Br" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) -"Bt" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"Bu" = (/obj/item/ammo_magazine/sentry{layer = 3.01},/obj/item/defenses/handheld/sentry,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"Bv" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{name = "Damage Control Locker"; req_one_access = list()},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) -"Bw" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/safety/rewire{pixel_y = -29},/turf/open/floor/almayer,/area/golden_arrow/hangar) -"Bz" = (/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) -"BA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/item/prop/helmetgarb/gunoil{pixel_x = -7; pixel_y = 4},/obj/item/prop/helmetgarb/gunoil{pixel_x = -3},/obj/item/storage/toolbox{pixel_y = -5},/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"BC" = (/obj/structure/target,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/firingrange) -"BD" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) -"BK" = (/obj/structure/bed{can_buckle = 0},/obj/item/bedsheet/brown{layer = 3.4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"BM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/cryo_cells) -"BO" = (/obj/structure/bed/chair{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"BP" = (/obj/effect/decal/cleanable/blood/oil,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/hangar) -"BW" = (/obj/structure/sign/safety/hazard{pixel_x = -19; pixel_y = 6},/obj/structure/sign/safety/ammunition{pixel_x = -19; pixel_y = -6},/obj/structure/sign/safety/bulkhead_door{pixel_x = -31; pixel_y = 6},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"BY" = (/obj/effect/landmark/start/marine/alpha,/obj/effect/landmark/late_join/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) -"BZ" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) -"Cb" = (/obj/structure/surface/table/almayer,/obj/item/ashtray/bronze{pixel_x = 7; pixel_y = 9},/obj/item/trash/semki{layer = 2; pixel_x = -13; pixel_y = 14},/obj/item/prop/magazine/boots/n054{pixel_x = 29},/obj/item/prop/magazine/dirty/torn{pixel_x = -6; pixel_y = 6},/obj/item/clothing/glasses/disco_fever{pixel_x = 5; pixel_y = 4},/obj/item/tool/hand_labeler{pixel_x = -3; pixel_y = 14},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"Ce" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/alarm/almayer{dir = 1},/obj/item/storage/toolbox/electrical,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"Cf" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) -"Cg" = (/obj/structure/surface/table/almayer,/obj/item/folder/black_random,/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) -"Cl" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/hangar) -"Cn" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/bed/chair{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/supply) -"Co" = (/obj/structure/barricade/plasteel{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) -"Cr" = (/turf/open/space/basic,/area/space) -"Cs" = (/obj/structure/bed/chair/comfy{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"Cu" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{name = "\improper Sergeants Room"; req_one_access_txt = "12;32"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_sergeant) -"Cv" = (/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) -"Cw" = (/obj/structure/machinery/body_scanconsole{pixel_y = 6},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) -"Cy" = (/obj/structure/machinery/conveyor{dir = 8},/obj/structure/barricade/handrail{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) -"CA" = (/obj/structure/largecrate/random/barrel/green,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) -"CC" = (/obj/structure/surface/rack,/obj/item/ammo_magazine/flamer_tank,/obj/item/ammo_magazine/flamer_tank,/obj/item/weapon/gun/flamer{current_mag = null; pixel_y = 4},/obj/item/device/motiondetector,/obj/item/attachable/attached_gun/extinguisher/pyro{layer = 3.01},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"CF" = (/obj/structure/bed/chair/comfy{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"CK" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/structure/largecrate/random/case/double,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) -"CN" = (/obj/structure/cargo_container/lockmart/left{layer = 3.1; pixel_y = 5},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"CP" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"CS" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/structure/machinery/computer/supply_drop_console/limited/alternate,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) -"CT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/marine_personal{pixel_x = -8},/obj/structure/closet/secure_closet/marine_personal{pixel_x = 8; job = "Smartgunner"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"CX" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"CZ" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{name = "Midway Remote Control Console"; shuttleId = "dropship_midway"},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) -"Db" = (/obj/effect/decal/cleanable/dirt,/turf/closed/wall/almayer,/area/golden_arrow/squad_two) -"Dc" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) -"Df" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/item/ammo_box/magazine/misc/flares/empty{pixel_x = -1; pixel_y = 16},/obj/item/device/flashlight/flare{pixel_x = 10},/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"Dg" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"Dl" = (/obj/structure/surface/table/almayer,/obj/item/paper_bin{pixel_x = 5; pixel_y = 22},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"Dw" = (/obj/structure/bed/chair/comfy{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"Dx" = (/obj/structure/surface/table/almayer,/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/obj/item/bananapeel{desc = "Ew."; gender = "plural"; icon = 'icons/obj/items/shards.dmi'; icon_state = "shrapnelsmall"; name = "\improper finger nails"; pixel_x = -6; pixel_y = 5},/obj/item/ashtray/glass{pixel_x = 3; pixel_y = -4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_one) -"DB" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/platoon_commander_rooms) -"DC" = (/turf/open/floor/almayer,/area/golden_arrow/supply) -"DE" = (/obj/structure/machinery/light{dir = 4},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"DF" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/alarm/almayer{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) -"DM" = (/obj/structure/machinery/power/apc/almayer,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/hangar) -"DR" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/almayer,/area/golden_arrow/squad_two) -"DX" = (/obj/structure/toilet{pixel_y = 16},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) -"DY" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"Ea" = (/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) -"Eb" = (/obj/structure/surface/table/reinforced/almayer_B,/turf/open/floor/almayer,/area/golden_arrow/briefing) -"Ei" = (/obj/structure/machinery/space_heater,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"Eo" = (/obj/structure/platform_decoration,/obj/structure/platform_decoration{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"Ep" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer,/area/golden_arrow/synthcloset) -"Er" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/hangar) -"Eu" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) -"Ey" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) -"EA" = (/obj/structure/machinery/power/monitor{name = "Core Power Monitoring"},/obj/structure/sign/safety/terminal{pixel_x = -17},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) -"EB" = (/obj/structure/window/framed/almayer,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) -"ED" = (/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) -"EF" = (/obj/structure/machinery/washing_machine,/obj/structure/machinery/washing_machine{layer = 3.5; pixel_y = 15},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"EI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/vents/scrubber,/obj/structure/sign/safety/bathunisex{pixel_y = 29},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) -"EJ" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"EK" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/cryo_cells) -"EN" = (/obj/structure/barricade/metal{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/firingrange) -"EO" = (/obj/structure/machinery/disposal{density = 0; layer = 3.2; pixel_y = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) -"EQ" = (/obj/structure/window/reinforced{dir = 4; pixel_x = -2; pixel_y = 4},/obj/structure/window/reinforced{dir = 8; layer = 3.3; pixel_y = 4},/obj/structure/bed{can_buckle = 0},/obj/structure/bed{buckling_y = 13; layer = 3.5; pixel_y = 13},/obj/item/bedsheet/brown{layer = 3.4},/obj/item/bedsheet/brown{pixel_y = 13},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"EX" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) -"EZ" = (/obj/structure/machinery/landinglight/ds1{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"Fa" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/structure/machinery/door/airlock/almayer/generic{name = "\improper Canteen"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/canteen) -"Fe" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/structure/machinery/computer/emails{pixel_y = 4},/obj/structure/machinery/firealarm{pixel_y = 28},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"Ff" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer,/area/golden_arrow/engineering) -"Fg" = (/turf/open/floor/almayer,/area/golden_arrow/squad_two) -"Fi" = (/obj/structure/surface/table/reinforced/prison,/obj/item/roller,/obj/item/storage/box/bodybags,/obj/structure/machinery/light{dir = 8},/obj/item/storage/box/bodybags,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) -"Fj" = (/obj/structure/surface/table/almayer,/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/item/ammo_box/magazine/misc/mre{pixel_x = -23; pixel_y = -11},/obj/item/facepaint/black,/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) -"Fl" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) -"Fu" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) -"Fw" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"Fy" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_two) -"Fz" = (/obj/structure/closet/crate/trashcart,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) -"FE" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/dorms) -"FI" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/dorms) -"FK" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/firingrange) -"FN" = (/obj/structure/machinery/medical_pod/sleeper{dir = 8; pixel_y = 6},/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) -"FP" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) -"FR" = (/obj/structure/pipes/vents/pump{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/dorms) -"FS" = (/obj/structure/machinery/cm_vending/sorted/medical/wall_med{pixel_y = 25},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"FT" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"FV" = (/obj/structure/surface/table/almayer,/obj/item/trash/ceramic_plate{pixel_x = 18; pixel_y = 3},/obj/item/trash/ceramic_plate{pixel_x = 18; pixel_y = 5},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"FW" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 8},/obj/structure/sign/safety/rewire{pixel_x = 14; pixel_y = 29},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) -"Gf" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/computer/cameras/wooden_tv/prop{dir = 8; layer = 3.2; pixel_x = -3; pixel_y = 6},/obj/structure/sign/poster{desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; icon_state = "poster11"; name = "YOU ALWAYS KNOW A WORKING JOE."; pixel_x = 27; serial_number = 11},/obj/item/trash/pistachios{layer = 2; pixel_x = 6; pixel_y = -6},/obj/structure/machinery/recharger{layer = 3.1; pixel_y = 22},/obj/item/ammo_magazine/rifle/incendiary{current_rounds = 0; desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; pixel_x = 10; pixel_y = 2},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"Gg" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"Gi" = (/obj/structure/sign/safety/ammunition{pixel_x = 14; pixel_y = -28},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"Gk" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"Gl" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/prep_hallway) -"Gq" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"Gs" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) -"Gu" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) -"Gv" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) -"Gy" = (/obj/structure/machinery/recharge_station,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) -"Gz" = (/obj/structure/bed/chair/comfy{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) -"GA" = (/obj/structure/machinery/power/apc/almayer{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) -"GG" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) -"GK" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/structure/machinery/door/airlock/almayer/generic{dir = 1; id = "Delta_1"; name = "\improper Bathroom"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/cryo_cells) -"GL" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"GN" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) -"GO" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/safety/synth_storage{pixel_x = -20},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"GQ" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) -"GU" = (/obj/structure/surface/table/almayer,/obj/item/device/radio,/obj/item/device/lightreplacer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"GV" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) -"GY" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/briefing) -"Hc" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/computer/general_air_control/large_tank_control{dir = 4; name = "Lower Deck Waste Tank Control"},/obj/structure/sign/safety/terminal{pixel_x = -17},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"Hd" = (/obj/structure/sign/banners/united_americas_flag{pixel_y = 30},/obj/structure/closet/secure_closet/marine_personal{pixel_x = -8},/obj/structure/closet/secure_closet/marine_personal{pixel_x = 8; job = "Smartgunner"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"Hh" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) -"Hj" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/prop/almayer/CICmap{pixel_y = 29},/obj/effect/landmark/map_item,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"Hk" = (/obj/structure/closet/coffin/woodencrate,/obj/item/clothing/accessory/storage/droppouch,/obj/item/clothing/accessory/storage/droppouch,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) -"Hm" = (/obj/structure/bed/chair{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) -"Hu" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/target,/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/firingrange) -"Hv" = (/obj/item/frame/camera{desc = "The Staff Officer insisted he needed to monitor everyone at all times."; layer = 2.9; name = "broken camera"; pixel_x = -7; pixel_y = -6},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"Hw" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/structure/machinery/door/airlock/almayer/generic{req_one_access_txt = "8;12;40"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/squad_two) -"Hx" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/structure/machinery/light,/obj/item/device/cassette_tape/aesthetic,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) -"HG" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "SW-out"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"HH" = (/obj/structure/machinery/status_display{pixel_y = 30},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"HK" = (/turf/closed/wall/almayer,/area/golden_arrow/cryo_cells) -"HQ" = (/obj/structure/machinery/light,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"HR" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/hangar) -"HS" = (/obj/structure/machinery/landinglight/ds1/delaythree{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"HT" = (/obj/structure/machinery/power/terminal{dir = 8},/obj/effect/decal/cleanable/blood/oil,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) -"HV" = (/obj/structure/machinery/landinglight/ds1/delayone{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"HX" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"Ib" = (/obj/structure/barricade/metal{dir = 8},/obj/structure/machinery/light{dir = 1},/obj/structure/sign/safety/one{pixel_y = 22},/turf/open/floor/almayer,/area/golden_arrow/firingrange) -"Ii" = (/obj/structure/machinery/cryopod,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) -"Is" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/firingrange) -"It" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{autoname = 0; dir = 1; req_one_access = list()},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) -"Iw" = (/obj/structure/surface/table/almayer,/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) -"Iy" = (/obj/structure/computer3frame,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"IC" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"ID" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_sergeant) -"IE" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/item/tool/warning_cone{pixel_x = 2; pixel_y = 10},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_two) -"IH" = (/obj/structure/barricade/metal{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/firingrange) -"IP" = (/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) -"IR" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 2},/obj/structure/pipes/standard/manifold/hidden/supply,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"IS" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/machinery/camera/autoname/golden_arrow{dir = 4; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) -"IT" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/structure/prop/almayer/hangar_stencil,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"IU" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"IW" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer,/area/golden_arrow/hangar) -"IX" = (/obj/structure/machinery/light{dir = 4},/obj/structure/surface/table/almayer,/obj/item/paper_bin/uscm,/obj/item/tool/pen,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"IZ" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"Jc" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) -"Jg" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/item/clipboard{pixel_x = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_commander_rooms) -"Jj" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/firingrange) -"Jk" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"Jn" = (/obj/structure/surface/table/almayer,/obj/item/reagent_container/food/drinks/cans/waterbottle{pixel_x = 9; pixel_y = 3},/obj/item/prop/helmetgarb/flair_io{pixel_x = -10; pixel_y = 6},/obj/item/tool/hand_labeler{pixel_y = 14},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) -"Jp" = (/obj/structure/machinery/conveyor{dir = 9},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/supply) -"Jq" = (/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"Jv" = (/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) -"JD" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/turf/open/floor/almayer,/area/golden_arrow/hangar) -"JI" = (/obj/structure/machinery/landinglight/ds1/delaythree{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/vending/cigarette,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"JJ" = (/obj/structure/machinery/sleep_console{dir = 8; pixel_y = 6},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/medical) -"JL" = (/obj/structure/bed/chair,/turf/open/floor/almayer,/area/golden_arrow/dorms) -"JP" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/hangar) -"JT" = (/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"JU" = (/obj/structure/machinery/cm_vending/clothing/medic,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) -"JZ" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"Kb" = (/obj/structure/surface/rack,/obj/item/tool/screwdriver,/obj/item/prop/helmetgarb/gunoil,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) -"Kd" = (/obj/structure/surface/table/almayer,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"Ke" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"Ki" = (/obj/structure/machinery/shower{pixel_y = 16},/obj/structure/window/reinforced{dir = 4; health = 80},/obj/structure/window/reinforced{dir = 8; health = 80},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) -"Kl" = (/obj/structure/closet/coffin/woodencrate,/obj/item/ammo_magazine/rifle/m4ra/pve,/obj/item/ammo_magazine/rifle/m4ra/pve,/obj/item/ammo_magazine/rifle/m4ra/pve,/obj/item/ammo_magazine/rifle/m4ra/pve,/obj/item/ammo_magazine/rifle/m4ra/pve,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"Kp" = (/obj/structure/surface/rack,/obj/item/weapon/gun/rifle/m41aMK1{pixel_y = 7},/obj/item/weapon/gun/rifle/m41aMK1,/obj/item/weapon/gun/rifle/m41aMK1{pixel_y = -7},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"Ku" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{req_one_access = list(); req_one_access_txt = "8;12;40"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"Kv" = (/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) -"Kx" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"KD" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"KH" = (/obj/vehicle/powerloader,/turf/open/floor/almayer,/area/golden_arrow/hangar) -"KK" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"KL" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) -"KM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light,/obj/structure/barricade/handrail{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) -"KO" = (/turf/open/floor/almayer,/area/golden_arrow/hangar) -"KP" = (/obj/structure/surface/table/almayer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) -"KQ" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"KU" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) -"KY" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"KZ" = (/obj/structure/window/reinforced{dir = 4; pixel_x = -2; pixel_y = 4},/obj/structure/window/reinforced{dir = 8; layer = 3.3; pixel_y = 4},/obj/structure/bed{can_buckle = 0},/obj/structure/bed{buckling_y = 13; layer = 3.5; pixel_y = 13},/obj/item/bedsheet/brown{layer = 3.4},/obj/item/bedsheet/brown{pixel_y = 13},/obj/effect/decal/cleanable/dirt,/obj/item/clothing/head/cmcap{layer = 4.1; pixel_x = -1; pixel_y = 22},/obj/item/toy/plush/therapy/red{desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; force = 15; layer = 4.1; name = "Sergeant Huggs"; pixel_y = 15; throwforce = 15},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"La" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/engineering) -"Ld" = (/obj/structure/window/reinforced{dir = 4; pixel_x = -2; pixel_y = 4},/obj/structure/window/reinforced{dir = 8; layer = 3.3; pixel_y = 4},/obj/structure/bed{can_buckle = 0},/obj/structure/bed{buckling_y = 13; layer = 3.5; pixel_y = 13},/obj/item/bedsheet/brown{layer = 3.4},/obj/item/bedsheet/brown{pixel_y = 13},/obj/structure/prop/invuln/lattice_prop{dir = 1; icon_state = "lattice-simple"; pixel_x = 16; pixel_y = -15},/obj/structure/prop/invuln/lattice_prop{icon_state = "lattice2"; pixel_x = 16; pixel_y = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"Lf" = (/obj/effect/landmark/start/marine/tl/alpha,/obj/effect/landmark/late_join/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) -"Lg" = (/obj/docking_port/stationary/marine_dropship/golden_arrow_hangar,/turf/open/floor/plating,/area/golden_arrow/hangar) -"Ll" = (/obj/structure/ship_ammo/minirocket/incendiary,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) -"Ln" = (/obj/structure/ship_ammo/rocket/banshee,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) -"Lo" = (/obj/structure/machinery/light{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/hangar) -"Ls" = (/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/alpha{density = 0},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"Lx" = (/obj/structure/machinery/landinglight/ds1{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"LC" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/emcloset,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) -"LE" = (/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) -"LF" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/squad_one) -"LH" = (/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"LJ" = (/turf/open/floor/almayer/uscm/directional{dir = 8},/area/golden_arrow/briefing) -"LK" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed/chair{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"LL" = (/obj/effect/landmark/late_join/alpha,/obj/effect/landmark/start/marine/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) -"LQ" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"LS" = (/obj/structure/bed/chair/comfy{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"LT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/status_display{pixel_x = -32},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"LZ" = (/obj/structure/machinery/light,/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) -"Mc" = (/obj/structure/pipes/vents/pump{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) -"Md" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer,/area/golden_arrow/supply) -"Me" = (/turf/closed/wall/almayer,/area/golden_arrow/squad_two) -"Mf" = (/obj/effect/decal/cleanable/cobweb{dir = 8},/obj/item/notepad,/obj/item/maintenance_jack,/obj/structure/closet,/obj/item/tool/pen{pixel_x = -5; pixel_y = 4},/obj/item/device/camera,/obj/item/device/camera_film,/obj/item/storage/photo_album,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/synthcloset) -"Mi" = (/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"Mj" = (/obj/structure/surface/table/reinforced/prison,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) -"Ml" = (/obj/structure/surface/table/almayer,/obj/item/storage/firstaid/rad{pixel_x = -7; pixel_y = 2},/obj/item/storage/firstaid/toxin{pixel_x = 8; pixel_y = 2},/obj/structure/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"Mn" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/cryo_cells) -"Mu" = (/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{name = "\improper Engineering Airlock"; req_one_access = list()},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) -"Mz" = (/obj/structure/machinery/light{dir = 4},/obj/structure/surface/table/almayer,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/firingrange) -"MB" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"},/obj/structure/machinery/door/airlock/almayer/generic{name = "\improper Bathroom"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_commander_rooms) -"MC" = (/obj/structure/machinery/light,/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"MI" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer,/area/golden_arrow/hangar) -"MJ" = (/obj/structure/machinery/light{dir = 4},/obj/structure/largecrate/random/case/small,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"MK" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/platoon_commander_rooms) -"ML" = (/obj/structure/largecrate,/obj/structure/largecrate{pixel_y = 16},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) -"MN" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) -"MW" = (/obj/structure/pipes/vents/pump{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"MZ" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/dorms) -"Na" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"Ne" = (/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/briefing) -"Nf" = (/turf/closed/wall/almayer/white,/area/golden_arrow/medical) -"Ng" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) -"Nk" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 6},/turf/open/floor/almayer,/area/golden_arrow/hangar) -"No" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light/small,/turf/open/floor/almayer,/area/golden_arrow/synthcloset) -"Np" = (/turf/open/floor/almayer,/area/golden_arrow/briefing) -"Nr" = (/obj/structure/surface/table/almayer,/obj/effect/spawner/prop_gun/anti_tank,/turf/open/floor/almayer,/area/golden_arrow/squad_two) -"Nx" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/structure/machinery/power/smes/buildable,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) -"Nz" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"NB" = (/obj/structure/sign/safety/cryo{pixel_x = 6; pixel_y = -29},/obj/effect/decal/cleanable/dirt,/obj/structure/prop/invuln/overhead_pipe{pixel_x = -7; pixel_y = -3},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) -"ND" = (/obj/structure/sign/safety/rewire{pixel_x = 14; pixel_y = 29},/obj/item/ammo_magazine/sentry{layer = 3.01},/obj/item/defenses/handheld/sentry,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"NE" = (/obj/structure/machinery/light{dir = 8},/obj/structure/sink{pixel_y = 16},/obj/structure/mirror{pixel_y = 21},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/platoon_commander_rooms) -"NH" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/marine_personal{pixel_x = -8; job = "Squad Sergeant"},/obj/structure/closet/secure_closet/marine_personal{pixel_x = 8; job = "Squad Sergeant"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"NI" = (/obj/structure/machinery/cm_vending/clothing/synth/snowflake{density = 0; pixel_x = -30},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/synthcloset) -"NO" = (/obj/structure/bed/chair/comfy,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) -"NT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"NU" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{autoname = 0; dir = 1; req_one_access = list()},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) -"NV" = (/obj/structure/sign/safety/cryo{pixel_x = 6; pixel_y = -29},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) -"NZ" = (/obj/structure/closet/secure_closet/engineering_electrical,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) -"Ob" = (/obj/structure/platform{dir = 4; layer = 2.7},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"Oc" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) -"Od" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/briefing) -"Of" = (/turf/closed/wall/almayer,/area/golden_arrow/firingrange) -"Oj" = (/obj/structure/machinery/camera/autoname/golden_arrow,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"Ol" = (/obj/item/reagent_container/spray/cleaner{pixel_x = 5; pixel_y = 10},/obj/structure/janitorialcart,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) -"Op" = (/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) -"Os" = (/obj/structure/bed/chair/comfy,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"Oy" = (/obj/structure/machinery/light{dir = 1},/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/firingrange) -"Oz" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/turf/open/floor/almayer,/area/golden_arrow/hangar) -"OA" = (/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) -"OC" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/structure/machinery/light,/obj/item/device/cassette_tape/pop3{pixel_y = 3},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_commander_rooms) -"OG" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/alarm/almayer{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"OH" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"OI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/structure/machinery/light{dir = 4},/obj/item/storage/toolbox/mechanical{pixel_x = 1; pixel_y = 7},/obj/item/tool/wrench,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"OJ" = (/obj/structure/machinery/landinglight/ds1/delaythree,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"ON" = (/obj/structure/machinery/landinglight/ds1/delaythree{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"OU" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/squad_two) -"OX" = (/turf/open/floor/almayer/uscm/directional{dir = 4},/area/golden_arrow/briefing) -"OY" = (/obj/structure/ladder{height = 2; id = "req1"},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) -"OZ" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 6},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/supply) -"Pc" = (/obj/structure/surface/table/almayer,/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 1},/obj/item/tool/kitchen/tray{pixel_x = 16; pixel_y = -10},/obj/item/storage/box/cups{pixel_x = 11; pixel_y = -9},/obj/item/trash/ceramic_plate{pixel_x = 18; pixel_y = 3},/obj/item/trash/ceramic_plate{pixel_x = 18; pixel_y = 5},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) -"Pe" = (/obj/structure/bed/chair/comfy,/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"Pf" = (/obj/structure/surface/table/almayer,/obj/structure/bedsheetbin{pixel_y = 6},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) -"Ph" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/cleanable/blood/oil,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"Pl" = (/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"Pm" = (/obj/structure/surface/rack,/obj/item/weapon/gun/shotgun/pump/special{pixel_y = 8},/obj/item/storage/box/nade_box{pixel_x = 4; pixel_y = -2},/obj/item/ammo_magazine/shotgun/buckshot/special,/obj/item/device/motiondetector,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"Pp" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{name = "\improper Squad One Armoury"; req_one_access_txt = "8;12;39"},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/squad_one) -"Pr" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) -"Ps" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/plasteel{amount = 40; pixel_x = 7; pixel_y = 6},/obj/structure/closet/crate/construction,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) -"Pt" = (/obj/effect/decal/cleanable/blood/oil,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"Py" = (/obj/structure/machinery/landinglight/ds1{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"PA" = (/obj/structure/surface/rack,/obj/item/weapon/gun/shotgun/pump/special{pixel_y = 10},/obj/item/storage/box/nade_box{pixel_x = 2; pixel_y = -4},/obj/item/ammo_magazine/shotgun/buckshot/special,/obj/item/device/motiondetector,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"PF" = (/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"PG" = (/obj/structure/machinery/computer/arcade{density = 0; pixel_y = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"PI" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/firingrange) -"PL" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"PQ" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "cargo_arrow"},/area/golden_arrow/platoon_sergeant) -"PS" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/firingrange) -"PW" = (/obj/structure/machinery/door/airlock/almayer/command/reinforced{name = "\improper Private Briefing Room"; req_access = list(); req_one_access_txt = "12;19;32"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/briefing) -"PY" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/medical) -"PZ" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 8},/obj/structure/surface/table/almayer,/obj/item/device/cassette_tape/nam{layer = 2.9; pixel_x = -6; pixel_y = 7},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_one) -"Qc" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/structure/machinery/computer/overwatch/almayer{dir = 8; layer = 3.2; pixel_x = -17; pixel_y = 16},/obj/structure/phone_base/rotary/no_dnd{name = "Overwatch Telephone"; phone_category = "Command"; phone_id = "Overwatch"},/obj/item/clothing/glasses/hud/health{pixel_x = -8; pixel_y = 12},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) -"Qe" = (/obj/structure/surface/table/almayer,/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/item/ammo_magazine/pistol{current_rounds = 0},/obj/item/weapon/gun/pistol/m4a3{current_mag = null},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_sergeant) -"Qi" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/safety/conference_room{pixel_y = 29},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"Qk" = (/obj/structure/pipes/standard/manifold/hidden/supply{dir = 1},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) -"Ql" = (/obj/structure/prop/invuln/lattice_prop{icon_state = "lattice1"; pixel_x = 16; pixel_y = -15},/obj/structure/largecrate/random/case/double,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"Qq" = (/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{name = "\improper Engineering Airlock"; req_one_access = list()},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/engineering) -"Qt" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/item/tool/hand_labeler{pixel_x = 4; pixel_y = 11},/obj/item/reagent_container/food/drinks/coffeecup/uscm{pixel_x = -6; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) -"Qu" = (/obj/structure/machinery/firealarm{pixel_y = 28},/obj/structure/filingcabinet/chestdrawer{density = 0; pixel_x = -8; pixel_y = 16},/obj/structure/filingcabinet{density = 0; pixel_x = 8; pixel_y = 16},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) -"Qw" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/squad_two) -"Qx" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 28},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) -"Qz" = (/obj/structure/machinery/status_display{pixel_y = 30},/obj/structure/closet/firecloset/full,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) -"QD" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"QE" = (/obj/structure/machinery/chem_dispenser,/obj/item/reagent_container/glass/beaker/bluespace,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) -"QI" = (/obj/structure/surface/table/almayer,/obj/effect/decal/cleanable/dirt,/obj/item/storage/fancy/cigarettes/lucky_strikes{pixel_x = -7; pixel_y = 9},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) -"QJ" = (/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/squad_one) -"QL" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"QM" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"QN" = (/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"QO" = (/obj/structure/bed/chair/office/dark,/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) -"QP" = (/obj/effect/decal/cleanable/dirt,/obj/structure/largecrate,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) -"QQ" = (/obj/structure/toilet{dir = 8},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_commander_rooms) -"QS" = (/obj/structure/bed/chair/comfy{dir = 8},/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"QT" = (/obj/structure/machinery/cryopod,/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/cryo_cells) -"QW" = (/obj/structure/cargo_container/wy/left,/obj/structure/sign/poster{desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; icon_state = "poster12"; name = "Beach Babe Pinup"; pixel_x = 6; pixel_y = 8; serial_number = 12},/obj/structure/sign/poster{desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; icon_state = "poster16"; name = "'Miss July' Pinup"; serial_number = 16},/turf/open/floor/almayer,/area/golden_arrow/hangar) -"QX" = (/obj/structure/machinery/power/apc/almayer{dir = 1},/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"Ra" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"Rc" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/obj/structure/machinery/door/airlock/almayer/generic{dir = 1; name = "\improper Supply Office"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) -"Rd" = (/obj/structure/foamed_metal,/turf/open/floor/plating,/area/golden_arrow/supply) -"Rg" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"Rh" = (/obj/structure/machinery/alarm/almayer{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"Ri" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/firingrange) -"Rl" = (/obj/structure/surface/table/almayer,/obj/item/tool/kitchen/tray{pixel_y = -10},/obj/item/reagent_container/food/condiment/hotsauce/tabasco{pixel_x = 7; pixel_y = -2},/obj/item/storage/box/cups{pixel_x = -5; pixel_y = -10},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"Rr" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/hangar) -"Rt" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"Rv" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/canteen) -"Rx" = (/obj/structure/surface/table/almayer,/obj/item/paper_bin{pixel_x = -11; pixel_y = -10},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"Ry" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/item/tool/wrench{pixel_y = 7},/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/obj/structure/sign/poster{desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; icon_state = "poster11"; name = "YOU ALWAYS KNOW A WORKING JOE."; pixel_x = -4; pixel_y = 32; serial_number = 11},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"RD" = (/obj/effect/landmark/late_join,/obj/effect/landmark/start/marine/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) -"RK" = (/obj/structure/machinery/light{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"RM" = (/obj/structure/closet/firecloset/full,/obj/structure/machinery/light,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) -"RN" = (/obj/structure/surface/rack,/obj/item/clothing/mask/gas{pixel_x = -5; pixel_y = 10},/obj/item/stack/sheet/glass{amount = 50},/obj/item/clothing/mask/gas{pixel_x = 5; pixel_y = 10},/obj/item/stack/sheet/mineral/phoron/medium_stack{desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care."; pixel_y = -9},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) -"RO" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/squad_sergeant{req_access_txt = "32;40"; req_one_access = list()},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"RP" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/engineering) -"RT" = (/obj/structure/machinery/landinglight/ds1/delayone,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"RW" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer,/area/golden_arrow/supply) -"RY" = (/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) -"Sc" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/cryo_cells) -"Sd" = (/obj/structure/sign/poster{desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; icon_state = "poster16"; layer = 3.3; name = "'Miss July' Pinup"; pixel_y = 29; serial_number = 16},/obj/structure/closet/secure_closet/marine_personal{pixel_x = -8},/obj/structure/closet/secure_closet/marine_personal{pixel_x = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"Si" = (/obj/structure/machinery/light,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"Sj" = (/obj/effect/decal/warning_stripes{icon_state = "SE-out"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/cleanable/blood/oil,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"Sl" = (/obj/structure/surface/table/almayer,/obj/item/paper_bin{pixel_x = 11; pixel_y = -10},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"Sn" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"So" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"Sq" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"Ss" = (/obj/structure/window/reinforced{dir = 8; layer = 3.3; pixel_y = 4},/obj/structure/bed{can_buckle = 0},/obj/structure/bed{buckling_y = 13; layer = 3.5; pixel_y = 13},/obj/item/bedsheet/brown{layer = 3.4},/obj/item/bedsheet/brown{pixel_y = 13},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"Su" = (/obj/structure/surface/table/almayer,/obj/item/tool/kitchen/tray{pixel_y = -10},/obj/item/reagent_container/food/condiment/hotsauce/franks{pixel_x = 7; pixel_y = -3},/obj/item/storage/box/cups{pixel_x = -5; pixel_y = -10},/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"Sw" = (/obj/structure/machinery/shower{dir = 1},/obj/structure/window/reinforced{dir = 4; health = 80},/obj/structure/window/reinforced{dir = 8; health = 80},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) -"Sy" = (/obj/structure/machinery/disposal,/obj/structure/machinery/camera/autoname/golden_arrow{dir = 4; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"Sz" = (/obj/structure/closet/secure_closet/marine_personal{job = "Platoon Corpsman"},/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) -"SB" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/supply) -"SC" = (/obj/structure/machinery/firealarm{pixel_y = 28},/obj/structure/surface/table/almayer,/obj/item/reagent_container/food/drinks/cans/souto/classic{pixel_x = 10; pixel_y = 3},/obj/item/prop/magazine/boots/n054{pixel_x = -6; pixel_y = 5},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) -"SE" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/target,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "redfull"},/area/golden_arrow/firingrange) -"SI" = (/obj/structure/bed/chair{dir = 4},/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) -"SL" = (/obj/structure/machinery/light{dir = 8},/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/hangar) -"SO" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) -"SR" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"ST" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/item/device/flashlight/flare{pixel_x = 8; pixel_y = -1},/obj/item/device/flashlight/flare{pixel_x = 5; pixel_y = 5},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"SV" = (/obj/structure/surface/table/reinforced/almayer_B,/obj/item/prop/magazine/book/theartofwar,/obj/item/paper_bin/uscm{pixel_x = -8; pixel_y = 5},/obj/item/tool/pen{pixel_x = 12},/turf/open/floor/almayer,/area/golden_arrow/platoon_commander_rooms) -"SY" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) -"Tb" = (/obj/item/toy/deck,/obj/structure/surface/table/almayer,/turf/open/floor/almayer,/area/golden_arrow/dorms) -"Tc" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/closed/wall/almayer/white,/area/golden_arrow/medical) -"Td" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) -"Tg" = (/obj/item/device/radio/intercom{freerange = 1; name = "General Listening Channel"; pixel_y = 28},/obj/structure/window/reinforced{dir = 8; layer = 3.3; pixel_y = 4},/obj/structure/bed{can_buckle = 0},/obj/structure/bed{buckling_y = 13; layer = 3.5; pixel_y = 13},/obj/item/bedsheet/brown{layer = 3.4},/obj/item/bedsheet/brown{pixel_y = 13},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"Tj" = (/obj/structure/filingcabinet/chestdrawer{density = 0; pixel_x = -8; pixel_y = 16},/obj/structure/filingcabinet{density = 0; pixel_x = 8; pixel_y = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"Tk" = (/obj/structure/window/reinforced{dir = 4; pixel_x = -2; pixel_y = 4},/obj/structure/window/reinforced{dir = 8; layer = 3.3; pixel_y = 4},/obj/structure/bed{can_buckle = 0},/obj/structure/bed{buckling_y = 13; layer = 3.5; pixel_y = 13},/obj/item/bedsheet/brown{layer = 3.4},/obj/item/bedsheet/brown{pixel_y = 13},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"To" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/cryo_cells) -"Tr" = (/obj/structure/machinery/alarm/almayer{dir = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"Tu" = (/obj/structure/sign/safety/hazard{pixel_x = -19; pixel_y = 6},/obj/structure/sign/safety/ammunition{pixel_x = -19; pixel_y = -6},/obj/structure/sign/safety/bulkhead_door{pixel_x = -31; pixel_y = 6},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/firealarm{pixel_y = 28},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"Tx" = (/obj/structure/machinery/landinglight/ds1/delaythree{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"Ty" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/squad_one) -"Tz" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/bed/chair{dir = 8},/turf/open/floor/almayer,/area/golden_arrow/platoon_sergeant) -"TC" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) -"TD" = (/obj/item/tool/crowbar/red{pixel_x = -13; pixel_y = -13},/obj/item/stack/cable_coil{pixel_x = 7},/obj/item/tool/wirecutters{pixel_x = -8; pixel_y = 18},/obj/structure/bed{can_buckle = 0; desc = "A lightweight support lattice."; icon = 'icons/obj/structures/structures.dmi'; icon_state = "latticefull"; layer = 2.1; name = "lattice"},/turf/open/floor/plating,/area/golden_arrow/hangar) -"TI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/surface/table/almayer,/obj/structure/machinery/recharger{pixel_y = 5},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"TK" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"},/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"TN" = (/turf/closed/wall/almayer/reinforced,/area/golden_arrow/engineering) -"TO" = (/obj/structure/pipes/standard/manifold/fourway/hidden/supply,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) -"TP" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/structure/prop/almayer/hangar_stencil,/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"TT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer,/area/golden_arrow/squad_two) -"TW" = (/obj/structure/machinery/recharge_station,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/synthcloset) -"TY" = (/obj/structure/barricade/handrail{dir = 1; pixel_y = 12},/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/canteen) -"Ub" = (/obj/structure/surface/table/almayer,/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/camera/autoname/golden_arrow{dir = 8; name = "ship-grade camera"},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) -"Uf" = (/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"Uh" = (/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/briefing) -"Ui" = (/turf/closed/wall/almayer,/area/golden_arrow/canteen) -"Uj" = (/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/platoon_sergeant) -"Uk" = (/obj/structure/surface/table/almayer,/obj/item/spacecash/c10{pixel_x = 5; pixel_y = 7},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_one) -"Um" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/cm_vending/clothing/synth{density = 0; pixel_x = -30},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/synthcloset) -"Uv" = (/obj/effect/decal/cleanable/dirt,/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) -"UI" = (/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/squad_one) -"UK" = (/obj/structure/surface/rack,/obj/item/weapon/gun/rifle/m4ra/pve{pixel_y = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 4},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"UN" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/line_nexter{dir = 1; id = "MTline"; pixel_y = 13},/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/canteen) -"UO" = (/obj/structure/bed/chair{dir = 4},/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/dorms) -"UT" = (/obj/structure/machinery/disposal{density = 0; layer = 3.2; pixel_y = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/prep_hallway) -"UX" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/cleanable/blood/oil,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"Va" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) -"Vc" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"Ve" = (/obj/structure/sink{pixel_y = 24},/obj/structure/mirror{pixel_y = 32},/obj/item/storage/pill_bottle/tramadol/skillless{layer = 2.9; pill_type_to_fill = null; pixel_y = 14},/obj/structure/pipes/vents/pump,/obj/structure/surface/rack{density = 0; pixel_x = 26},/obj/effect/decal/warning_stripes{icon_state = "W"},/obj/item/tool/soap,/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"Vj" = (/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"Vp" = (/turf/closed/wall/almayer,/area/golden_arrow/dorms) -"Vq" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"Vr" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"Vu" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/structure/machinery/door/airlock/almayer/generic{dir = 1; name = "\improper Supply Bay"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/supply) -"Vv" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"Vz" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed/chair,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"VG" = (/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/firingrange) -"VJ" = (/obj/structure/ladder{height = 1; id = "req1"},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/supply) -"VK" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/smartgunner{req_access_txt = "14;39"; req_one_access = list()},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"VL" = (/obj/structure/closet/secure_closet/platoon_sergeant,/obj/structure/machinery/light{dir = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"VQ" = (/obj/structure/machinery/disposal,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"VT" = (/obj/structure/surface/table/almayer,/obj/item/tool/stamp/denied{pixel_x = 2; pixel_y = 10},/obj/item/device/eftpos{eftpos_name = "Cargo Bay EFTPOS scanner"; pixel_x = -10},/obj/item/tool/stamp/ro{pixel_x = -8; pixel_y = 10},/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/item/storage/fancy/cigar{pixel_x = 6},/obj/item/ashtray/glass{pixel_x = 11; pixel_y = 9},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) -"VX" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/briefing) -"Wf" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/obj/structure/prop/invuln/lattice_prop{dir = 1; icon_state = "lattice-simple"; pixel_x = 16; pixel_y = -15},/turf/open/floor/almayer,/area/golden_arrow/dorms) -"Wg" = (/obj/structure/sign/safety/cryo{pixel_x = 8; pixel_y = -26},/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/platoon_commander_rooms) -"Wj" = (/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/dorms) -"Wl" = (/obj/effect/decal/warning_stripes{icon_state = "SW-out"; pixel_x = -1},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) -"Wm" = (/obj/effect/decal/warning_stripes{icon_state = "NE-out"; pixel_x = 1; pixel_y = 2},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) -"Wo" = (/obj/structure/filingcabinet{density = 0; pixel_x = 8; pixel_y = 16},/obj/structure/filingcabinet{density = 0; pixel_x = -8; pixel_y = 18},/obj/structure/filingcabinet{density = 0; pixel_x = 8; pixel_y = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) -"Wp" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/turf/open/floor/almayer,/area/golden_arrow/squad_one) -"Wr" = (/obj/structure/machinery/floodlight/landing,/turf/open/floor/almayer,/area/golden_arrow/hangar) -"Ws" = (/obj/item/tool/warning_cone,/obj/effect/decal/warning_stripes{icon_state = "S"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"Wu" = (/obj/structure/largecrate/random/case/double,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) -"Wv" = (/obj/structure/machinery/landinglight/ds1/delaytwo{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"Wy" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 9},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) -"WA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/power/apc/almayer{dir = 1},/obj/structure/machinery/light{dir = 4},/obj/structure/largecrate,/turf/open/floor/almayer,/area/golden_arrow/supply) -"WG" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 4; icon_state = "cargo_arrow"},/area/golden_arrow/supply) -"WK" = (/obj/structure/surface/rack,/obj/item/weapon/gun/flamer{current_mag = null; pixel_y = 4},/obj/item/ammo_magazine/flamer_tank,/obj/item/ammo_magazine/flamer_tank,/obj/item/device/motiondetector,/obj/item/attachable/attached_gun/extinguisher/pyro{layer = 3.01},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"WP" = (/obj/structure/bed/chair/comfy/alpha{dir = 4},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/briefing) -"WY" = (/obj/effect/decal/warning_stripes{icon_state = "NW-out"; pixel_x = -1; pixel_y = 1},/obj/structure/machinery/light{dir = 8},/obj/structure/sign/safety/bulkhead_door{pixel_x = -19},/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) -"Xa" = (/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"Xb" = (/obj/structure/surface/table/almayer,/obj/effect/decal/cleanable/dirt,/obj/item/folder/yellow,/obj/item/book/manual/engineering_construction,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"Xc" = (/obj/structure/machinery/shower{pixel_y = 16},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) -"Xd" = (/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) -"Xj" = (/obj/structure/pipes/vents/pump,/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/light{dir = 1},/obj/structure/surface/table/almayer,/obj/structure/machinery/prop/almayer/computer/PC{dir = 4},/obj/structure/sign/safety/terminal{pixel_x = -20},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/supply) -"Xs" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 10},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/hangar) -"Xu" = (/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{dir = 2; name = "\improper Firing Range"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/firingrange) -"Xv" = (/obj/structure/sign/safety/rewire{pixel_x = 14; pixel_y = 29},/turf/open/floor/almayer{icon_state = "bluefull"},/area/golden_arrow/platoon_commander_rooms) -"Xw" = (/obj/structure/bed/chair/comfy{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"Xy" = (/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"Xz" = (/obj/structure/foamed_metal,/turf/open/floor/plating,/area/golden_arrow/platoon_sergeant) -"XI" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/prep_hallway) -"XJ" = (/turf/closed/wall/almayer,/area/golden_arrow/briefing) -"XL" = (/obj/structure/prop/invuln/overhead_pipe{pixel_x = -7; pixel_y = 12},/obj/structure/prop/invuln/overhead_pipe{pixel_x = -7; pixel_y = -4},/obj/structure/sign/safety/water{pixel_x = 14; pixel_y = 24},/obj/item/storage/backpack/marine/satchel{desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; icon = 'icons/obj/janitor.dmi'; icon_state = "trashbag3"; name = "trash bag"; pixel_x = -7; pixel_y = 14},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"XN" = (/obj/structure/closet/secure_closet/engineering_personal,/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/engineering) -"XP" = (/obj/structure/sign/safety/storage{pixel_x = 7; pixel_y = -28},/obj/structure/reagent_dispensers/ammoniatank,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) -"XQ" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/prep_hallway) -"XR" = (/obj/structure/surface/table/almayer,/obj/effect/decal/cleanable/dirt,/obj/item/trash/ceramic_plate{pixel_y = 19},/obj/item/trash/ceramic_plate{pixel_y = 21},/obj/item/trash/ceramic_plate{pixel_y = 23},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) -"XV" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer,/area/golden_arrow/prep_hallway) -"Ya" = (/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{dir = 1; icon_state = "cargo_arrow"},/area/golden_arrow/squad_two) -"Yc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/largecrate/supply/ammo/m41amk1,/obj/structure/largecrate/supply/ammo/m41amk1{pixel_x = 3; pixel_y = 10},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_one) -"Yd" = (/obj/structure/surface/table/almayer,/obj/structure/pipes/standard/simple/hidden/supply{dir = 5},/obj/item/folder/black_random,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/platoon_sergeant) -"Ye" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/engineering) -"Yh" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/turf/open/floor/almayer,/area/golden_arrow/hangar) -"Yj" = (/turf/closed/wall/almayer,/area/golden_arrow/hangar) -"Yk" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 5; icon_state = "plating"},/area/golden_arrow/firingrange) -"Yl" = (/obj/structure/machinery/cm_vending/gear/synth{density = 0; pixel_x = -30},/turf/open/floor/almayer{icon_state = "test_floor5"},/area/golden_arrow/synthcloset) -"Ym" = (/obj/structure/largecrate/random/secure,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/hangar) -"Yp" = (/obj/structure/pipes/standard/simple/hidden/supply{dir = 4},/turf/open/floor/almayer,/area/golden_arrow/squad_two) -"Ys" = (/obj/structure/surface/table/almayer,/obj/item/trash/plate,/obj/item/trash/ceramic_plate{pixel_x = 6; pixel_y = 19},/obj/item/trash/ceramic_plate{pixel_x = 6; pixel_y = 21},/obj/item/trash/ceramic_plate{pixel_x = 5; pixel_y = 23},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"Yv" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "S"},/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/engineering) -"Yw" = (/obj/structure/machinery/door/poddoor/almayer/locked{dir = 4; name = "\improper Hangar Lockdown Blast Door"},/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/hangar) -"Yx" = (/obj/structure/surface/table/almayer,/obj/item/trash/ceramic_plate{pixel_x = -6; pixel_y = 19},/obj/item/trash/ceramic_plate{pixel_x = -6; pixel_y = 21},/obj/item/trash/ceramic_plate{pixel_x = -5; pixel_y = 23},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"YA" = (/obj/structure/machinery/light{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/almayer{dir = 8; icon_state = "cargo_arrow"},/area/golden_arrow/briefing) -"YB" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/engineering) -"YG" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 2},/obj/effect/decal/warning_stripes{icon_state = "W"; pixel_x = -1; pixel_y = 1},/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"YK" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/firealarm{pixel_y = 28},/obj/structure/machinery/disposal{density = 0; layer = 3.2; pixel_y = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/canteen) -"YO" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/dirt,/obj/item/clothing/glasses/meson,/obj/item/clothing/gloves/yellow,/obj/item/clothing/gloves/yellow,/obj/item/clothing/gloves/yellow,/obj/item/clothing/gloves/yellow,/obj/item/clothing/gloves/yellow,/obj/item/tool/shovel/snow,/obj/item/tool/shovel/snow,/obj/item/tool/shovel/snow,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) -"YP" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/briefing) -"YQ" = (/obj/effect/decal/warning_stripes{icon_state = "N"; pixel_y = 1},/obj/structure/pipes/standard/simple/hidden/supply,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"YX" = (/obj/effect/landmark/start/marine/medic/alpha,/obj/effect/landmark/late_join/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) -"Zb" = (/obj/structure/sign/poster{desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; icon_state = "poster16"; layer = 3.3; name = "'Miss July' Pinup"; pixel_y = 29; serial_number = 16},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"Zd" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{icon_state = "E"; pixel_x = 1},/turf/open/floor/almayer,/area/golden_arrow/supply) -"Zf" = (/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/canteen) -"Zk" = (/obj/structure/closet/emcloset,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/prep_hallway) -"Zl" = (/obj/structure/machinery/power/apc/almayer{dir = 1},/obj/structure/pipes/vents/scrubber,/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/squad_two) -"Zn" = (/obj/structure/closet/secure_closet/marine_personal{pixel_x = -8; job = "Smartgunner"},/obj/structure/closet/secure_closet/marine_personal{pixel_x = 8},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/dorms) -"Zw" = (/obj/structure/largecrate/supply/generator,/turf/open/floor/almayer{icon_state = "cargo"},/area/golden_arrow/engineering) -"ZB" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/computer/med_data/laptop{pixel_y = 6},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/platoon_sergeant) -"ZC" = (/turf/closed/wall/almayer,/area/golden_arrow/squad_one) -"ZI" = (/obj/effect/landmark/start/marine/smartgunner/alpha,/obj/effect/landmark/late_join/alpha,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/cryo_cells) -"ZJ" = (/turf/closed/wall/almayer/outer,/area/golden_arrow/synthcloset) -"ZL" = (/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/hangar) -"ZM" = (/obj/structure/window/framed/almayer,/turf/open/floor/almayer{icon_state = "test_floor4"},/area/golden_arrow/canteen) -"ZQ" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/firingrange) -"ZR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/machinery/chem_master,/turf/open/floor/almayer{icon_state = "sterile_green"},/area/golden_arrow/medical) -"ZU" = (/obj/structure/pipes/standard/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/plating_catwalk,/area/golden_arrow/supply) -"ZV" = (/turf/open/floor/almayer{icon_state = "dark_sterile"},/area/golden_arrow/cryo_cells) -"ZX" = (/obj/structure/surface/table/almayer,/obj/structure/machinery/computer/cameras/engineering{dir = 1},/turf/open/floor/almayer{icon_state = "plate"},/area/golden_arrow/engineering) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ad" = ( +/obj/structure/machinery/light, +/obj/structure/target{ + name = "ready line Ronald" + }, +/obj/item/clothing/suit/storage/marine/heavy/smooth, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"af" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"ag" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/briefing) +"ah" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"al" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"an" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"aq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"ar" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"aw" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 9; + pixel_y = 29 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"ax" = ( +/obj/structure/cargo_container/arious/mid, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"ay" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 12; + pixel_y = 29 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"aA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform/stair_cut, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"aB" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"aG" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"aI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"aJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/item/prop/magazine/book/borntokill, +/obj/item/prop/magazine/book/starshiptroopers{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"aN" = ( +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"aO" = ( +/obj/item/prop/colony/game, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"aQ" = ( +/obj/structure/sign/safety/galley{ + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"aS" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 17" + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"aT" = ( +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + network = list("Golden Arrow","Vehicle","Midway"); + pixel_x = -17 + }, +/obj/structure/machinery/prop/almayer/CICmap{ + density = 0; + dir = 4; + icon_state = "shuttle"; + layer = 2.97; + name = "Tactical Map Display"; + pixel_x = -17; + pixel_y = 14 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"aX" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/supply) +"ba" = ( +/obj/item/tool/warning_cone{ + pixel_x = 4; + pixel_y = 16 + }, +/obj/item/stool, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/synthcloset) +"bb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"bf" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"bg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/crate/construction, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"bh" = ( +/obj/effect/landmark/start/marine/leader/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"bl" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/firingrange) +"bo" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoon_commander_rooms) +"bq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"bu" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"bw" = ( +/obj/structure/curtain/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"by" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"bB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"bD" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Platoon Commander's Office"; + req_access = list(); + req_one_access_txt = "19;12" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoon_commander_rooms) +"bO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_one_access = list() + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"bQ" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"bR" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"bS" = ( +/obj/structure/platform/stair_cut/alt, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"bZ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/supply) +"ca" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/hangar) +"ce" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/firingrange) +"cj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"cl" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"co" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/supply) +"cp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"cr" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"cs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"ct" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"cw" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"cy" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"cz" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"cA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/magazine/boots/n054{ + pixel_x = 29 + }, +/obj/structure/closet/secure_closet/smartgunner{ + req_access_txt = "14;40"; + req_one_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"cB" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"cD" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/storage/box/co2_knife{ + pixel_x = 3; + pixel_y = 13 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"cG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"cH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"cJ" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"cL" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"cR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; + name = "dip cup"; + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"cS" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "\improper Platoon Medic Office"; + req_one_access = list(); + req_one_access_txt = "8" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"cT" = ( +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"cU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"cZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"dd" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"de" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"dg" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"di" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"dj" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"dl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/coffee{ + pixel_x = -19 + }, +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"dm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"dn" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"dr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"ds" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/obj/item/tool/wirecutters{ + pixel_y = -6 + }, +/obj/item/device/multitool{ + pixel_x = -10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"dt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"dv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"dA" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"dB" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"dE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"dG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"dH" = ( +/obj/item/bedsheet/brown, +/obj/structure/bed, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_commander_rooms) +"dJ" = ( +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"dO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"dP" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"dX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"ea" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"eh" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/m41aMK1{ + current_rounds = 0; + pixel_x = -5 + }, +/obj/item/ammo_magazine/rifle/m41aMK1{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/m41aMK1{ + current_rounds = 0; + pixel_x = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"ek" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/golden_arrow/firingrange) +"eo" = ( +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"eu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"ey" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 8; + name = "\improper Synthetic Preperations"; + req_one_access = list(36) + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + indestructible = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/synthcloset) +"eB" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"eH" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"eJ" = ( +/obj/structure/machinery/power/apc/almayer, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"eL" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/cryo_cells) +"eR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"eT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"eU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"eY" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/hangar) +"fe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"ff" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"fg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm/directional{ + dir = 10 + }, +/area/golden_arrow/briefing) +"fh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_sergeant) +"fl" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"fm" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/golden_arrow/engineering) +"fo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"fp" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"fq" = ( +/obj/structure/machinery/conveyor{ + dir = 10 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/supply) +"ft" = ( +/obj/structure/curtain/red, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"fv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"fx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"fy" = ( +/obj/structure/platform, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut/alt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"fF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"fJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"fL" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/megaphone, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"fO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "\improper Medical Subsection"; + req_one_access = list(); + req_one_access_txt = "8" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"fW" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"fX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"fY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + req_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"gd" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"gf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"gg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"gh" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"gn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/synthcloset) +"gp" = ( +/obj/structure/surface/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/platoon_commander_rooms) +"gq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"gt" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"gx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_one_access = list() + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"gz" = ( +/obj/structure/ship_ammo/rocket/widowmaker, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"gA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"gB" = ( +/obj/structure/machinery/telecomms/relay/preset/tower, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"gD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"gE" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/supply) +"gG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"gH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"gI" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight/lamp/on{ + pixel_y = 13 + }, +/obj/item/weapon/straight_razor{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"gL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"gM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"gQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"gS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"gT" = ( +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/supply) +"gW" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"ha" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"he" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"hk" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"ho" = ( +/obj/structure/machinery/autodoc_console{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"hq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"hy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"hA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"hC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/smartgun_battery{ + pixel_x = 4; + pixel_y = -5 + }, +/obj/effect/spawner/random/powercell{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_two) +"hD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/firingrange) +"hF" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"hG" = ( +/obj/structure/machinery/medical_pod/autodoc{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"hL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/sign/safety/electronics{ + pixel_x = 31; + pixel_y = 6 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 31; + pixel_y = -6 + }, +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"hM" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/firingrange) +"hN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"hQ" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"hR" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"hS" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/platoon_commander_rooms) +"hU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/item/device/flashlight{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/tool/warning_cone, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"hW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"ie" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"if" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"ik" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"il" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"ip" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_1"; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/cryo_cells) +"iy" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"iA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"iC" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = -25 + }, +/obj/structure/sign/safety/west{ + pixel_x = 3; + pixel_y = -25 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"iE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"iF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"iG" = ( +/obj/structure/machinery/door/poddoor/almayer/open, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/prep_hallway) +"iK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"iL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"iN" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"iQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"iR" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_commander_rooms) +"iX" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"jb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"jc" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/prep_hallway) +"je" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"jf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"jg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"jj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"jl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"js" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/largecrate/supply/ammo/m41amk1, +/obj/structure/largecrate/supply/ammo/m41amk1{ + pixel_x = 3; + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"jt" = ( +/obj/structure/target, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/golden_arrow/firingrange) +"jy" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/computer/station_alert{ + dir = 8; + pixel_x = 15; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/synthcloset) +"jD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"jG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"jN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"jO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"jQ" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"jS" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"jU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"jV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "\improper Medical Subsection"; + req_one_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"kg" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/briefing) +"kh" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"kk" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"km" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"kq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"kr" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/cryo_cells) +"kw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"kB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"kF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder/industrial{ + pixel_y = 9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"kH" = ( +/obj/structure/machinery/computer/cryopod{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"kI" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"kO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/supply) +"kS" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/supply) +"kU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"kV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"kX" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"lc" = ( +/obj/structure/closet/cryo, +/obj/structure/closet/cryo, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"ld" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"lg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"lh" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"lm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"lo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"ly" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"lA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"lB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"lE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"lG" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"lK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"lQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"lS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_sergeant) +"lV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ + req_access = list(); + req_one_access_txt = "8;12;39" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"mb" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/closed/wall/almayer/outer, +/area/golden_arrow/supply) +"mc" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"me" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Briefing Room"; + req_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/briefing) +"mf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_x = -6; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_two) +"mk" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/briefing) +"ml" = ( +/obj/structure/ship_ammo/minirocket, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"mm" = ( +/obj/structure/cargo_container/lockmart/mid{ + layer = 3.1; + pixel_y = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"mo" = ( +/obj/structure/surface/rack, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"ms" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"mB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"mD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + req_one_access_txt = "8;12;39" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/squad_one) +"mR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"mW" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"mY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"mZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/supply) +"nb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Squad Two Armoury"; + req_one_access_txt = "8;12;40" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/squad_two) +"nd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"ng" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light, +/obj/structure/largecrate, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"ni" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"nj" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"nm" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ + layer = 2.1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"ns" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cryo, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"nx" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"ny" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/supply) +"nD" = ( +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"nF" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"nG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"nH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"nK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"nL" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"nM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/banners/united_americas_flag{ + pixel_x = -16; + pixel_y = 30 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"nN" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"nR" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/cryo_cells) +"nT" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/obj/structure/cargo_container/wy/right, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -22; + pixel_y = 3; + serial_number = 11 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"nV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"nY" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"oa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"oe" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"og" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"oh" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"ol" = ( +/obj/effect/landmark/observer_start, +/turf/open/floor/almayer/uscm/directional{ + dir = 8; + icon_state = "logo_c" + }, +/area/golden_arrow/briefing) +"oo" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_one_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"or" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/supply) +"ot" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/m41aMK1{ + pixel_y = 7 + }, +/obj/item/weapon/gun/rifle/m41aMK1, +/obj/item/weapon/gun/rifle/m41aMK1{ + pixel_y = -7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"ou" = ( +/turf/open/floor/almayer_hull{ + dir = 1; + icon_state = "outerhull_dir" + }, +/area/golden_arrow/hangar) +"ov" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/pillbottles, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"oA" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/machinery/door/window/westleft, +/obj/structure/window/reinforced/tinted/frosted, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_commander_rooms) +"oC" = ( +/obj/structure/plasticflaps, +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/supply) +"oH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"oJ" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"oK" = ( +/obj/structure/machinery/door/poddoor/almayer/open, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/prep_hallway) +"oL" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/platform_decoration, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"oM" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"oO" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"oQ" = ( +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/prop/helmetgarb/gunoil, +/obj/structure/surface/table/almayer, +/obj/structure/sign/poster{ + desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; + icon_state = "poster10"; + name = "Koorlander Gold Poster"; + pixel_x = 29; + pixel_y = 6; + serial_number = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"oW" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"oX" = ( +/obj/structure/largecrate/supply/generator, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"pf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/heap/empty, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_two) +"pl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"pt" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/prep_hallway) +"pw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"pB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"pD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"pF" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"pG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"pJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/golden_arrow/squad_one) +"pO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"pR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"pS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"pW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"pZ" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"qa" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/squad_one) +"qc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"qf" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/cryo_cells) +"qh" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"qi" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"qm" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/cryo_cells) +"qu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Briefing Room" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/briefing) +"qv" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"qw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"qz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"qA" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/platoon_sergeant) +"qD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = 27; + serial_number = 11 + }, +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"qE" = ( +/obj/structure/barricade/metal{ + dir = 8 + }, +/obj/structure/machinery/light, +/obj/structure/sign/safety/two{ + pixel_y = -22 + }, +/turf/open/floor/almayer, +/area/golden_arrow/firingrange) +"qI" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"qQ" = ( +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/platoon_sergeant) +"qR" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"qT" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 9 + }, +/area/golden_arrow/briefing) +"qU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"qW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 10 + }, +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"rb" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/cryo_cells) +"rd" = ( +/obj/structure/closet/cryo, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"rf" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"rh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"rk" = ( +/obj/structure/cargo_container/arious/left, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"rl" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 1 + }, +/area/golden_arrow/briefing) +"ro" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"rq" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"rr" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 5 + }, +/area/golden_arrow/briefing) +"rt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/tool/wet_sign, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"rx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"ry" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"rA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/janitorialcart, +/obj/item/tool/mop{ + pixel_x = -1; + pixel_y = -10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"rH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"rI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/toy/beach_ball/holoball, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 28; + pixel_y = 5; + serial_number = 12 + }, +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + name = "'Miss July' Pinup"; + pixel_x = 32; + serial_number = 16 + }, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_x = 6; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"rJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"rM" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"rV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm/directional, +/area/golden_arrow/briefing) +"rX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"rZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"sa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"sc" = ( +/obj/structure/pipes/vents/scrubber, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"sf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"sg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dorms" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/dorms) +"sk" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"sm" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 6 + }, +/area/golden_arrow/briefing) +"so" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"sv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"sy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/tool/warning_cone, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"sC" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/platoon_sergeant) +"sE" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"sI" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/cryo_cells) +"sN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"sO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"sR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"sS" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"sU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"sV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_two) +"sX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/clipboard{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/tool/pen{ + pixel_x = 12 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"sY" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/clothing/suit/storage/jacket/marine/service, +/obj/item/clothing/suit/storage/jacket/marine/service/tanker, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_commander_rooms) +"tb" = ( +/obj/structure/sign/safety/firingrange{ + pixel_x = -24; + pixel_y = 7 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -24; + pixel_y = -7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"tf" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/firingrange) +"ti" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"to" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ + layer = 2.1 + }, +/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ + layer = 2.1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"tr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"tv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"ty" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/pdt_kit{ + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_two) +"tA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"tB" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"tS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ + req_access = list(); + req_one_access_txt = "8;12;40" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"tT" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"tV" = ( +/obj/structure/ship_ammo/rocket/keeper, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"tX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"ua" = ( +/obj/item/tool/warning_cone{ + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"ub" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"ug" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"um" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/faxmachine/uscm/command/capt, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"uo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/supply) +"up" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"us" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"uu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"uw" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"uA" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"uE" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"uF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"uG" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"uH" = ( +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = -30; + pixel_y = 6; + serial_number = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"uO" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 11; + pixel_y = 5 + }, +/obj/item/paper_bin/uscm{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"uQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"uS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"uX" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"vb" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + layer = 2.0; + pixel_x = 12 + }, +/turf/closed/wall/almayer, +/area/golden_arrow/platoon_commander_rooms) +"vc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"vg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/supply) +"vk" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/briefing) +"vo" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"vp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"vt" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_commander_rooms) +"vA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Platoon Sergeant's Bunk"; + req_one_access_txt = "12" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"vB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"vF" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/squad_two) +"vG" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/pouch/electronics{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -7; + pixel_y = -8 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"vJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"vK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/supply) +"vL" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"vN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"vP" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"vS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"vU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"wa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"wc" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Platoon Commander's Quarters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoon_commander_rooms) +"wd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"wi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"wl" = ( +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"wn" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"wp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"wx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"wz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"wH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/item/device/walkman{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"wI" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"wJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/prop/magazine/book/bladerunner, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_x = 2; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"wK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"wN" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_x = -32 + }, +/obj/item/book/manual/robotics_cyborgs{ + pixel_y = 8 + }, +/obj/item/tool/wirecutters, +/obj/item/tool/weldingtool/hugetank, +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/synthcloset) +"wS" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"wV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Platoon Sergeant's Bunk"; + req_one_access_txt = "12" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoon_sergeant) +"wX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"xf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"xh" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"xm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"xo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"xx" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"xz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"xB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_y = 6 + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"xJ" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access = list() + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"xK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"xM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"xQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/galley{ + pixel_x = -19 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"xX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/dorms) +"yc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"ye" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/engineering) +"yg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/supply_drop/echo, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/supply) +"yj" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/machinery/vending/walkman, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"yo" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"ys" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"yt" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoon_sergeant) +"yv" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"yw" = ( +/obj/item/toy/deck/uno, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"yx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/computer/arcade, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"yy" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"yA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/squad_sergeant{ + req_access_txt = "32;39"; + req_one_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"yF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"yJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"yL" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"yM" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_x = -9; + pixel_y = -3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"yO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"yT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"yU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"yY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/bed/chair, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_sergeant) +"yZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"za" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"zk" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_one_access = list(); + req_one_access_txt = "8;12;39" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"zl" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"zn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"zt" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"zv" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"zy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"zA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"zD" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"zG" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"zI" = ( +/obj/structure/pipes/vents/pump, +/obj/item/tool/mop{ + pixel_x = -9; + pixel_y = 20 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"zJ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"zK" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 7; + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"zL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"zM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"zP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/firingrange) +"zV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"zY" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_one_access = list() + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"zZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"Ad" = ( +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Ap" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"As" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"Aw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Canteen" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/canteen) +"Ax" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Ay" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/prep_hallway) +"AA" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"AC" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/obj/item/stack/catwalk{ + pixel_x = 12; + pixel_y = -9 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"AG" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"AH" = ( +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"AK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"AL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"AO" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"AP" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ + layer = 2.1 + }, +/obj/structure/sign/safety/manualopenclose{ + layer = 2.11; + pixel_x = 12; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"AQ" = ( +/obj/structure/cargo_container/lockmart/right{ + layer = 3.1; + pixel_y = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"AY" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"Bd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"Bf" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"Bg" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Bh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/coffee/simple, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"Bi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Bj" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/almayer, +/area/golden_arrow/medical) +"Bo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Bq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Br" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"Bt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"Bu" = ( +/obj/item/ammo_magazine/sentry{ + layer = 3.01 + }, +/obj/item/defenses/handheld/sentry, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"Bv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + name = "Damage Control Locker"; + req_one_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"Bw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/rewire{ + pixel_y = -29 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Bz" = ( +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"BA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -3 + }, +/obj/item/storage/toolbox{ + pixel_y = -5 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"BC" = ( +/obj/structure/target, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/golden_arrow/firingrange) +"BD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"BK" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"BM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/cryo_cells) +"BO" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"BP" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"BW" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -19; + pixel_y = 6 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -31; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"BY" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"BZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Cb" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/trash/semki{ + layer = 2; + pixel_x = -13; + pixel_y = 14 + }, +/obj/item/prop/magazine/boots/n054{ + pixel_x = 29 + }, +/obj/item/prop/magazine/dirty/torn{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/tool/hand_labeler{ + pixel_x = -3; + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"Ce" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/item/storage/toolbox/electrical, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"Cf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"Cg" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Cl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"Cn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"Co" = ( +/obj/structure/barricade/plasteel{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"Cr" = ( +/turf/open/space/basic, +/area/space) +"Cs" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Cu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Sergeants Room"; + req_one_access_txt = "12;32" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoon_sergeant) +"Cv" = ( +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"Cw" = ( +/obj/structure/machinery/body_scanconsole{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"Cy" = ( +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"CA" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"CC" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/flamer_tank, +/obj/item/ammo_magazine/flamer_tank, +/obj/item/weapon/gun/flamer{ + current_mag = null; + pixel_y = 4 + }, +/obj/item/device/motiondetector, +/obj/item/attachable/attached_gun/extinguisher/pyro{ + layer = 3.01 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"CF" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"CK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"CN" = ( +/obj/structure/cargo_container/lockmart/left{ + layer = 3.1; + pixel_y = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"CP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"CS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/computer/supply_drop_console/limited/alternate, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"CX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"CZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + name = "Midway Remote Control Console"; + shuttleId = "dropship_midway" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Db" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/golden_arrow/squad_two) +"Dc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Df" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/misc/flares/empty{ + pixel_x = -1; + pixel_y = 16 + }, +/obj/item/device/flashlight/flare{ + pixel_x = 10 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"Dg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"Dl" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Dw" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Dx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/item/bananapeel{ + desc = "Ew."; + gender = "plural"; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "\improper finger nails"; + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/ashtray/glass{ + pixel_x = 3; + pixel_y = -4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"DB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/platoon_commander_rooms) +"DC" = ( +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"DE" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"DF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"DM" = ( +/obj/structure/machinery/power/apc/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"DR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"DX" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"DY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"Ea" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Eb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"Ei" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"Eo" = ( +/obj/structure/platform_decoration, +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"Ep" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"Er" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Eu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Ey" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"EA" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"EB" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"ED" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"EF" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"EI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber, +/obj/structure/sign/safety/bathunisex{ + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"EJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"EK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/cryo_cells) +"EN" = ( +/obj/structure/barricade/metal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/firingrange) +"EO" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"EQ" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"EX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"EZ" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Fa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Canteen" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/canteen) +"Fe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_y = 4 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"Ff" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"Fg" = ( +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"Fi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/storage/box/bodybags, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"Fj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/ammo_box/magazine/misc/mre{ + pixel_x = -23; + pixel_y = -11 + }, +/obj/item/facepaint/black, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Fl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/supply) +"Fu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Fw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"Fy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_two) +"Fz" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"FE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"FI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"FK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/firingrange) +"FN" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"FP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"FR" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"FS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"FT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"FV" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_x = 18; + pixel_y = 3 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 18; + pixel_y = 5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"FW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"Gf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/prop{ + dir = 8; + layer = 3.2; + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = 27; + serial_number = 11 + }, +/obj/item/trash/pistachios{ + layer = 2; + pixel_x = 6; + pixel_y = -6 + }, +/obj/structure/machinery/recharger{ + layer = 3.1; + pixel_y = 22 + }, +/obj/item/ammo_magazine/rifle/incendiary{ + current_rounds = 0; + desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; + pixel_x = 10; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"Gg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Gi" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 14; + pixel_y = -28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"Gk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Gl" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/prep_hallway) +"Gq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Gs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Gu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Gv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Gy" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Gz" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"GA" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"GG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"GK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + id = "Delta_1"; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/cryo_cells) +"GL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"GN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"GO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/synth_storage{ + pixel_x = -20 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"GQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"GU" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"GV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/golden_arrow/platoon_commander_rooms) +"GY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/briefing) +"Hc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + dir = 4; + name = "Lower Deck Waste Tank Control" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"Hd" = ( +/obj/structure/closet, +/obj/structure/sign/banners/united_americas_flag{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"Hh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"Hj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/CICmap{ + pixel_y = 29 + }, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"Hk" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/clothing/accessory/storage/droppouch, +/obj/item/clothing/accessory/storage/droppouch, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/supply) +"Hm" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Hu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/target, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/golden_arrow/firingrange) +"Hv" = ( +/obj/item/frame/camera{ + desc = "The Staff Officer insisted he needed to monitor everyone at all times."; + layer = 2.9; + name = "broken camera"; + pixel_x = -7; + pixel_y = -6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Hw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + req_one_access_txt = "8;12;40" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/squad_two) +"Hx" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light, +/obj/item/device/cassette_tape/aesthetic, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"HG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"HH" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"HK" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/cryo_cells) +"HQ" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"HR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/golden_arrow/hangar) +"HS" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"HT" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"HV" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"HX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Ib" = ( +/obj/structure/barricade/metal{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/one{ + pixel_y = 22 + }, +/turf/open/floor/almayer, +/area/golden_arrow/firingrange) +"Ii" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/cryo_cells) +"Is" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/golden_arrow/firingrange) +"It" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ + autoname = 0; + dir = 1; + req_one_access = list() + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"Iw" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Iy" = ( +/obj/structure/computer3frame, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"IC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"ID" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoon_sergeant) +"IE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/tool/warning_cone{ + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_two) +"IH" = ( +/obj/structure/barricade/metal{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/firingrange) +"IP" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"IR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"IS" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"IT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/prop/almayer/hangar_stencil, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"IU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"IW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"IX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"IZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Jc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Jg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_commander_rooms) +"Jj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/golden_arrow/firingrange) +"Jk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"Jn" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/prop/helmetgarb/flair_io{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/tool/hand_labeler{ + pixel_y = 14 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Jp" = ( +/obj/structure/machinery/conveyor{ + dir = 9 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/supply) +"Jq" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Jv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"JD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"JI" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"JJ" = ( +/obj/structure/machinery/sleep_console{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"JL" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"JP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"JT" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"JU" = ( +/obj/structure/machinery/cm_vending/clothing/medic, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"JZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Kb" = ( +/obj/structure/surface/rack, +/obj/item/tool/screwdriver, +/obj/item/prop/helmetgarb/gunoil, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"Kd" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Ke" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Ki" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Kl" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"Kp" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/m41aMK1{ + pixel_y = 7 + }, +/obj/item/weapon/gun/rifle/m41aMK1, +/obj/item/weapon/gun/rifle/m41aMK1{ + pixel_y = -7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"Ku" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_one_access = list(); + req_one_access_txt = "8;12;40" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"Kv" = ( +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Kx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"KD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"KH" = ( +/obj/vehicle/powerloader, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"KK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"KL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"KM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"KO" = ( +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"KP" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"KQ" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"KU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"KY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"KZ" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/cmcap{ + layer = 4.1; + pixel_x = -1; + pixel_y = 22 + }, +/obj/item/toy/plush/therapy/red{ + desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; + force = 15; + layer = 4.1; + name = "Sergeant Huggs"; + pixel_y = 15; + throwforce = 15 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"La" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"Ld" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"Lf" = ( +/obj/effect/landmark/start/marine/tl/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Lg" = ( +/obj/docking_port/stationary/marine_dropship/golden_arrow_hangar, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"Ll" = ( +/obj/structure/ship_ammo/minirocket/incendiary, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"Ln" = ( +/obj/structure/ship_ammo/rocket/banshee, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"Lo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Ls" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/alpha{ + density = 0 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"Lx" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"LC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/supply) +"LE" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"LF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/squad_one) +"LH" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"LJ" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 8 + }, +/area/golden_arrow/briefing) +"LK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"LL" = ( +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/start/marine/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"LQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"LS" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"LT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"LZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Mc" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Md" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"Me" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/squad_two) +"Mf" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 8 + }, +/obj/item/notepad, +/obj/item/maintenance_jack, +/obj/structure/closet, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/storage/photo_album, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/synthcloset) +"Mi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Mj" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"Ml" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/rad{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"Mn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/cryo_cells) +"Mu" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + name = "\improper Engineering Airlock"; + req_one_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"Mz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"MB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoon_commander_rooms) +"MC" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"MI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"MJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"MK" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/platoon_commander_rooms) +"ML" = ( +/obj/structure/largecrate, +/obj/structure/largecrate{ + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/supply) +"MN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"MW" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"MZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/dorms) +"Na" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Ne" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/briefing) +"Nf" = ( +/turf/closed/wall/almayer/white, +/area/golden_arrow/medical) +"Ng" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Nk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"No" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"Np" = ( +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"Nr" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/prop_gun/anti_tank, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"Nx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"Nz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"NB" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 6; + pixel_y = -29 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -7; + pixel_y = -3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"ND" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/obj/item/ammo_magazine/sentry{ + layer = 3.01 + }, +/obj/item/defenses/handheld/sentry, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"NE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/structure/mirror{ + pixel_y = 21 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/platoon_commander_rooms) +"NI" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake{ + density = 0; + pixel_x = -30 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/synthcloset) +"NO" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"NT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"NU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ + autoname = 0; + dir = 1; + req_one_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"NV" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 6; + pixel_y = -29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"NZ" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"Ob" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"Oc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Od" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/briefing) +"Of" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/firingrange) +"Oj" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"Ol" = ( +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/structure/janitorialcart, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Op" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"Os" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Oy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/golden_arrow/firingrange) +"Oz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"OA" = ( +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"OC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light, +/obj/item/device/cassette_tape/pop3{ + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_commander_rooms) +"OG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"OH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"OI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/item/tool/wrench, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"OJ" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"ON" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"OU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/squad_two) +"OX" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 4 + }, +/area/golden_arrow/briefing) +"OY" = ( +/obj/structure/ladder{ + height = 2; + id = "req1" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/supply) +"OZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"Pc" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/tool/kitchen/tray{ + pixel_x = 16; + pixel_y = -10 + }, +/obj/item/storage/box/cups{ + pixel_x = 11; + pixel_y = -9 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 18; + pixel_y = 3 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 18; + pixel_y = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"Pe" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Pf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/bedsheetbin{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"Ph" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Pl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Pm" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/special{ + pixel_y = 8 + }, +/obj/item/storage/box/nade_box{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/ammo_magazine/shotgun/buckshot/special, +/obj/item/device/motiondetector, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"Pp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Squad One Armoury"; + req_one_access_txt = "8;12;39" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/squad_one) +"Pr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"Ps" = ( +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/plasteel{ + amount = 40; + pixel_x = 7; + pixel_y = 6 + }, +/obj/structure/closet/crate/construction, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"Pt" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Py" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"PA" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/special{ + pixel_y = 10 + }, +/obj/item/storage/box/nade_box{ + pixel_x = 2; + pixel_y = -4 + }, +/obj/item/ammo_magazine/shotgun/buckshot/special, +/obj/item/device/motiondetector, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"PF" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"PG" = ( +/obj/structure/machinery/computer/arcade{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"PI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/firingrange) +"PL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"PQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/platoon_sergeant) +"PS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/firingrange) +"PW" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Private Briefing Room"; + req_access = list(); + req_one_access_txt = "12;19;32" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/briefing) +"PY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"PZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/cassette_tape/nam{ + layer = 2.9; + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"Qc" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 16 + }, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Overwatch" + }, +/obj/item/clothing/glasses/hud/health{ + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Qe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/ammo_magazine/pistol{ + current_rounds = 0 + }, +/obj/item/weapon/gun/pistol/m4a3{ + current_mag = null + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_sergeant) +"Qi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/conference_room{ + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"Qk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Ql" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"Qq" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + name = "\improper Engineering Airlock"; + req_one_access = list() + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"Qt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"Qu" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Qw" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/squad_two) +"Qx" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Qz" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"QD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"QE" = ( +/obj/structure/machinery/chem_dispenser, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"QI" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"QJ" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/squad_one) +"QL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"QM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"QN" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"QO" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"QP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"QQ" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_commander_rooms) +"QS" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"QT" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/cryo_cells) +"QW" = ( +/obj/structure/cargo_container/wy/left, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 6; + pixel_y = 8; + serial_number = 12 + }, +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + name = "'Miss July' Pinup"; + serial_number = 16 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"QX" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"Ra" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Rc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Supply Office" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/supply) +"Rd" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/golden_arrow/supply) +"Rg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Rh" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"Ri" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/firingrange) +"Rl" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = -10 + }, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 7; + pixel_y = -2 + }, +/obj/item/storage/box/cups{ + pixel_x = -5; + pixel_y = -10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Rr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Rt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Rv" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/canteen) +"Rx" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -11; + pixel_y = -10 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Ry" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 7 + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -4; + pixel_y = 32; + serial_number = 11 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"RD" = ( +/obj/effect/landmark/late_join, +/obj/effect/landmark/start/marine/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"RK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"RM" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"RN" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care."; + pixel_y = -9 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"RO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/squad_sergeant{ + req_access_txt = "32;40"; + req_one_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"RP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"RT" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"RW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"RY" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"Sc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"Sd" = ( +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"Si" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Sj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"Sl" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 11; + pixel_y = -10 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Sn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"So" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Sq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Su" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = -10 + }, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/storage/box/cups{ + pixel_x = -5; + pixel_y = -10 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Sw" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Sy" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"SB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"SC" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/classic{ + pixel_x = 10; + pixel_y = 3 + }, +/obj/item/prop/magazine/boots/n054{ + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"SE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/target, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/golden_arrow/firingrange) +"SI" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"SL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"SO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"SR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"ST" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/flare{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/item/device/flashlight/flare{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"SV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/prop/magazine/book/theartofwar, +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/tool/pen{ + pixel_x = 12 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"SY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"Tb" = ( +/obj/item/toy/deck, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Tc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/closed/wall/almayer/white, +/area/golden_arrow/medical) +"Td" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Tg" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"Tj" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"Tk" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"To" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/cryo_cells) +"Tr" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Tu" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -19; + pixel_y = 6 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -31; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Tx" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Ty" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/squad_one) +"Tz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"TC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"TD" = ( +/obj/item/tool/crowbar/red{ + pixel_x = -13; + pixel_y = -13 + }, +/obj/item/stack/cable_coil{ + pixel_x = 7 + }, +/obj/item/tool/wirecutters{ + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"TI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_y = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"TK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"TN" = ( +/turf/closed/wall/almayer/reinforced, +/area/golden_arrow/engineering) +"TO" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"TP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"TT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"TW" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/synthcloset) +"TY" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/canteen) +"Ub" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"Uf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"Uh" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/briefing) +"Ui" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/canteen) +"Uj" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoon_sergeant) +"Uk" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"Um" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/clothing/synth{ + density = 0; + pixel_x = -30 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/synthcloset) +"Uv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"UI" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"UK" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/m4ra/pve{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"UN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/line_nexter{ + dir = 1; + id = "MTline"; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/canteen) +"UO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"UT" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"UX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Va" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Vc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Ve" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/item/storage/pill_bottle/tramadol/skillless{ + layer = 2.9; + pill_type_to_fill = null; + pixel_y = 14 + }, +/obj/structure/pipes/vents/pump, +/obj/structure/surface/rack{ + density = 0; + pixel_x = 26 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/tool/soap, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Vj" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"Vp" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/dorms) +"Vq" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"Vr" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"Vu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Supply Bay" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/supply) +"Vv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Vz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"VG" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/firingrange) +"VJ" = ( +/obj/structure/ladder{ + height = 1; + id = "req1" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/supply) +"VK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/smartgunner{ + req_access_txt = "14;39"; + req_one_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"VL" = ( +/obj/structure/closet/secure_closet/platoon_sergeant, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"VQ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"VT" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/stamp/denied{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/device/eftpos{ + eftpos_name = "Cargo Bay EFTPOS scanner"; + pixel_x = -10 + }, +/obj/item/tool/stamp/ro{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/storage/fancy/cigar{ + pixel_x = 6 + }, +/obj/item/ashtray/glass{ + pixel_x = 11; + pixel_y = 9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"VX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"Wf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Wg" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/platoon_commander_rooms) +"Wj" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/dorms) +"Wl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Wm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Wo" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"Wp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"Wr" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Ws" = ( +/obj/item/tool/warning_cone, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Wu" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"Wv" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Wy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"WA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/largecrate, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"WG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/supply) +"WK" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/flamer{ + current_mag = null; + pixel_y = 4 + }, +/obj/item/ammo_magazine/flamer_tank, +/obj/item/ammo_magazine/flamer_tank, +/obj/item/device/motiondetector, +/obj/item/attachable/attached_gun/extinguisher/pyro{ + layer = 3.01 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"WP" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/briefing) +"WY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Xa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Xb" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/folder/yellow, +/obj/item/book/manual/engineering_construction, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"Xc" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Xd" = ( +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"Xj" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -20 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"Xs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Xu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Firing Range" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/firingrange) +"Xv" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/golden_arrow/platoon_commander_rooms) +"Xw" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Xy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Xz" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/golden_arrow/platoon_sergeant) +"XI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"XJ" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/briefing) +"XL" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 14; + pixel_y = 24 + }, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -7; + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"XN" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"XP" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 7; + pixel_y = -28 + }, +/obj/structure/reagent_dispensers/ammoniatank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"XQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"XR" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/ceramic_plate{ + pixel_y = 19 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 21 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 23 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"XV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Ya" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/squad_two) +"Yc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/ammo/m41amk1, +/obj/structure/largecrate/supply/ammo/m41amk1{ + pixel_x = 3; + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"Yd" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/item/folder/black_random, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_sergeant) +"Ye" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"Yh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Yj" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/hangar) +"Yk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/firingrange) +"Yl" = ( +/obj/structure/machinery/cm_vending/gear/synth{ + density = 0; + pixel_x = -30 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/synthcloset) +"Ym" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"Yp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"Ys" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/item/trash/ceramic_plate{ + pixel_x = 6; + pixel_y = 19 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 6; + pixel_y = 21 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 5; + pixel_y = 23 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Yv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Yw" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"Yx" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_x = -6; + pixel_y = 19 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = -6; + pixel_y = 21 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = -5; + pixel_y = 23 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"YA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/briefing) +"YB" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/engineering) +"YG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"YK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"YO" = ( +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"YP" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/briefing) +"YQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"YX" = ( +/obj/effect/landmark/start/marine/medic/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Zb" = ( +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"Zd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"Zf" = ( +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Zk" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/prep_hallway) +"Zl" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"Zw" = ( +/obj/structure/largecrate/supply/generator, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"ZB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"ZC" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/squad_one) +"ZI" = ( +/obj/effect/landmark/start/marine/smartgunner/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"ZJ" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/synthcloset) +"ZL" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"ZM" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/canteen) +"ZQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/firingrange) +"ZR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"ZU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/supply) +"ZV" = ( +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"ZX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/engineering{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) (1,1,1) = {" -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcacacaouououcacacaouououcacacaouououcacacaouououcacacaCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcacacacacacaeHeHeHcacacaeHeHeHcacacaeHeHeHcacacaeHeHeHcacacacacacaCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrYwscwzwzZLZLZLZLZLZLyZZLZLZLZLZLyZZLZLZLZLZLyZZLZLZLZLZLZLZLZLZLYwCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrYwMNDcDcDcDcQkDcDcDcDcDcDcDcDcDcDcDcDcDcDcDcDcQkDcDcDcDcDcDcDcXsYwCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrYwwzwzHQZLZLplKOKOKOKOZLnmAPZLKOKOKOZLtoAPZLKOzyKOKOZLZLZLbfZLQNYwCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcacacacacacacacacaugplKOKepDVvcLRTmWOJcLRTmWOJcLRTmWKeYQXyhShShShShShSMKMKCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcaLnXdwzLnXdcacacawzGsKOalZLHVdJdJdJdJdJdJdJdJdJdJdJTxALfxhSCZumBZBzhSMKMKMKMKMKCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcawzwzjlSoUXcaTulBSoFPMITPRgcpdJdJdJdJdJdJdJdJdJdJdJctIZbqvbaTQOBzBzwcXvBZvtsYMKMKMKMKCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcagzXdJZKORrYwwzIWKOzyRrRrKOHVdJdJdJdJdJdJdJdJdJdJdJqIzyJZboQcSViABzhSiRiRiRiRhSNEoAMKCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcawKwzJZKOEaYwZLIWNkJDRrQWrMnTdJdJdJdJdJdJdJdJdJdJdJrfplJZboBzBzBzLEhSBzBzBzBzMBDBQQMKCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcagzXdJZRrKOYwZLbynNYmBfXddPJIdJdJdJdJdJdJdJdJdJdJdJONplSRhSMcGVLZtvhSqUOCJgdHhSWggpMKCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcaPtwzfeKxKxcaZLGNeUqiuaqiqiPydJdJdJdJdJdJdJdJdJdJdJJqplSRhSbobDhShShShShShShShShShSMKMKCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcatVXdwztVXdcaZLkUMNDcDcXsWrHVdJdJdJdJdJdJdJdJdJdJdJarzypOayeuHRHHpDiXRKpDbupDoWpDpDwiYwCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcacacacacacacahkGNqiWuqieUqifldJdJdJdJdJdJdJdJdJdJdJLxOzRtDcDcpRDcDcErErErDcDcDcDcDcTdYwCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcamlmlPtmlmlcaZLbyXdXdXdqwXdaBdJdJdJdJdJdJdJdJdJdJdJTxaNOHRgieRgRgRgRgvPRgRgRgRgRgvPRgYwCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcawzwzjlSoUXcaBWJPhFDMBwzyKOEZdJdJdJdJdJdJdJdJdJdJdJJTKOSRNfNfNfNfNfNfNfgEgEgEgEgEgEgEkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcaLlLlJZKORrYwZLJPLoYjYjSLRrHVdJdJdJdJdJLgdJdJdJdJdJqIKOfxNfJUuFcHovZRNfgEgEiQsXWoqzcokSRdRdRdRdkSkSeBCSkSkSRdRdRdRdkSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcawKwzSRKOEaYwZLIWKOKHKHBPRrWvdJdJdJdJdJdJdJdJdJdJdJLxKOSRBjCvOAcJOAQENfgEXjCntAiFZdOYkSRdRdRdRdkSVJuovKygmbRdRdkSkSkSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcaLlLlSRKOKOYwZLbyXdXdXdqwXdaBdJdJdJdJdJdJdJdJdJdJdJTxEaClcSCvOAOAOAcZNfgEQtVTgERcgEgEkSRdRdRdRdkScoWGaAaXkSRdRdkSorkSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcawzwzwxKxkVcawzCKqiqiqieUqiEZdJdJdJdJdJdJdJdJdJdJdJJqEaJZBjdddmdtOAdENfgEgEgEgEMdWAgEkSkSkSkSkSkSkSkSkSkSkSkSkSkSorkSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcamlmlPtmlmlcawzkUheDcDcTdlhHVdJdJdJdJdJdJdJdJdJdJdJarKOJZBjSzMjeaeJMjNfgEHkMLMLkODCCyoCgTgTgTgTgTgTgTgTgTgTgTgTgTfqkSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcacacacacacacawzAKeUqiqiqikmWvdJdJdJdJdJdJdJdJdJdJdJLxaNffNfNfNffONfNfNfgEOZnynyvgDCsakSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcawzEXgDhAXdXdXdHSdJdJdJdJdJdJdJdJdJdJdJONKOSRBjfYgGPrhohGNfgEyUSBuSRWRWnDoCgTgTgTgTgTgTgTgTgTgTgTgTgTJpkSCrCrCrCrCrCrCrCrCrCrCrCrCrCraSaSaSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcaZLJPRrzyKOTDKOEZdJdJdJdJdJdJdJdJdJdJdJJTKOSRBjhWOAPYiyjbTcgEyUnxngLCmZgEkSkSkSkSkSkSkSkSkSkSkSkSkSkSorkSCrCrCrCrCrCrCrCrCrCrCrCrCrCraSgBaSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcawzIWKOzyKOKOKOcldJdJdJdJdJdJdJdJdJdJdJarKOjeNfFiOAPrhohGNfgEZUdeTNTNTNTNTNTNTNTNTNTNTNTNTNTNTNTNTNkSorkSCrCrCrCrCrCrCrCrCrCrCrCrCrCraSaSaSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcawzKxpDGQYhsypDjOdJdJdJdJdJdJdJdJdJdJdJvSpDVvBjjfjgjGjUjbNfgEFlsaEBFzCXTNOlxJzYTNfmTNkhCevcQzNZNZTNYBYBYBYBCrCrCrCrCrCrCrCrCrCrCrCrCraSaSaSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrcacacaugplKOPhwzaBdJdJdJdJdJdJdJdJdJdJdJTxZLSRBjoJCwxzJJFNNfgElAQPEBAHIPgWzIOczGTNfmTNqWfvililililTNVqbgroYBCrCrCrCrCrCrCrCrCrCrCrCrCraSaSaSCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCsCsCsCsCsCcacacawzpluGITWsndbQdBdAAGghdBLHAGghdBdAmBSopGNfNfNfjVNfNfNfgEVubZyeAHgfItjDzAFfTNfmTNGUSjwawaSnSnMuYvkkrqYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCXzsCSCfWgIcaZLZLZLplKOKOzDKOKOaNlglgaNzDaNlglglgzDaNaNlglgzJKOlmcBKOKOawkwErQqGvBdTNbOgxGyTNfmTNMlTKsEoOjSsETNifGujQYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCXzsCKvdrBKcaCNmmAQyODcQkDcDcDcDcDcDcDcQkDcDcDcDcDcDcDcDcDcDcEylylEDcDcDcqcRrTNLTCPTNTNTNTNTNfmTNAOMWNxACvGzlTNISGuGAYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCsCsCsCvAsCcarkaxxhwzwzlmZLoeadeYeYeYeYMCeYeYeYeYbfeYeYeYeYbflgZLwzwzbfZLGqRtQqGvPLwIvoCXkHTNTNTNEAQLsEHTdssETNYOGudgYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCsCLssClSmcZJZJZJZJZJoKiGoKXJXJXJagagXJXJXJagagXJXJXJagagXJXJmeXJXJXJYPYPYPYPYBHchyGvGvLakBHhycNzycIRYeahhUwHQqcjvJaGYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCVLKQUjlSKQZJwNnFTWZJwpSOmskgYAAsAsAsVrdvVrFTWPWPaIWPWPEofyVrGYyvXJXJninMoaqhYBlKAHIPIPusRPNUSnrtaqcGSnwawaSnTNVqoXZwYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCsCsCsCftbwZJYleTyJeygSFumsquOdAsNpqTrlrrNpFTWPWPVXWPWPObfLNpNpAsXJAsryEbqvVrYBkFZXjNIygthLYBVqXPUffFuXyoHxXNYBYBYBYBYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCsCQXTjgQKQZJUmhqbaZJGOSYiNXJSyVrNpLJolOXNpFTWPWPVXWPWPObsSUhNpNePWmkryEbqvVrYBYBYBYBYBYBYBYBYBYBBvgWYBYBYBYBYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCwJrHSIApQSZJNIEpjyZJiNiKpZkgmkVrrJfgrVsmrJsvWPWPVXWPWPObsSNprJtTXJuwNpnYNpVrYPCrCrCrCrCrCrYBRNbBVjVjdjyyYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCVQdrKvuOgAZJgnNoMfZJiNiKpZquvkAsAsVrVruAAsvBJkKYvNKYKYoLbSAsAsIXXJAsrJNpwSYPYPCrCrCrCrCrCrYBtBEJXbcwfFmoYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCqAwVytqAqAZJZJZJZJZJiNSOiNVpVpVpVpVpVpVpVpVpVpVpVpUiUiUiUiUiUiUiUiUiAsAsYPYPYPCrCrCrCrCrCrYBRMzLBtBtuQanYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCzVdrKvQuRhqAhNHjZBqAvLzMwpVpKZCTEFTkHdrXLdEQyxTgSdUiUinKoMPcyMGztXUiRvsIsIsIsIsIsICrCrCrCrYBYBoofpPspSYBYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCNHtryYpFKvNgKvKvKQqAAYiKwpVpgLJLJLwlwlwlpwBgBowlCbUiYKCfCFFVDlDwUvDFUiKiKiVeHKDXsICrCrCrCrCrYBYBYBYBYBYBCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCqAkIYdFjQefhKvKvUKqAwpiKiNVpskTbaOvUFEFIWfFEUOFRGfUiJvikdOZfZfGkGLoHUixKHvHGipHXsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCdlHmIwJnCgTzKvDYKlqAwpSOiNVpuHKKywsRwlBopwwlwlwlMJUiNObROsZfZfOsPeNOUiSwSwPlHKQxsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCBhDYBOBOqQPQDggMqAqAcUSYsNVpVpJLVzMZxXldnjEQyjSsZnUiQIRlRxZfZfSlSuUbUiHKHKGKHKHKsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsCqAqAqAqACuIDqAqAqAjcloSOVaZkVpVpVpsgWjVpVpVpVpVpVpUiXRKdYsZfZfYxrxXRUiFWgHGgEInssICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrptzKFSogOjEDzMQirAFwJcEuiKWmJcwdOGxmSYEDyskXOjFSUTaQZMXwCsLSsOZflGupdnZMeRQDsUmYnssICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrptpWXIXITCTCTOTCXIXInHXIwnXITCXQXIXITOTCXIvpXIXQXIXIFaNTNTNTQMQMQMBqQMAwbbbbRaznHKsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrptiCohIUwpeoKUGiwpjjGGWliKgqGGKDiNwpyTeoGiQliNPFwpwpZMKMUNTYTYTYTYTYubZMdGdGdGBirdsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrQwQwQwMeMeMeMenbOUMeMeMeZkuuSOVajcZCZCZCPpQJZCZCZCZCZCZCUiUiqRqRqRqRqRqRUiUixQScScScrdsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrQwotNDZlMeBAlQvFYaZbPGMeMeWYsoiLZCZCTIFeLFqazZRyZCcyyLKpHKHKHKHKHKHKHKHKHKHKHKBMMnEKHKsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrQwCCFgDEMexBFgFgmRFggdjsMeiNSOiNZCYccscTnGcTcTLKZChacTWKHKHKXcXcXcHKXcXcXcHKEOBrScSclcsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrQwPmFgDRHwYpYpIEhCNrdXQwMewpiKwpZCTyafcDPZcRsfsfmDWpcTPAHKAxYGQDQDzakqkqQDhRQDQDQDfordsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrQwotgdgdMegdFgtymfpfpBqDMeiNiKiNZCczcTaJDxUkcToQZCEiBuKpHKAxyFZVZVSiVcZVZVVcSiZVZVICrdsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrQwQwQwQwQwSTFgFgFysVFgcAMewpXViNZCVKcTiEUIcTcTOITyTyTyTysIAxyFMiHKHKHKztMiHKHKHKztICHKsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrQwDfgdFgDRYpTTROMeiNXViNZCyAxfxxcTcTcsrITyCrCrCrsIHKLQZVTrNaXLZVZVAAnVVcZVICrdsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrQwMetSKutSDbMeMeMewpiKwpTyTyTypJlVzklVTyTyCrCrCrsIPffXrhXadGfJxMrhXaXaXaxMICrdsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrblblblblMeMeMeMeMeOfOfOftbiKwpGlCrCrTyTyTyTyTyCrCrCrCrsIKPtiggNVdiNBtiSqNVdiNVrZBirdsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrblOyVGVGjtVGPSIbtfhQuEPIxoWypZptCrCrCrCrCrCrCrCrCrCrCrsIHKToToHKHKHKToToHKHKHKToToHKsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrblSEhDRiJjhDceENhMwXBDXuRYAdmsptCrCrCrCrCrCrCrCrCrCrCrsIIiBYbhkrHKQTBYZIeLHKQTLfBYeLsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrblzvzvzvBDzvzvCozvZQMzOfiNOpwpGlCrCrCrCrCrCrCrCrCrCrCrsInRBYRDqmHKnRBYZIqmHKnRLfYXqmsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrblHuzPYkIszPFKIHhMwXnLOfohCAiNGlCrCrCrCrCrCrCrCrCrCrCrsIQTcrcreLHKIicrcrkrHKIicrcrkrsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrblekVGVGBCVGPSqEtfKLBDblAyAyAyGlCrCrCrCrCrCrCrCrCrCrCrsInRBYLLqmHKnRBYBYqmHKnRBYBYqmsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrblblblblblblblblblKbehblCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsIrbBYLLqfHKrbBYBYqfHKrbBYBYqfsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrblblblblCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrsIsIsIsIsIsIsIsIsIsIsIsIsIsIsIsICrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr -CrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(2,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(3,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(4,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(5,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(6,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(7,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(8,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(9,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(10,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(11,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(12,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(13,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(14,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(15,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(16,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(17,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(18,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(19,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(20,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(21,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(22,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(23,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(24,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(25,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(26,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(27,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(28,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(29,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(30,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(31,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(32,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(33,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(34,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(35,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(36,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(37,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(38,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(39,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(40,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(41,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(42,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(43,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(44,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Qw +Qw +Qw +Qw +Qw +Qw +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(45,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Qw +ot +CC +Pm +ot +Qw +Cr +Cr +bl +bl +bl +bl +bl +bl +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(46,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +Cr +Cr +Cr +Cr +Cr +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +pt +pt +pt +Qw +ND +Fg +Fg +gd +Qw +Cr +Cr +bl +Oy +SE +zv +Hu +ek +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(47,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +Ln +wz +gz +wK +gz +Pt +tV +ca +ml +wz +Ll +wK +Ll +wz +ml +ca +Cr +Cr +Cr +Cr +Cr +sC +Xz +Xz +sC +sC +VL +sC +sC +wJ +VQ +qA +zV +DY +qA +dl +Bh +qA +zK +pW +iC +Me +Zl +DE +DR +gd +Qw +Cr +Cr +bl +VG +hD +zv +zP +VG +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(48,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +Xd +wz +Xd +wz +Xd +wz +Xd +ca +ml +wz +Ll +wz +Ll +wz +ml +ca +Cr +Cr +Cr +Cr +Cr +sC +sC +sC +sC +Ls +KQ +sC +QX +rH +dr +wV +dr +tr +kI +Hm +DY +qA +FS +XI +oh +Me +Me +Me +Hw +Me +Qw +Qw +Qw +bl +VG +Ri +zv +Yk +VG +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(49,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +wz +jl +JZ +JZ +JZ +fe +wz +ca +Pt +jl +JZ +SR +SR +wx +Pt +ca +Cr +Cr +Cr +Cr +Cr +sC +SC +Kv +sC +sC +Uj +sC +Tj +SI +Kv +yt +Kv +yY +Yd +Iw +BO +qA +og +XI +IU +Me +BA +xB +Yp +gd +ST +Df +Me +Me +jt +Jj +BD +Is +BC +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(50,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +Yw +Yw +Yw +ca +Ln +So +KO +KO +Rr +Kx +tV +ca +ml +So +KO +KO +KO +Kx +ml +ca +Cr +Cr +Cr +Cr +Cr +sC +fW +dr +vA +lS +lS +ft +gQ +Ap +uO +qA +Qu +pF +Fj +Jn +BO +qA +Oj +TC +wp +Me +lQ +Fg +Yp +Fg +Fg +gd +tS +Me +VG +hD +zv +zP +VG +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(51,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +sc +MN +wz +ca +Xd +UX +Rr +Ea +KO +Kx +Xd +ca +ml +UX +Rr +Ea +KO +kV +ml +ca +Cr +Cr +Cr +Cr +Cr +sC +gI +BK +sC +mc +KQ +bw +KQ +QS +gA +qA +Rh +Kv +Qe +Cg +qQ +Cu +ED +TC +eo +nb +vF +Fg +IE +ty +Fg +Fg +Ku +Me +PS +ce +zv +FK +PS +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(52,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +wz +Dc +wz +ca +ca +ca +Yw +Yw +Yw +ca +ca +ca +ca +ca +Yw +Yw +Yw +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +qA +Ng +fh +Tz +PQ +ID +zM +TO +KU +OU +Ya +mR +hC +mf +Fy +DR +tS +Me +Ib +EN +Co +IH +qE +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(53,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +wz +Dc +HQ +ca +ca +Tu +wz +ZL +ZL +ZL +ZL +hk +ZL +BW +ZL +ZL +ZL +wz +wz +wz +wz +ZL +wz +wz +ca +ca +ZL +CN +rk +ZJ +wN +Yl +Um +NI +gn +ZJ +hN +Kv +Kv +Kv +Dg +qA +Qi +TC +Gi +Me +Zb +Fg +Nr +pf +sV +Yp +Db +Me +tf +hM +zv +hM +tf +bl +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(54,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Dc +ZL +ca +ca +lB +IW +IW +by +GN +kU +GN +by +JP +JP +IW +by +CK +kU +AK +EX +JP +IW +Kx +ca +ca +ZL +mm +ax +ZJ +nF +eT +hq +Ep +No +ZJ +Hj +Kv +Kv +DY +gM +qA +rA +XI +wp +Me +PG +gd +dX +pB +Fg +TT +Me +Of +hQ +wX +ZQ +wX +KL +Kb +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(55,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Dc +ZL +ug +wz +So +KO +Nk +nN +eU +MN +qi +Xd +hF +Lo +KO +Xd +qi +he +eU +gD +Rr +KO +pD +ug +wz +ZL +AQ +xh +ZJ +TW +yJ +ba +jy +Mf +ZJ +ZB +KQ +UK +Kl +qA +qA +Fw +XI +jj +Me +Me +js +Qw +qD +cA +RO +Me +Of +uE +BD +Mz +nL +BD +eh +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(56,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Qk +pl +pl +Gs +FP +zy +JD +Ym +qi +Dc +Wu +Xd +DM +Yj +KH +Xd +qi +Dc +qi +hA +zy +zy +GQ +pl +pl +pl +yO +wz +ZJ +ZJ +ey +ZJ +ZJ +ZJ +ZJ +qA +qA +qA +qA +qA +jc +Jc +nH +GG +Zk +Me +Me +Me +Me +Me +Me +Me +Of +PI +Xu +Of +Of +bl +bl +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(57,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +KO +KO +KO +MI +Rr +Rr +Bf +ua +Dc +qi +Xd +Bw +Yj +KH +Xd +qi +Dc +qi +Xd +KO +KO +Yh +KO +uG +KO +Dc +wz +oK +wp +gS +GO +iN +iN +iN +vL +AY +wp +wp +cU +lo +Eu +XI +Wl +uu +WY +iN +wp +iN +wp +iN +wp +tb +xo +RY +iN +oh +Ay +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(58,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +KO +Ke +al +TP +Rr +QW +Xd +qi +Xs +eU +qw +zy +SL +BP +qw +eU +Td +qi +Xd +TD +KO +sy +Ph +IT +KO +Qk +lm +iG +SO +Fu +SY +iK +iK +SO +zM +iK +iK +SO +SY +SO +iK +wn +iK +SO +so +SO +iK +iK +XV +XV +iK +iK +Wy +Ad +Op +CA +Ay +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(59,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Dc +KO +pD +ZL +Rg +KO +rM +dP +qi +Wr +qi +Xd +KO +Rr +Rr +Xd +qi +lh +km +Xd +KO +KO +pD +wz +Ws +zD +Dc +ZL +oK +ms +ms +iN +pZ +pZ +iN +wp +wp +iN +iN +sN +Va +Wm +XI +gq +Va +iL +iN +wp +iN +iN +iN +wp +wp +pZ +ms +wp +iN +Ay +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(60,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +yZ +Dc +KO +Vv +HV +cp +HV +nT +JI +Py +HV +fl +aB +EZ +HV +Wv +aB +EZ +HV +Wv +HS +EZ +cl +jO +aB +nd +KO +Dc +oe +XJ +kg +qu +XJ +kg +qu +Vp +Vp +Vp +Vp +Vp +Vp +Zk +Jc +TC +GG +jc +ZC +ZC +ZC +ZC +ZC +ZC +Ty +Gl +pt +pt +Gl +Gl +Gl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(61,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Dc +ZL +cL +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +bQ +KO +Dc +ad +XJ +YA +Od +Sy +mk +vk +Vp +KZ +gL +sk +uH +wl +Vp +wd +XQ +KD +ZC +ZC +Yc +Ty +cz +VK +yA +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(62,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +nm +RT +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dB +aN +Dc +eY +XJ +As +As +Vr +Vr +As +Vp +EQ +JL +Tb +KK +JL +Vp +OG +XI +iN +ZC +TI +cs +af +cT +cT +xf +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(63,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +AP +mW +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dA +lg +Dc +eY +ag +As +Np +Np +rJ +As +Vp +EF +JL +aO +yw +Vz +Vp +xm +XI +wp +ZC +Fe +cT +cD +aJ +iE +xx +pJ +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(64,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +ZL +OJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +AG +lg +Dc +eY +ag +As +qT +LJ +fg +Vr +Vp +Tk +wl +vU +sR +MZ +sg +SY +TO +yT +Pp +LF +nG +PZ +Dx +UI +cT +lV +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(65,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Dc +KO +cL +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +gh +aN +Dc +eY +XJ +Vr +rl +ol +rV +Vr +Vp +Hd +wl +FE +wl +xX +Wj +ED +TC +eo +QJ +qa +cT +cR +Uk +cT +cT +zk +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(66,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +yZ +Dc +KO +RT +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +Lg +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dB +zD +Qk +MC +XJ +dv +rr +OX +sm +uA +Vp +rX +wl +FI +Bo +ld +Vp +ys +XI +Gi +ZC +zZ +cT +sf +cT +cT +cs +lV +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(67,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Dc +KO +mW +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +LH +aN +Dc +eY +XJ +Vr +Np +Np +rJ +As +Vp +Ld +pw +Wf +pw +nj +Vp +kX +vp +Ql +ZC +Ry +LK +sf +oQ +OI +rI +Ty +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(68,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +ZL +OJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +AG +lg +Dc +eY +ag +FT +FT +FT +sv +vB +Vp +EQ +Bg +FE +wl +EQ +Vp +Oj +XI +iN +ZC +ZC +ZC +mD +ZC +Ty +Ty +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(69,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +to +cL +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +gh +lg +Dc +eY +ag +WP +WP +WP +WP +Jk +Vp +yx +Bo +UO +wl +yj +Vp +FS +XQ +PF +ZC +cy +ha +Wp +Ei +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(70,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +AP +RT +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dB +lg +Dc +eY +XJ +WP +WP +WP +WP +KY +Vp +Tg +wl +FR +wl +Tk +Vp +UT +XI +wp +ZC +yL +cT +cT +Bu +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(71,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Dc +ZL +mW +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dA +zD +Dc +bf +XJ +aI +VX +VX +VX +vN +Vp +Sd +Cb +Gf +MJ +Tk +Vp +aQ +XI +wp +ZC +Kp +WK +PA +Kp +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(72,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +yZ +Dc +KO +Ke +Tx +ct +qI +rf +ON +Jq +ar +Lx +Tx +JT +qI +Lx +Tx +Jq +ar +Lx +ON +JT +ar +vS +Tx +mB +aN +Dc +eY +XJ +WP +WP +WP +WP +KY +Ui +Ui +Ui +Ui +Ui +Ui +Ui +ZM +Fa +ZM +Ui +HK +HK +HK +HK +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(73,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Qk +zy +YQ +AL +IZ +zy +pl +pl +pl +zy +Oz +aN +KO +KO +KO +Ea +Ea +KO +aN +KO +KO +KO +pD +ZL +So +aN +Dc +eY +ag +WP +WP +WP +WP +KY +Ui +Ui +YK +Jv +NO +QI +XR +Xw +NT +KM +Ui +HK +HK +Ax +Ax +Ax +HK +Pf +KP +HK +Ii +nR +QT +nR +rb +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(74,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +KO +Xy +fx +bq +JZ +JZ +SR +SR +pO +Rt +OH +SR +fx +SR +Cl +JZ +JZ +ff +SR +SR +je +Vv +SR +pG +lg +Dc +eY +ag +Eo +Ob +Ob +Ob +oL +Ui +nK +Cf +ik +bR +Rl +Kd +Cs +NT +UN +qR +HK +Xc +YG +yF +yF +LQ +fX +ti +To +BY +BY +cr +BY +BY +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(75,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +KO +hS +hS +vb +bo +bo +hS +hS +ay +Dc +Rg +Nf +Nf +Bj +cS +Bj +Bj +Nf +Bj +Bj +Nf +Bj +Bj +Nf +lg +Dc +eY +XJ +fy +fL +sS +sS +bS +Ui +oM +CF +dO +Os +Rx +Ys +LS +NT +TY +qR +HK +Xc +QD +ZV +Mi +ZV +rh +gg +To +bh +RD +cr +LL +LL +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(76,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +ZL +hS +CZ +aT +Qc +Bz +Mc +bo +eu +Dc +ie +Nf +JU +Cv +Cv +dd +Mj +Nf +fY +hW +Fi +jf +oJ +Nf +zJ +Dc +bf +XJ +Vr +Np +Uh +Np +As +Ui +Pc +FV +Zf +Zf +Zf +Zf +sO +QM +TY +qR +HK +Xc +QD +ZV +HK +Tr +Xa +NV +HK +kr +qm +eL +qm +qf +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(77,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Dc +ZL +hS +um +QO +SV +Bz +GV +bD +HR +pR +Rg +Nf +uF +OA +OA +dm +Mj +Nf +gG +OA +OA +jg +Cw +Nf +KO +Ey +lg +me +GY +Np +Np +rJ +As +Ui +yM +Dl +Zf +Zf +Zf +Zf +Zf +QM +TY +qR +HK +HK +za +Si +HK +Na +dG +di +HK +HK +HK +HK +HK +HK +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(78,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Dc +ZL +hS +BZ +Bz +iA +Bz +LZ +hS +HH +Dc +Rg +Nf +cH +cJ +OA +dt +ea +fO +Pr +PY +Pr +jG +xz +jV +lm +ly +ZL +XJ +yv +As +Ne +tT +IX +Ui +Gz +Dw +Gk +Os +Sl +Yx +lG +QM +TY +qR +HK +Xc +kq +Vc +HK +XL +fJ +NB +HK +QT +nR +Ii +nR +rb +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(79,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Dc +bf +hS +Bz +Bz +Bz +LE +tv +hS +pD +Dc +Rg +Nf +ov +OA +OA +OA +eJ +Nf +ho +iy +ho +jU +JJ +Nf +cB +lE +wz +XJ +XJ +XJ +PW +XJ +XJ +Ui +tX +Uv +GL +Pe +Su +rx +up +Bq +TY +qR +HK +Xc +kq +ZV +zt +ZV +xM +ti +To +BY +BY +cr +BY +BY +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(80,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ZL +Dc +ZL +hS +hS +wc +hS +hS +hS +hS +iX +Er +Rg +Nf +ZR +QE +cZ +dE +Mj +Nf +hG +jb +hG +jb +FN +Nf +KO +Dc +wz +XJ +XJ +As +mk +uw +As +Ui +Ui +DF +oH +NO +Ub +XR +dn +QM +ub +Ui +HK +Xc +QD +ZV +Mi +ZV +rh +Sq +To +ZI +ZI +cr +BY +BY +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(81,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ZL +Xs +QN +MK +MK +Xv +iR +Bz +qU +hS +RK +Er +vP +Nf +Nf +Nf +Nf +Nf +Nf +Nf +Nf +Tc +Nf +Nf +Nf +Nf +KO +Dc +bf +YP +ni +ry +ry +Np +rJ +As +Rv +Ui +Ui +Ui +Ui +Ui +ZM +Aw +ZM +Ui +HK +HK +hR +Vc +HK +AA +Xa +NV +HK +eL +qm +kr +qm +qf +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(82,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +Yw +Yw +Yw +MK +MK +BZ +iR +Bz +OC +hS +pD +Er +Rg +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +aw +Dc +ZL +YP +nM +Eb +Eb +nY +Np +As +sI +Ki +xK +Sw +HK +FW +eR +bb +dG +xQ +HK +EO +QD +Si +HK +nV +Xa +di +HK +HK +HK +HK +HK +HK +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(83,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +vt +iR +Bz +Jg +hS +bu +Dc +Rg +gE +gE +Xj +Qt +gE +Hk +OZ +yU +yU +ZU +Fl +lA +Vu +kw +qc +Gq +YP +oa +qv +qv +Np +wS +YP +sI +Ki +Hv +Sw +HK +gH +QD +bb +dG +Sc +BM +Br +QD +ZV +HK +Vc +Xa +NV +HK +QT +nR +Ii +nR +rb +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(84,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +sY +iR +Bz +dH +hS +pD +Dc +Rg +gE +iQ +Cn +VT +gE +ML +ny +SB +nx +de +sa +QP +bZ +Er +Rr +Rt +YP +qh +Vr +Vr +Vr +YP +YP +sI +Ve +HG +Pl +GK +Gg +sU +Ra +dG +Sc +Mn +Sc +QD +ZV +zt +ZV +xM +rZ +To +Lf +Lf +cr +BY +BY +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(85,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +MK +hS +MB +hS +hS +oW +Dc +Rg +gE +sX +tA +gE +gE +ML +ny +uS +ng +TN +EB +EB +ye +Qq +TN +Qq +YB +YB +YB +YB +YP +YP +YP +sI +HK +ip +HK +HK +EI +mY +zn +Bi +Sc +EK +Sc +fo +IC +IC +IC +IC +Bi +To +BY +YX +cr +BY +BY +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(86,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +NE +DB +Wg +hS +pD +Dc +Rg +gE +Wo +iF +Rc +Md +kO +vg +RW +LC +TN +Fz +AH +AH +Gv +LT +Gv +Hc +lK +kF +YB +Cr +Cr +Cr +sI +DX +HX +Qx +HK +ns +ns +HK +rd +rd +HK +lc +rd +rd +HK +rd +rd +rd +HK +eL +qm +kr +qm +qf +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(87,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +oA +QQ +gp +hS +pD +Dc +vP +gE +qz +Zd +gE +WA +DC +DC +RW +mZ +TN +CX +IP +gf +Bd +CP +PL +hy +AH +ZX +YB +Cr +Cr +Cr +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(88,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +MK +MK +MK +MK +wi +Td +Rg +gE +co +OY +gE +gE +Cy +sa +nD +gE +TN +TN +gW +It +TN +TN +wI +Gv +IP +jN +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(89,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +Yw +Yw +Yw +kS +kS +kS +kS +kS +oC +kS +oC +kS +TN +Ol +zI +jD +bO +TN +vo +Gv +IP +Iy +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(90,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +Rd +Rd +kS +gT +kS +gT +kS +TN +xJ +Oc +zA +gx +TN +CX +La +us +gt +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(91,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +Rd +Rd +kS +gT +kS +gT +kS +TN +zY +zG +Ff +Gy +TN +kH +kB +RP +hL +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(92,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +Rd +Rd +kS +gT +kS +gT +kS +TN +TN +TN +TN +TN +TN +TN +Hh +NU +YB +YB +YB +YB +YB +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(93,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +Rd +Rd +kS +gT +kS +gT +kS +TN +fm +fm +fm +fm +fm +TN +yc +Sn +Vq +YB +RN +tB +RM +YB +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(94,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +kS +kS +kS +kS +gT +kS +gT +kS +TN +TN +TN +TN +TN +TN +TN +Nz +rt +XP +YB +bB +EJ +zL +oo +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(95,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +kS +VJ +co +kS +gT +kS +gT +kS +TN +kh +qW +GU +Ml +AO +EA +yc +aq +Uf +Bv +Vj +Xb +Bt +fp +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(96,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +eB +uo +WG +kS +gT +kS +gT +kS +TN +Ce +fv +Sj +TK +MW +QL +IR +cG +fF +gW +Vj +cw +Bt +Ps +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(97,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +CS +vK +aA +kS +gT +kS +gT +kS +TN +vc +il +wa +sE +Nx +sE +Ye +Sn +uX +YB +dj +fF +uQ +pS +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(98,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +kS +yg +aX +kS +gT +kS +gT +kS +TN +Qz +il +wa +oO +AC +HT +ah +wa +yo +YB +yy +mo +an +YB +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(99,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +kS +mb +kS +kS +gT +kS +gT +kS +TN +NZ +il +Sn +jS +vG +ds +hU +wa +Hx +YB +YB +YB +YB +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(100,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +Rd +Rd +kS +gT +kS +gT +kS +TN +NZ +il +Sn +sE +zl +sE +wH +Sn +XN +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(101,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +Rd +Rd +kS +gT +kS +gT +kS +TN +TN +TN +Mu +TN +TN +TN +Qq +TN +YB +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(102,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +kS +kS +kS +gT +kS +gT +kS +kS +YB +Vq +Yv +if +IS +YO +cj +Vq +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(103,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +kS +or +or +fq +kS +Jp +or +or +YB +bg +kk +Gu +Gu +Gu +vJ +oX +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(104,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +kS +kS +kS +kS +kS +kS +kS +kS +kS +YB +ro +rq +jQ +GA +dg +aG +Zw +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(105,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +YB +YB +YB +YB +YB +YB +YB +YB +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(106,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(107,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(108,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(109,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(110,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(111,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(112,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(113,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(114,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(115,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(116,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(117,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(118,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(119,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +aS +aS +aS +aS +aS +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(120,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +aS +gB +aS +aS +aS +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(121,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +aS +aS +aS +aS +aS +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(122,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(123,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(124,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(125,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(126,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(127,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(128,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(129,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(130,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(131,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(132,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(133,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(134,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(135,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(136,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(137,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(138,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(139,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(140,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(141,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(142,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(143,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(144,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(145,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(146,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(147,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(148,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(149,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(150,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr "} From 6aa87e7ac1fbe521348d5fe530d92d0bb69339b0 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Sat, 24 Feb 2024 22:06:37 +0300 Subject: [PATCH 03/24] 2 --- .../modules/gear_presets/_select_equipment.dm | 1 + maps/map_files/golden_arrow/golden_arrow.dmm | 194 ++++++++++-------- 2 files changed, 112 insertions(+), 83 deletions(-) diff --git a/code/modules/gear_presets/_select_equipment.dm b/code/modules/gear_presets/_select_equipment.dm index 2ac9679529..df36dd7f30 100644 --- a/code/modules/gear_presets/_select_equipment.dm +++ b/code/modules/gear_presets/_select_equipment.dm @@ -262,6 +262,7 @@ GLOBAL_LIST_EMPTY(personal_closets) continue closet.owner = new_human.real_name closet_to_spawn_in = closet + closet_to_spawn_in.name = "[owner]'s personal locker" break if(!closet_to_spawn_in) load_vanity(new_human, mob_client) diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm index fa093c5b8a..389d824fa1 100644 --- a/maps/map_files/golden_arrow/golden_arrow.dmm +++ b/maps/map_files/golden_arrow/golden_arrow.dmm @@ -47,6 +47,17 @@ icon_state = "plate" }, /area/golden_arrow/hangar) +"am" = ( +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) "an" = ( /obj/structure/closet/emcloset, /obj/structure/machinery/light, @@ -268,6 +279,17 @@ icon_state = "plate" }, /area/golden_arrow/hangar) +"br" = ( +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) "bu" = ( /obj/structure/machinery/camera/autoname/golden_arrow, /obj/effect/decal/warning_stripes{ @@ -316,6 +338,14 @@ icon_state = "test_floor4" }, /area/golden_arrow/platoon_commander_rooms) +"bL" = ( +/obj/structure/closet/secure_closet/marine_personal{ + job = "Platoon Corpsman" + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) "bO" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ req_one_access = list() @@ -1970,9 +2000,9 @@ }, /area/golden_arrow/cryo_cells) "ld" = ( -/obj/structure/closet, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, +/obj/structure/machinery/disposal, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -2079,8 +2109,10 @@ /turf/closed/wall/almayer/outer, /area/golden_arrow/supply) "mc" = ( -/obj/structure/surface/rack, /obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/marine_personal{ + job = "Platoon Sergeant" + }, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -2236,36 +2268,19 @@ }, /area/golden_arrow/briefing) "nj" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; pixel_x = 16; pixel_y = -15 }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8; + job = "Smartgunner" + }, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -3018,7 +3033,6 @@ /area/golden_arrow/briefing) "rX" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -3191,11 +3205,17 @@ }, /area/golden_arrow/supply) "sY" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, /obj/item/clothing/suit/storage/jacket/marine/service, /obj/item/clothing/suit/storage/jacket/marine/service/tanker, +/obj/structure/closet/secure_closet/marine_personal{ + job = "Platoon Commander"; + icon_broken = "cabinetdetective_broken"; + icon_closed = "cabinetdetective"; + icon_locked = "cabinetdetective_locked"; + icon_state = "cabinetdetective_locked"; + icon_opened = "cabinetdetective_open"; + icon_off = "cabinetdetective_broken" + }, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -3362,6 +3382,30 @@ icon_state = "dark_sterile" }, /area/golden_arrow/canteen) +"ur" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) "us" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -4791,6 +4835,19 @@ icon_state = "dark_sterile" }, /area/golden_arrow/canteen) +"CJ" = ( +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8; + job = "Squad Sergeant" + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8; + job = "Squad Sergeant" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) "CK" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -5588,10 +5645,16 @@ }, /area/golden_arrow/engineering) "Hd" = ( -/obj/structure/closet, /obj/structure/sign/banners/united_americas_flag{ pixel_y = 30 }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8; + job = "Smartgunner" + }, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -6268,25 +6331,6 @@ pixel_x = -2; pixel_y = 4 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, /obj/structure/prop/invuln/lattice_prop{ dir = 1; icon_state = "lattice-simple"; @@ -6298,6 +6342,13 @@ pixel_x = 16; pixel_y = 16 }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8; + job = "Smartgunner" + }, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -7635,29 +7686,11 @@ pixel_y = 29; serial_number = 16 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8 }, /turf/open/floor/almayer{ icon_state = "plate" @@ -7888,11 +7921,6 @@ name = "General Listening Channel"; pixel_y = 28 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, /obj/structure/window/reinforced{ dir = 8; layer = 3.3; @@ -16155,7 +16183,7 @@ wJ VQ qA zV -DY +CJ qA dl Bh @@ -18286,7 +18314,7 @@ KZ gL sk uH -wl +Vp Vp wd XQ @@ -18434,7 +18462,7 @@ Vr Vr As Vp -EQ +am JL Tb KK @@ -19654,7 +19682,7 @@ Tg wl FR wl -Tk +ur Vp UT XI @@ -19806,7 +19834,7 @@ Sd Cb Gf MJ -Tk +br Vp aQ XI @@ -20544,7 +20572,7 @@ JU Cv Cv dd -Mj +bL Nf fY hW From 8f0b29d98a790f8fb8b40cbe3b7dddb463d65e6b Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Sat, 24 Feb 2024 22:12:13 +0300 Subject: [PATCH 04/24] Update _select_equipment.dm --- code/modules/gear_presets/_select_equipment.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/gear_presets/_select_equipment.dm b/code/modules/gear_presets/_select_equipment.dm index df36dd7f30..19a3ab43ee 100644 --- a/code/modules/gear_presets/_select_equipment.dm +++ b/code/modules/gear_presets/_select_equipment.dm @@ -262,7 +262,7 @@ GLOBAL_LIST_EMPTY(personal_closets) continue closet.owner = new_human.real_name closet_to_spawn_in = closet - closet_to_spawn_in.name = "[owner]'s personal locker" + closet_to_spawn_in.name = "[closet_to_spawn_in.owner]'s personal locker" break if(!closet_to_spawn_in) load_vanity(new_human, mob_client) From ab464bff1247104b8395aa20adbd1c81f73c0741 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Sun, 25 Feb 2024 22:26:58 +0300 Subject: [PATCH 05/24] Update marine_personal.dm --- .../structures/crates_lockers/closets/secure/marine_personal.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/marine_personal.dm b/code/game/objects/structures/crates_lockers/closets/secure/marine_personal.dm index fc62b7efe7..42a6cbfc8e 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/marine_personal.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/marine_personal.dm @@ -8,7 +8,7 @@ /obj/structure/closet/secure_closet/marine_personal/get_examine_text(mob/user) . = ..() - . += SPAN_NOTICE("It has a name tag[owner ? ": [owner]." : ". It's someone's from 1st Platoon..."]") + . += SPAN_NOTICE("It has a name tag[owner ? ": [owner]." : ". They are sill in hypersleep..."]") /obj/structure/closet/secure_closet/marine_personal/Initialize(mapload, ...) . = ..() From d58f908cd700a55ba61d02ff7216d84c5040180b Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Sun, 25 Feb 2024 22:36:59 +0300 Subject: [PATCH 06/24] wrong thinking --- code/modules/gear_presets/_select_equipment.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/gear_presets/_select_equipment.dm b/code/modules/gear_presets/_select_equipment.dm index 19a3ab43ee..62ca920c90 100644 --- a/code/modules/gear_presets/_select_equipment.dm +++ b/code/modules/gear_presets/_select_equipment.dm @@ -156,7 +156,7 @@ if(is_ground_level(new_human.z)) load_vanity(new_human, mob_client) else - INVOKE_ASYNC(src, PROC_REF(spawn_vanity_in_personal_lockers), new_human, mob_client) + spawn_vanity_in_personal_lockers(new_human, mob_client) load_traits(new_human, mob_client) if(round_statistics && count_participant) round_statistics.track_new_participant(faction) From 4be0f30fd04b2fc6942cf7ab3de11213f4d7c966 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:01:19 +0300 Subject: [PATCH 07/24] uhmm? --- code/modules/gear_presets/_select_equipment.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/gear_presets/_select_equipment.dm b/code/modules/gear_presets/_select_equipment.dm index 62ca920c90..01ebe04f32 100644 --- a/code/modules/gear_presets/_select_equipment.dm +++ b/code/modules/gear_presets/_select_equipment.dm @@ -316,7 +316,7 @@ GLOBAL_LIST_EMPTY(personal_closets) if(new_human.disabilities & NEARSIGHTED) new /obj/item/clothing/glasses/regular(closet_to_spawn_in) - for(var/datum/view_record/medal_view/medal as anything in DB_VIEW(/datum/view_record/medal_view, DB_COMP("player_id", DB_EQUALS, mob_client.player_data.id))) + for(var/datum/view_record/medal_view/medal as anything in DB_VIEW(/datum/view_record/medal_view, DB_COMP("player_id", DB_EQUALS, new_human.client.player_data.id))) if(medal.recipient_name != new_human.real_name) continue if(medal.recipient_role != new_human.job) From 0d9aacc29b629bd23119b98b03447c1ffa6d2a14 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:05:48 +0300 Subject: [PATCH 08/24] Update _select_equipment.dm --- code/modules/gear_presets/_select_equipment.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/gear_presets/_select_equipment.dm b/code/modules/gear_presets/_select_equipment.dm index 01ebe04f32..8df8210479 100644 --- a/code/modules/gear_presets/_select_equipment.dm +++ b/code/modules/gear_presets/_select_equipment.dm @@ -317,6 +317,8 @@ GLOBAL_LIST_EMPTY(personal_closets) new /obj/item/clothing/glasses/regular(closet_to_spawn_in) for(var/datum/view_record/medal_view/medal as anything in DB_VIEW(/datum/view_record/medal_view, DB_COMP("player_id", DB_EQUALS, new_human.client.player_data.id))) + if(!medal) + return if(medal.recipient_name != new_human.real_name) continue if(medal.recipient_role != new_human.job) From 39c57444b07a28c30d648cc803eb9b181e1250ef Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Thu, 29 Feb 2024 11:03:03 +0300 Subject: [PATCH 09/24] Update _select_equipment.dm --- code/modules/gear_presets/_select_equipment.dm | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/code/modules/gear_presets/_select_equipment.dm b/code/modules/gear_presets/_select_equipment.dm index 8df8210479..6d3c457e2e 100644 --- a/code/modules/gear_presets/_select_equipment.dm +++ b/code/modules/gear_presets/_select_equipment.dm @@ -323,7 +323,18 @@ GLOBAL_LIST_EMPTY(personal_closets) continue if(medal.recipient_role != new_human.job) continue - var/obj/item/clothing/accessory/medal/given_medal = new medal.medal_type(closet_to_spawn_in) + var/obj/item/clothing/accessory/medal/given_medal + switch(medal.medal_type) + if(MARINE_CONDUCT_MEDAL) + given_medal = new /obj/item/clothing/accessory/medal/bronze/conduct(closet_to_spawn_in) + if(MARINE_BRONZE_HEART_MEDAL) + given_medal = new /obj/item/clothing/accessory/medal/bronze/heart(closet_to_spawn_in) + if(MARINE_VALOR_MEDAL) + given_medal = new /obj/item/clothing/accessory/medal/silver/valor(closet_to_spawn_in) + if(MARINE_HEROISM_MEDAL) + given_medal = new /obj/item/clothing/accessory/medal/gold/heroism(closet_to_spawn_in) + else + return FALSE given_medal.recipient_name = medal.recipient_name given_medal.recipient_rank = medal.recipient_role given_medal.medal_citation = medal.citation From 48947467298243ac890744a3db8cc24c770c205b Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Thu, 29 Feb 2024 11:18:45 +0300 Subject: [PATCH 10/24] remap --- maps/map_files/golden_arrow/golden_arrow.dmm | 80 ++++++++++++-------- 1 file changed, 47 insertions(+), 33 deletions(-) diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm index 389d824fa1..d2c4427c1e 100644 --- a/maps/map_files/golden_arrow/golden_arrow.dmm +++ b/maps/map_files/golden_arrow/golden_arrow.dmm @@ -1993,8 +1993,17 @@ }, /area/golden_arrow/prep_hallway) "lc" = ( -/obj/structure/closet/cryo, -/obj/structure/closet/cryo, +/obj/structure/surface/rack, +/obj/item/tool/soap, +/obj/item/tool/soap{ + pixel_y = 4; + pixel_x = 6 + }, +/obj/item/tool/soap{ + pixel_y = -5; + pixel_x = -5 + }, +/obj/item/tool/soap, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -2110,9 +2119,7 @@ /area/golden_arrow/supply) "mc" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/marine_personal{ - job = "Platoon Sergeant" - }, +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -2275,7 +2282,8 @@ pixel_y = -15 }, /obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8 + pixel_x = -8; + job = "Smartgunner" }, /obj/structure/closet/secure_closet/marine_personal{ pixel_x = 8; @@ -2292,8 +2300,11 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "ns" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/cryo, +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner{ + name = "Weyland-Yutani premium shampoo"; + desc = "Can be also used as body wash, shaving foam, deodorant, bug repellant and fire starting liquid." + }, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -2895,7 +2906,16 @@ }, /area/golden_arrow/cryo_cells) "rd" = ( -/obj/structure/closet/cryo, +/obj/structure/closet/wardrobe{ + name = "PT uniform" + }, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/head/headband/red{ + pixel_y = 10 + }, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -3032,7 +3052,14 @@ /turf/open/floor/almayer/uscm/directional, /area/golden_arrow/briefing) "rX" = ( -/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8; + job = "Squad Sergeant" + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8; + job = "Squad Sergeant" + }, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -4835,19 +4862,6 @@ icon_state = "dark_sterile" }, /area/golden_arrow/canteen) -"CJ" = ( -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8; - job = "Squad Sergeant" - }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = 8; - job = "Squad Sergeant" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) "CK" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -5653,7 +5667,7 @@ }, /obj/structure/closet/secure_closet/marine_personal{ pixel_x = 8; - job = "Smartgunner" + job = "Platoon Sergeant" }, /turf/open/floor/almayer{ icon_state = "plate" @@ -16183,7 +16197,7 @@ wJ VQ qA zV -CJ +KQ qA dl Bh @@ -22115,18 +22129,18 @@ DX HX Qx HK -ns -ns +Sc +Sc HK -rd -rd +Br +Br HK lc -rd -rd +ns +Br HK -rd -rd +Br +Br rd HK eL From 77cbefaa69ab50aa65daf8c887f869e0659442dd Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Thu, 29 Feb 2024 11:25:06 +0300 Subject: [PATCH 11/24] tweaks --- .../closets/secure/marine_personal.dm | 8 +++++ maps/map_files/golden_arrow/golden_arrow.dmm | 29 +++++++++---------- 2 files changed, 22 insertions(+), 15 deletions(-) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/marine_personal.dm b/code/game/objects/structures/crates_lockers/closets/secure/marine_personal.dm index 42a6cbfc8e..df24801ba1 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/marine_personal.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/marine_personal.dm @@ -5,6 +5,7 @@ can_be_stacked = TRUE var/owner var/job = "Rifleman" + var/has_cryo_gear = TRUE /obj/structure/closet/secure_closet/marine_personal/get_examine_text(mob/user) . = ..() @@ -22,3 +23,10 @@ if(owner == M.name) return TRUE return FALSE + +/obj/structure/closet/secure_closet/marine_personal/Initialize() + . = ..() + if(has_cryo_gear) + new /obj/item/clothing/under/marine(src) + new /obj/item/clothing/shoes/marine/knife(src) + new /obj/item/device/radio/headset/almayer/marine(src) diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm index d2c4427c1e..6532bddf61 100644 --- a/maps/map_files/golden_arrow/golden_arrow.dmm +++ b/maps/map_files/golden_arrow/golden_arrow.dmm @@ -2299,16 +2299,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"ns" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner{ - name = "Weyland-Yutani premium shampoo"; - desc = "Can be also used as body wash, shaving foam, deodorant, bug repellant and fire starting liquid." - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) "nx" = ( /turf/open/floor/almayer{ icon_state = "plate" @@ -2912,10 +2902,8 @@ /obj/item/clothing/under/shorts/blue, /obj/item/clothing/under/shorts/red, /obj/item/clothing/under/shorts/blue, +/obj/item/clothing/head/headband/red, /obj/item/clothing/under/shorts/red, -/obj/item/clothing/head/headband/red{ - pixel_y = 10 - }, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -3241,7 +3229,8 @@ icon_locked = "cabinetdetective_locked"; icon_state = "cabinetdetective_locked"; icon_opened = "cabinetdetective_open"; - icon_off = "cabinetdetective_broken" + icon_off = "cabinetdetective_broken"; + has_cryo_gear = 0 }, /turf/open/floor/almayer{ icon_state = "plate" @@ -4862,6 +4851,16 @@ icon_state = "dark_sterile" }, /area/golden_arrow/canteen) +"CJ" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner{ + name = "Weyland-Yutani premium shampoo"; + desc = "Can also be used as body wash, shaving foam, deodorant, bug repellant, ignition fluid and gatorade." + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) "CK" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -22136,7 +22135,7 @@ Br Br HK lc -ns +CJ Br HK Br From 3aa74164494d48c790ce3c6e35596dc7be01d6c1 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Thu, 29 Feb 2024 11:25:38 +0300 Subject: [PATCH 12/24] Update golden_arrow.dmm --- maps/map_files/golden_arrow/golden_arrow.dmm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm index 6532bddf61..3005020e45 100644 --- a/maps/map_files/golden_arrow/golden_arrow.dmm +++ b/maps/map_files/golden_arrow/golden_arrow.dmm @@ -4855,7 +4855,7 @@ /obj/structure/surface/rack, /obj/item/reagent_container/spray/cleaner{ name = "Weyland-Yutani premium shampoo"; - desc = "Can also be used as body wash, shaving foam, deodorant, bug repellant, ignition fluid and gatorade." + desc = "Can also be used as body wash, shaving foam, deodorant, bug repellant, lighter fluid and gatorade." }, /turf/open/floor/almayer{ icon_state = "plate" From d56c84f4328b2a612bd90776b5122d6767e7a945 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Tue, 5 Mar 2024 22:21:52 +0300 Subject: [PATCH 13/24] closets --- .../structures/crates_lockers/closets.dm | 38 +++++++++---------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/code/game/objects/structures/crates_lockers/closets.dm b/code/game/objects/structures/crates_lockers/closets.dm index ebe16e2b1f..86e902dbbb 100644 --- a/code/game/objects/structures/crates_lockers/closets.dm +++ b/code/game/objects/structures/crates_lockers/closets.dm @@ -7,9 +7,9 @@ layer = BELOW_OBJ_LAYER var/icon_closed = "closed" var/icon_opened = "open" - var/opened = 0 - var/welded = 0 - var/wall_mounted = 0 //never solid (You can always pass over it) + var/opened = FALSE + var/welded = FALSE + var/wall_mounted = FALSE //never solid (You can always pass over it) var/can_be_stacked = FALSE health = 100 var/lastbang @@ -60,18 +60,18 @@ /obj/structure/closet/proc/can_open() if(src.welded) - return 0 - return 1 + return FALSE + return TRUE /obj/structure/closet/proc/can_close() for(var/mob/living/carbon/xenomorph/xeno in get_turf(src)) - return 0 + return FALSE if(can_be_stacked) - return 1 + return TRUE for(var/obj/structure/closet/closet in get_turf(src)) if(closet != src && !closet.wall_mounted) - return 0 - return 1 + return FALSE + return TRUE /obj/structure/closet/proc/dump_contents() @@ -92,25 +92,25 @@ /obj/structure/closet/proc/open() if(opened) - return 0 + return FALSE if(!can_open()) - return 0 + return FALSE dump_contents() UnregisterSignal(src, COMSIG_CLOSET_FLASHBANGED) - opened = 1 + opened = TRUE update_icon() playsound(src.loc, open_sound, 15, 1) density = FALSE - return 1 + return TRUE /obj/structure/closet/proc/close() if(!src.opened) - return 0 + return FALSE if(!src.can_close()) - return 0 + return FALSE var/stored_units = 0 if(store_items) @@ -119,12 +119,12 @@ stored_units = store_mobs(stored_units) RegisterSignal(src, COMSIG_CLOSET_FLASHBANGED, PROC_REF(flashbang)) - opened = 0 + opened = FALSE update_icon() playsound(src.loc, close_sound, 15, 1) density = TRUE - return 1 + return TRUE /obj/structure/closet/proc/store_items(stored_units) for(var/obj/item/I in src.loc) @@ -214,7 +214,7 @@ src.MouseDrop_T(G.grabbed_thing, user) //act like they were dragged onto the closet return if(W.flags_item & ITEM_ABSTRACT) - return 0 + return FALSE if(material == MATERIAL_METAL) if(iswelder(W)) if(!HAS_TRAIT(W, TRAIT_TOOL_BLOWTORCH)) @@ -374,5 +374,5 @@ /obj/structure/closet/proc/break_open() if(!opened) - welded = 0 + welded = FALSE open() From 51364b692ad75017a53abe497c2e0aae48d3b013 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Tue, 5 Mar 2024 22:29:25 +0300 Subject: [PATCH 14/24] ?!??! --- code/modules/gear_presets/_select_equipment.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/gear_presets/_select_equipment.dm b/code/modules/gear_presets/_select_equipment.dm index 6d3c457e2e..2f5a9e3e3f 100644 --- a/code/modules/gear_presets/_select_equipment.dm +++ b/code/modules/gear_presets/_select_equipment.dm @@ -253,7 +253,7 @@ GLOBAL_LIST_EMPTY(personal_closets) /datum/equipment_preset/proc/spawn_vanity_in_personal_lockers(mob/living/carbon/human/new_human, client/mob_client) var/obj/structure/closet/secure_closet/marine_personal/closet_to_spawn_in - if(!new_human.client || !new_human.client.prefs || !new_human.client.prefs.gear) + if(!new_human?.client?.prefs?.gear) return//We want to equip them with custom stuff second, after they are equipped with everything else. for(var/obj/structure/closet/secure_closet/marine_personal/closet in GLOB.personal_closets) if(closet.owner) From 9eb64f33101ad25fbc51ef20b2815dbb21a4c48c Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Tue, 5 Mar 2024 22:31:35 +0300 Subject: [PATCH 15/24] is_mainship_level() --- code/modules/gear_presets/_select_equipment.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/gear_presets/_select_equipment.dm b/code/modules/gear_presets/_select_equipment.dm index 2f5a9e3e3f..9cdbf01b8a 100644 --- a/code/modules/gear_presets/_select_equipment.dm +++ b/code/modules/gear_presets/_select_equipment.dm @@ -153,10 +153,10 @@ load_gear(new_human, mob_client) load_id(new_human, mob_client) load_status(new_human, mob_client) - if(is_ground_level(new_human.z)) - load_vanity(new_human, mob_client) - else + if(is_mainship_level(new_human.z)) spawn_vanity_in_personal_lockers(new_human, mob_client) + else + load_vanity(new_human, mob_client) load_traits(new_human, mob_client) if(round_statistics && count_participant) round_statistics.track_new_participant(faction) From f25170267a22efc3727c8b5e9092c855f772ccd1 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Tue, 5 Mar 2024 22:36:16 +0300 Subject: [PATCH 16/24] Revert "is_mainship_level()" This reverts commit 9eb64f33101ad25fbc51ef20b2815dbb21a4c48c. --- code/modules/gear_presets/_select_equipment.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/gear_presets/_select_equipment.dm b/code/modules/gear_presets/_select_equipment.dm index 9cdbf01b8a..2f5a9e3e3f 100644 --- a/code/modules/gear_presets/_select_equipment.dm +++ b/code/modules/gear_presets/_select_equipment.dm @@ -153,10 +153,10 @@ load_gear(new_human, mob_client) load_id(new_human, mob_client) load_status(new_human, mob_client) - if(is_mainship_level(new_human.z)) - spawn_vanity_in_personal_lockers(new_human, mob_client) - else + if(is_ground_level(new_human.z)) load_vanity(new_human, mob_client) + else + spawn_vanity_in_personal_lockers(new_human, mob_client) load_traits(new_human, mob_client) if(round_statistics && count_participant) round_statistics.track_new_participant(faction) From 389d890dbc93f4ecdb3bf7308d11c83537213601 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Tue, 5 Mar 2024 22:52:24 +0300 Subject: [PATCH 17/24] upp_ship --- maps/map_files/chapaev/chapaev.dmm | 123 +++++++++++++++++++++++------ 1 file changed, 97 insertions(+), 26 deletions(-) diff --git a/maps/map_files/chapaev/chapaev.dmm b/maps/map_files/chapaev/chapaev.dmm index 6ff87b7727..119e57dddb 100644 --- a/maps/map_files/chapaev/chapaev.dmm +++ b/maps/map_files/chapaev/chapaev.dmm @@ -1840,8 +1840,13 @@ }, /area/golden_arrow/briefing) "rV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/pillbottles, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Platoon Corpsman" + }, +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, /turf/open/floor/strata{ dir = 4; icon_state = "cyan1" @@ -2318,7 +2323,6 @@ }, /area/golden_arrow/canteen) "wH" = ( -/obj/structure/closet, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 @@ -2334,15 +2338,19 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Smartgunner" + }, /obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/under/marine/veteran/UPP, /obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, /obj/structure/machinery/light{ - dir = 4 + dir = 4; + invisibility = 101; + unacidable = 1; + unslashable = 1 }, -/obj/item/device/radio/headset/distress/UPP, -/obj/item/device/radio/headset/distress/UPP, /turf/open/floor/strata{ dir = 4; icon_state = "floor3" @@ -2842,7 +2850,6 @@ }, /area/golden_arrow/supply) "Cq" = ( -/obj/structure/closet, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 @@ -2858,15 +2865,19 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Squad Sergeant" + }, /obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/under/marine/veteran/UPP, /obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, /obj/structure/machinery/light{ - dir = 8 + dir = 8; + invisibility = 101; + unacidable = 1; + unslashable = 1 }, -/obj/item/device/radio/headset/distress/UPP, -/obj/item/device/radio/headset/distress/UPP, /turf/open/floor/strata{ dir = 4; icon_state = "floor3" @@ -3143,6 +3154,34 @@ icon_state = "floor3" }, /area/golden_arrow/hangar) +"EH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Platoon Sergeant" + }, +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/golden_arrow/cryo_cells) "EM" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/prop/almayer/CICmap{ @@ -3728,8 +3767,38 @@ icon_state = "floor3" }, /area/golden_arrow/prep_hallway) +"JY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0 + }, +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/golden_arrow/cryo_cells) "Ka" = ( /obj/structure/machinery/chem_master, +/obj/item/storage/box/pillbottles{ + pixel_y = 12 + }, /turf/open/floor/strata{ dir = 4; icon_state = "cyan1" @@ -3785,7 +3854,9 @@ /obj/structure/machinery/chem_dispenser{ desc = "A complex machine for mixing elements into chemicals. A MinZdrav product." }, -/obj/item/reagent_container/glass/beaker/bluespace, +/obj/item/reagent_container/glass/beaker/bluespace{ + pixel_y = 17 + }, /obj/structure/machinery/light{ dir = 4 }, @@ -4853,7 +4924,6 @@ /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/hangar) "WP" = ( -/obj/structure/closet, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 @@ -4869,12 +4939,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Squad Sergeant" + }, /obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/under/marine/veteran/UPP, /obj/item/clothing/under/marine/veteran/UPP, /obj/item/device/radio/headset/distress/UPP, -/obj/item/device/radio/headset/distress/UPP, /turf/open/floor/strata{ dir = 4; icon_state = "floor3" @@ -13906,11 +13977,11 @@ nO EA HX cT -WP -WP +JY +JY Cq -WP -WP +JY +EH iO pk AS @@ -14514,11 +14585,11 @@ nO EA af cT -WP -WP +JY +JY wH WP -WP +JY iO bC CJ From f8ef865d5ab77be034d4d567ecefb2f5d2f96936 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Tue, 5 Mar 2024 23:04:22 +0300 Subject: [PATCH 18/24] chapaev2 --- maps/map_files/chapaev/chapaev.dmm | 147 ++++++++++++++++------------- 1 file changed, 80 insertions(+), 67 deletions(-) diff --git a/maps/map_files/chapaev/chapaev.dmm b/maps/map_files/chapaev/chapaev.dmm index 119e57dddb..97a67f2fa5 100644 --- a/maps/map_files/chapaev/chapaev.dmm +++ b/maps/map_files/chapaev/chapaev.dmm @@ -98,6 +98,12 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, +/obj/structure/sign{ + desc = "Comrade! Don't forget to return your state-issued items to your assigned locker before returning to hypersleep!"; + icon_state = "securearea"; + pixel_y = 30; + name = "Vnimanie! 注意!" + }, /turf/open/floor/plating, /area/golden_arrow/cryo_cells) "aS" = ( @@ -1051,11 +1057,18 @@ }, /area/golden_arrow/platoon_sergeant) "kb" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, /obj/item/clothing/suit/storage/snow_suit/soviet, /obj/item/clothing/suit/gimmick/jason, +/obj/structure/closet/secure_closet/marine_personal{ + job = "Platoon Commander"; + icon_broken = "cabinetdetective_broken"; + icon_closed = "cabinetdetective"; + icon_locked = "cabinetdetective_locked"; + icon_state = "cabinetdetective_locked"; + icon_opened = "cabinetdetective_open"; + icon_off = "cabinetdetective_broken"; + has_cryo_gear = 0 + }, /turf/open/floor/strata{ dir = 6; icon_state = "multi_tiles" @@ -2805,6 +2818,33 @@ }, /turf/open/floor/plating, /area/golden_arrow/engineering) +"BK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0 + }, +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/golden_arrow/cryo_cells) "BQ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/prop/almayer/CICmap{ @@ -3154,34 +3194,6 @@ icon_state = "floor3" }, /area/golden_arrow/hangar) -"EH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Platoon Sergeant" - }, -/obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/under/marine/veteran/UPP, -/obj/item/device/radio/headset/distress/UPP, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/cryo_cells) "EM" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/prop/almayer/CICmap{ @@ -3767,33 +3779,6 @@ icon_state = "floor3" }, /area/golden_arrow/prep_hallway) -"JY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0 - }, -/obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/under/marine/veteran/UPP, -/obj/item/device/radio/headset/distress/UPP, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/cryo_cells) "Ka" = ( /obj/structure/machinery/chem_master, /obj/item/storage/box/pillbottles{ @@ -4814,6 +4799,34 @@ icon_state = "floor3" }, /area/golden_arrow/briefing) +"VL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Squad Sergeant" + }, +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/golden_arrow/cryo_cells) "VP" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -4941,7 +4954,7 @@ }, /obj/structure/closet/secure_closet/marine_personal{ has_cryo_gear = 0; - job = "Squad Sergeant" + job = "Platoon Sergeant" }, /obj/item/clothing/shoes/marine/upp, /obj/item/clothing/under/marine/veteran/UPP, @@ -13977,11 +13990,11 @@ nO EA HX cT -JY -JY +BK +BK Cq -JY -EH +BK +WP iO pk AS @@ -14585,11 +14598,11 @@ nO EA af cT -JY -JY +BK +BK wH -WP -JY +VL +BK iO bC CJ From 04b5f4c340c9fe48d050cfcbb234ab04a09e7e49 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Fri, 8 Mar 2024 22:40:29 +0300 Subject: [PATCH 19/24] silly --- .../structures/crates_lockers/closets/secure/marine_personal.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/marine_personal.dm b/code/game/objects/structures/crates_lockers/closets/secure/marine_personal.dm index df24801ba1..7749987eb8 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/marine_personal.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/marine_personal.dm @@ -9,7 +9,7 @@ /obj/structure/closet/secure_closet/marine_personal/get_examine_text(mob/user) . = ..() - . += SPAN_NOTICE("It has a name tag[owner ? ": [owner]." : ". They are sill in hypersleep..."]") + . += SPAN_NOTICE("It has a name tag[owner ? ": [owner]." : ". They are still in hypersleep..."]") /obj/structure/closet/secure_closet/marine_personal/Initialize(mapload, ...) . = ..() From b59187b24fa9454fad0eeff4e31bcfe437ff1470 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Tue, 12 Mar 2024 02:06:43 +0300 Subject: [PATCH 20/24] ided --- code/modules/gear_presets/_select_equipment.dm | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/code/modules/gear_presets/_select_equipment.dm b/code/modules/gear_presets/_select_equipment.dm index 2f5a9e3e3f..ea3ad1985d 100644 --- a/code/modules/gear_presets/_select_equipment.dm +++ b/code/modules/gear_presets/_select_equipment.dm @@ -153,10 +153,8 @@ load_gear(new_human, mob_client) load_id(new_human, mob_client) load_status(new_human, mob_client) - if(is_ground_level(new_human.z)) - load_vanity(new_human, mob_client) - else - spawn_vanity_in_personal_lockers(new_human, mob_client) + INVOKE_NEXT_TICK(src, PROC_REF(create_vanity), new_human, mob_client) + load_traits(new_human, mob_client) if(round_statistics && count_participant) round_statistics.track_new_participant(faction) @@ -171,6 +169,13 @@ new_human.hud_set_squad() new_human.add_to_all_mob_huds() +/datum/equipment_preset/proc/do_vanity(mob/living/carbon/human/new_human, client/mob_client) + var/turf/T = get_turf(new_human) + if(is_mainship_level(T.z)) + spawn_vanity_in_personal_lockers(new_human, mob_client) + else + load_vanity(new_human, mob_client) + /datum/equipment_preset/proc/load_vanity(mob/living/carbon/human/new_human, client/mob_client) if(!new_human.client || !new_human.client.prefs || !new_human.client.prefs.gear) return//We want to equip them with custom stuff second, after they are equipped with everything else. From daefc16e09e7ea794fdc505bb739d22c3ac51d04 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Tue, 12 Mar 2024 02:09:35 +0300 Subject: [PATCH 21/24] Update _select_equipment.dm --- code/modules/gear_presets/_select_equipment.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/gear_presets/_select_equipment.dm b/code/modules/gear_presets/_select_equipment.dm index d0dd040a4e..334980c78d 100644 --- a/code/modules/gear_presets/_select_equipment.dm +++ b/code/modules/gear_presets/_select_equipment.dm @@ -153,7 +153,7 @@ load_gear(new_human, mob_client) load_id(new_human, mob_client) load_status(new_human, mob_client) - INVOKE_NEXT_TICK(src, PROC_REF(create_vanity), new_human, mob_client) + INVOKE_NEXT_TICK(src, PROC_REF(do_vanity), new_human, mob_client) load_traits(new_human, mob_client) if(round_statistics && count_participant) From 8abfec49717ef4dc670ac1b3f452ca81125e31e7 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Tue, 12 Mar 2024 02:26:19 +0300 Subject: [PATCH 22/24] AAAAAAAAA --- .../vendor_types/squad_prep/squad_medic.dm | 6 +- maps/map_files/chapaev/chapaev.dmm | 2 +- maps/map_files/golden_arrow/golden_arrow.dmm | 6 +- maps/map_files/rover/rover.dmm | 82 ++++++++++++------- 4 files changed, 63 insertions(+), 33 deletions(-) diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm index fbb25c196c..1bfa2792de 100644 --- a/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm +++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm @@ -117,7 +117,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_medic, list( list("Essential Medical Set", 0, /obj/effect/essentials_set/medic, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Standard Marine Apparel", 0, list(/obj/item/clothing/under/marine/medic, /obj/item/clothing/shoes/marine/knife, /obj/item/clothing/gloves/marine, /obj/item/device/radio/headset/almayer/marine, /obj/item/clothing/head/helmet/marine/medic), MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), + list("Standard Marine Apparel", 0, list(/obj/item/clothing/gloves/marine, /obj/item/clothing/head/helmet/marine/medic), MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("Combat Sterile Gloves", 0, /obj/item/clothing/gloves/marine/medical, MARINE_CAN_BUY_KIT, VENDOR_ITEM_REGULAR), list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), @@ -221,7 +221,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_upp_medic, list( list("Essential Medical Set", 0, /obj/effect/essentials_set/medic, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Standard Apparel", 0, list(/obj/item/clothing/under/marine/veteran/UPP/medic, /obj/item/clothing/shoes/marine/upp, /obj/item/clothing/gloves/marine/veteran/upp, /obj/item/device/radio/headset/distress/UPP, /obj/item/clothing/head/helmet/marine/veteran/UPP), MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), + list("Standard Apparel", 0, list(/obj/item/clothing/gloves/marine/veteran/upp, /obj/item/clothing/head/helmet/marine/veteran/UPP), MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("Combat Sterile Gloves", 0, /obj/item/clothing/gloves/marine/medical, MARINE_CAN_BUY_KIT, VENDOR_ITEM_REGULAR), list("Ration", 0, /obj/item/reagent_container/food/snacks/upp, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), @@ -283,7 +283,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_forecon_medic, list( list("Essential Medical Set", 0, /obj/effect/essentials_set/medic, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Standard Marine Apparel", 0, list(/obj/item/clothing/under/marine/medic/standard, /obj/item/clothing/shoes/marine/jungle/knife, /obj/item/clothing/gloves/marine, /obj/item/device/radio/headset/almayer/sof/survivor_forecon), MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), + list("Standard Marine Apparel", 0, list(/obj/item/clothing/gloves/marine), MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("Combat Sterile Gloves", 0, /obj/item/clothing/gloves/marine/medical, MARINE_CAN_BUY_KIT, VENDOR_ITEM_REGULAR), list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), diff --git a/maps/map_files/chapaev/chapaev.dmm b/maps/map_files/chapaev/chapaev.dmm index 1edcf1f02f..9c9d47bd9d 100644 --- a/maps/map_files/chapaev/chapaev.dmm +++ b/maps/map_files/chapaev/chapaev.dmm @@ -1868,8 +1868,8 @@ job = "Platoon Corpsman" }, /obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/under/marine/veteran/UPP, /obj/item/device/radio/headset/distress/UPP, +/obj/item/clothing/under/marine/veteran/UPP/medic, /turf/open/floor/strata{ dir = 4; icon_state = "cyan1" diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm index 60c3291f61..885fa1b3d9 100644 --- a/maps/map_files/golden_arrow/golden_arrow.dmm +++ b/maps/map_files/golden_arrow/golden_arrow.dmm @@ -340,8 +340,12 @@ /area/golden_arrow/platoon_commander_rooms) "bL" = ( /obj/structure/closet/secure_closet/marine_personal{ - job = "Platoon Corpsman" + job = "Platoon Corpsman"; + has_cryo_gear = 0 }, +/obj/item/clothing/shoes/marine/knife, +/obj/item/device/radio/headset/almayer/marine, +/obj/item/clothing/under/marine/medic, /turf/open/floor/almayer{ icon_state = "sterile_green" }, diff --git a/maps/map_files/rover/rover.dmm b/maps/map_files/rover/rover.dmm index b35fb87e5f..12245ea429 100644 --- a/maps/map_files/rover/rover.dmm +++ b/maps/map_files/rover/rover.dmm @@ -168,8 +168,6 @@ }, /area/golden_arrow/hangar) "bS" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/m41aMK1, /obj/structure/sign/poster/music{ pixel_y = 29 }, @@ -177,9 +175,7 @@ pixel_y = 34; pixel_x = 8 }, -/obj/item/weapon/gun/rifle/m41aMK1, -/obj/item/weapon/gun/rifle/m41aMK1, -/obj/item/weapon/gun/rifle/m41aMK1, +/obj/structure/gun_rack/m41, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -681,6 +677,12 @@ pixel_x = -27 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0 + }, +/obj/item/clothing/shoes/marine/jungle/knife, +/obj/item/device/radio/headset/almayer/sof/survivor_forecon, +/obj/item/clothing/under/marine/standard, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -2375,6 +2377,12 @@ dir = 4; name = "ship-grade camera" }, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0 + }, +/obj/item/clothing/shoes/marine/jungle/knife, +/obj/item/device/radio/headset/almayer/sof/survivor_forecon, +/obj/item/clothing/under/marine/standard, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -2723,15 +2731,15 @@ }, /area/golden_arrow/platoon_commander_rooms) "zF" = ( -/obj/structure/closet, /obj/structure/machinery/light{ dir = 4 }, -/obj/item/clothing/shoes/marine/jungle/knife, +/obj/structure/closet/secure_closet/marine_personal{ + job = "Platoon Sergeant"; + has_cryo_gear = 0 + }, /obj/item/clothing/shoes/marine/jungle/knife, /obj/item/device/radio/headset/almayer/sof/survivor_forecon, -/obj/item/device/radio/headset/almayer/sof/survivor_forecon, -/obj/item/clothing/under/marine/standard, /obj/item/clothing/under/marine/standard, /turf/open/floor/almayer{ icon_state = "plate" @@ -3189,15 +3197,11 @@ }, /area/golden_arrow/dorms) "EF" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/m41aMK1, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 1 }, -/obj/item/weapon/gun/rifle/m41aMK1, -/obj/item/weapon/gun/rifle/m41aMK1, -/obj/item/weapon/gun/rifle/m41aMK1, +/obj/structure/gun_rack/m41, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -3667,6 +3671,13 @@ pixel_x = -30 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/marine_personal{ + job = "Smartgunner"; + has_cryo_gear = 0 + }, +/obj/item/clothing/shoes/marine/jungle/knife, +/obj/item/device/radio/headset/almayer/sof/survivor_forecon, +/obj/item/clothing/under/marine/standard, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -4192,12 +4203,12 @@ }, /area/golden_arrow/prep_hallway) "OU" = ( -/obj/structure/closet, -/obj/item/clothing/shoes/marine/jungle/knife, +/obj/structure/closet/secure_closet/marine_personal{ + job = "Squad Sergeant"; + has_cryo_gear = 0 + }, /obj/item/clothing/shoes/marine/jungle/knife, /obj/item/device/radio/headset/almayer/sof/survivor_forecon, -/obj/item/device/radio/headset/almayer/sof/survivor_forecon, -/obj/item/clothing/under/marine/standard, /obj/item/clothing/under/marine/standard, /turf/open/floor/almayer{ icon_state = "plate" @@ -4236,6 +4247,10 @@ "Pt" = ( /obj/structure/machinery/chem_dispenser, /obj/item/reagent_container/glass/beaker/bluespace, +/obj/item/storage/box/pillbottles{ + pixel_y = 18; + pixel_x = -5 + }, /turf/open/floor/almayer{ icon_state = "sterile_green" }, @@ -4273,6 +4288,18 @@ icon_state = "outerhull_dir" }, /area/space) +"PN" = ( +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Radio Telephone Operator" + }, +/obj/item/clothing/shoes/marine/jungle/knife, +/obj/item/device/radio/headset/almayer/sof/survivor_forecon, +/obj/item/clothing/under/marine/standard, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) "PY" = ( /obj/structure/machinery/light{ dir = 4; @@ -4510,8 +4537,13 @@ }, /area/golden_arrow/hangar) "SR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/pillbottles, +/obj/structure/closet/secure_closet/marine_personal{ + job = "Platoon Corpsman"; + has_cryo_gear = 0 + }, +/obj/item/clothing/shoes/marine/jungle/knife, +/obj/item/device/radio/headset/almayer/sof/survivor_forecon, +/obj/item/clothing/under/marine/medic/standard, /turf/open/floor/almayer{ icon_state = "sterile_green" }, @@ -4717,13 +4749,7 @@ }, /area/golden_arrow/synthcloset) "VX" = ( -/obj/structure/closet, -/obj/item/clothing/shoes/marine/jungle/knife, -/obj/item/clothing/shoes/marine/jungle/knife, -/obj/item/device/radio/headset/almayer/sof/survivor_forecon, -/obj/item/device/radio/headset/almayer/sof/survivor_forecon, -/obj/item/clothing/under/marine/standard, -/obj/item/clothing/under/marine/standard, +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer, /area/golden_arrow/dorms) "Wf" = ( @@ -18341,7 +18367,7 @@ DM qs oR Nc -VX +PN Ap Ey OU From 5195ea3ebcf5eca3ac2980f5c7be93091457d664 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Tue, 12 Mar 2024 02:53:33 +0300 Subject: [PATCH 23/24] Update _select_equipment.dm --- code/modules/gear_presets/_select_equipment.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/gear_presets/_select_equipment.dm b/code/modules/gear_presets/_select_equipment.dm index 334980c78d..ce47c0ffec 100644 --- a/code/modules/gear_presets/_select_equipment.dm +++ b/code/modules/gear_presets/_select_equipment.dm @@ -171,6 +171,8 @@ /datum/equipment_preset/proc/do_vanity(mob/living/carbon/human/new_human, client/mob_client) var/turf/T = get_turf(new_human) + if(!T) + return if(is_mainship_level(T.z)) spawn_vanity_in_personal_lockers(new_human, mob_client) else From b3752ffea979bc80bb6bc84999fb3ee2c09a67b5 Mon Sep 17 00:00:00 2001 From: AndroBetel <44546836+AndroBetel@users.noreply.github.com> Date: Tue, 12 Mar 2024 07:43:21 +0300 Subject: [PATCH 24/24] Update job_closets.dm --- .../objects/structures/crates_lockers/closets/job_closets.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/crates_lockers/closets/job_closets.dm b/code/game/objects/structures/crates_lockers/closets/job_closets.dm index 6e42dc370e..73cf11a6a3 100644 --- a/code/game/objects/structures/crates_lockers/closets/job_closets.dm +++ b/code/game/objects/structures/crates_lockers/closets/job_closets.dm @@ -124,7 +124,7 @@ desc = "A secure storage unit for an assistant squad leader." req_one_access = list(ACCESS_MARINE_LEADER, ACCESS_MARINE_TL_PREP) -/obj/structure/closet/secure_closet/squad_sergeant/Initialize() +/obj/structure/closet/secure_closet/squad_sergeant_forecon/Initialize() . = ..() new /obj/item/device/binoculars/range/designator(src) new /obj/item/device/whistle(src)