diff --git a/code/__defines/misc.dm b/code/__defines/misc.dm index 55e8b9da25e..6be40ede892 100644 --- a/code/__defines/misc.dm +++ b/code/__defines/misc.dm @@ -398,4 +398,11 @@ Will print: "/mob/living/carbon/human/death" (you can optionally embed it in a s // getFlatIcon function altering defines #define GFI_ROTATION_DEFAULT 0 //Don't do anything special #define GFI_ROTATION_DEFDIR 1 //Layers will have default direction of there object -#define GFI_ROTATION_OVERDIR 2 //Layers will have overidden direction \ No newline at end of file +#define GFI_ROTATION_OVERDIR 2 //Layers will have overidden direction + +// The pixel_(x|y) offset that will be used by default by wall items, such as APCs or Fire Alarms. +#define DEFAULT_WALL_OFFSET 24 + +// Defines for translating a dir into pixelshifts for wall items +#define DIR2PIXEL_X(dir) ((dir & (NORTH|SOUTH)) ? 0 : (dir == EAST ? DEFAULT_WALL_OFFSET : -(DEFAULT_WALL_OFFSET))) +#define DIR2PIXEL_Y(dir) ((dir & (NORTH|SOUTH)) ? (dir == NORTH ? DEFAULT_WALL_OFFSET : -(DEFAULT_WALL_OFFSET)) : 0) diff --git a/code/game/machinery/firealarm.dm b/code/game/machinery/firealarm.dm index 459afb99419..9f93d907f86 100644 --- a/code/game/machinery/firealarm.dm +++ b/code/game/machinery/firealarm.dm @@ -231,20 +231,37 @@ seclevel = newlevel update_icon() -/obj/machinery/firealarm/Initialize(mapload, dir, building) - . = ..() - if(dir) - src.set_dir(dir) +/obj/machinery/firealarm/Initialize(mapload, ndir = 0, building) + . = ..(mapload, ndir) if(building) buildstage = 0 wiresexposed = 1 icon_state = "fire_b0" - pixel_x = (dir & 3)? 0 : (dir == 4 ? -24 : 24) - pixel_y = (dir & 3)? (dir ==1 ? -24 : 24) : 0 + + // Overwrite the mapped in values. + pixel_x = DIR2PIXEL_X(dir) + pixel_y = DIR2PIXEL_Y(dir) if(z in config.contact_levels) - set_security_level(security_level? get_security_level() : "green") + set_security_level(security_level ? get_security_level() : "green") + +// Convenience subtypes for mappers. +/obj/machinery/firealarm/north + dir = NORTH + pixel_y = 28 + +/obj/machinery/firealarm/east + dir = EAST + pixel_x = 28 + +/obj/machinery/firealarm/west + dir = WEST + pixel_x = -28 + +/obj/machinery/firealarm/south + dir = SOUTH + pixel_y = -28 /* FIRE ALARM CIRCUIT diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm index 4420dcaff7a..03029620af8 100644 --- a/code/modules/power/apc.dm +++ b/code/modules/power/apc.dm @@ -88,7 +88,6 @@ var/locked = 1 var/coverlocked = 1 var/aidisabled = 0 - var/tdir = null var/obj/machinery/power/terminal/terminal = null var/lastused_light = 0 var/lastused_equip = 0 @@ -119,8 +118,6 @@ var/global/list/status_overlays_lighting var/global/list/status_overlays_environ - var/datum/effect_system/sparks/spark_system - /obj/machinery/power/apc/updateDialog() if (stat & (BROKEN|MAINT)) return @@ -155,19 +152,18 @@ return cell.drain_power(drain_check, surge, amount) /obj/machinery/power/apc/Initialize(mapload, var/ndir, var/building=0) - . = ..() + . = ..(mapload) wires = new(src) - // offset 24 pixels in direction of dir + // offset 28 pixels in direction of dir // this allows the APC to be embedded in a wall, yet still inside an area if (building) set_dir(ndir) - src.tdir = dir // to fix Vars bug - set_dir(SOUTH) - pixel_x = (src.tdir & 3)? 0 : (src.tdir == 4 ? 24 : -24) - pixel_y = (src.tdir & 3)? (src.tdir ==1 ? 24 : -24) : 0 - if (building==0) + pixel_x = DIR2PIXEL_X(dir) + pixel_y = DIR2PIXEL_Y(dir) + + if (!building) init(mapload) else area = get_area(src) @@ -178,8 +174,6 @@ stat |= MAINT src.update_icon() - spark_system = bind_spark(src, 5, alldirs) - /obj/machinery/power/apc/Destroy() src.update() area.apc = null @@ -193,8 +187,6 @@ cell.forceMove(loc) cell = null - QDEL_NULL(spark_system) - // Malf AI, removes the APC from AI's hacked APCs list. if((hacker) && (hacker.hacked_apcs) && (src in hacker.hacked_apcs)) hacker.hacked_apcs -= src @@ -208,7 +200,7 @@ // create a terminal object at the same position as original turf loc // wires will attach to this terminal = new/obj/machinery/power/terminal(src.loc) - terminal.set_dir(tdir) + terminal.set_dir(dir) terminal.master = src /obj/machinery/power/apc/proc/init(mapload) @@ -575,7 +567,7 @@ if(do_after(user, 50)) if(terminal && opened && has_electronics!=2) if (prob(50) && electrocute_mob(usr, terminal.powernet, terminal)) - spark_system.queue() + spark(src, 5, alldirs) if(usr.stunned) return new /obj/item/stack/cable_coil(loc,10) @@ -753,7 +745,7 @@ if(isipc(H) && H.a_intent == I_GRAB) if(emagged || stat & BROKEN) - spark_system.queue() + spark(src, 5, alldirs) H << "The APC power currents surge eratically, damaging your chassis!" H.adjustFireLoss(10, 0) if(infected) @@ -779,7 +771,7 @@ if (H.nutrition > H.max_nutrition) H.nutrition = H.max_nutrition if (prob(0.5)) - spark_system.queue() + spark(src, 5, alldirs) H << "The APC power currents surge eratically, damaging your chassis!" H.adjustFireLoss(10, 0) @@ -1051,7 +1043,7 @@ smoke.set_up(3, 0, src.loc) smoke.attach(src) smoke.start() - spark_system.queue() + spark(src, 5, alldirs) visible_message("The [src.name] suddenly lets out a blast of smoke and some sparks!", \ "You hear sizzling electronics.") diff --git a/html/changelogs/lohikar-firealarms.yml b/html/changelogs/lohikar-firealarms.yml new file mode 100644 index 00000000000..1b41f33ed07 --- /dev/null +++ b/html/changelogs/lohikar-firealarms.yml @@ -0,0 +1,5 @@ +author: Lohikar +delete-after: True +changes: + - imageadd: "APCs now have west/east icon states." + - maptweak: "Fire alarms should no longer have inconsistent offsets on walls." diff --git a/icons/obj/power.dmi b/icons/obj/power.dmi index 4d22ba3ea6d..65124bb1c04 100644 Binary files a/icons/obj/power.dmi and b/icons/obj/power.dmi differ diff --git a/maps/aurora/aurora-3_sublevel.dmm b/maps/aurora/aurora-3_sublevel.dmm index bd81104ba07..6fbb0006659 100644 --- a/maps/aurora/aurora-3_sublevel.dmm +++ b/maps/aurora/aurora-3_sublevel.dmm @@ -537,11 +537,7 @@ /turf/simulated/floor/plating, /area/outpost/engineering/power) "bs" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, +/obj/machinery/firealarm/west, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -851,11 +847,7 @@ dir = 4 }, /obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, +/obj/machinery/firealarm/west, /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/outpost/engineering/meeting) @@ -2316,11 +2308,7 @@ /obj/random/tech_supply, /obj/random/tech_supply, /obj/item/weapon/pickaxe, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/north, /obj/effect/floor_decal/corner/yellow/full, /turf/simulated/floor/tiled, /area/outpost/engineering/meeting) @@ -3532,11 +3520,7 @@ /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) "hp" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) "hq" = ( @@ -3660,11 +3644,7 @@ name = "Air to Pumps" }, /obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/engineering/atmos) "hE" = ( @@ -3779,16 +3759,12 @@ /turf/simulated/floor/plating, /area/outpost/engineering/power) "hR" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/firealarm/south, /turf/simulated/floor/plating, /area/outpost/engineering/power) "hS" = ( @@ -4670,11 +4646,7 @@ dir = 9; pixel_y = 0 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/plating, /area/engineering/atmos) "jI" = ( @@ -4790,12 +4762,8 @@ }, /area/engineering/gravity_gen) "jW" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, /obj/effect/floor_decal/corner/yellow/full, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) "jX" = ( @@ -5186,12 +5154,8 @@ /turf/simulated/floor/plating, /area/maintenance/sublevel) "kC" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, /obj/effect/decal/cleanable/blood/oil, +/obj/machinery/firealarm/south, /turf/simulated/floor/plating, /area/engineering/atmos) "kD" = ( @@ -5641,9 +5605,7 @@ /obj/machinery/ai_status_display{ pixel_x = 32 }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 @@ -7638,11 +7600,7 @@ /area/mine/unexplored) "on" = ( /obj/machinery/computer/message_monitor, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, +/obj/machinery/firealarm/west, /turf/simulated/floor/bluegrid, /area/turret_protected/ai_server_room) "oo" = ( @@ -9809,9 +9767,7 @@ icon_state = "intact"; dir = 4 }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) "rY" = ( @@ -9854,11 +9810,7 @@ /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) "sb" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -11363,9 +11315,7 @@ /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) "uv" = ( -/obj/machinery/firealarm{ - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) "uw" = ( @@ -11580,11 +11530,7 @@ /obj/machinery/light{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, +/obj/machinery/firealarm/west, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 @@ -13104,10 +13050,7 @@ /turf/simulated/floor/tiled/white, /area/medical/virology) "xN" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, +/obj/machinery/firealarm/south, /obj/effect/floor_decal/corner/lime/full{ icon_state = "corner_white_full"; dir = 1 @@ -13230,11 +13173,7 @@ icon_state = "corner_white"; dir = 9 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/medical/virology) "xX" = ( @@ -13368,10 +13307,7 @@ /obj/machinery/atmospherics/portables_connector{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, +/obj/machinery/firealarm/west, /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Isolation Port"; dir = 4 @@ -14793,11 +14729,7 @@ /area/medical/patient_wing) "As" = ( /obj/structure/closet/excavation, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/outpost/research/eva) "At" = ( @@ -16270,10 +16202,7 @@ icon_state = "corner_white"; dir = 4 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) @@ -16336,15 +16265,12 @@ /turf/simulated/floor/plating, /area/medical/patient_wing) "CU" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, /obj/structure/closet/secure_closet/personal/patient, /obj/effect/floor_decal/corner/pink/full{ icon_state = "corner_white_full"; dir = 8 }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/medical/patient_a) "CV" = ( @@ -16397,15 +16323,12 @@ /turf/simulated/wall, /area/medical/patient_a) "CY" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, /obj/structure/closet/secure_closet/personal/patient, /obj/effect/floor_decal/corner/pink/full{ icon_state = "corner_white_full"; dir = 8 }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/medical/patient_b) "CZ" = ( @@ -16884,11 +16807,7 @@ /turf/simulated/floor/tiled/dark, /area/rnd/xenobiology) "DZ" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24; - pixel_y = 6 - }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled/dark, /area/rnd/xenobiology) "Ea" = ( @@ -17447,13 +17366,10 @@ /obj/structure/bed/chair{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, /obj/effect/floor_decal/corner/lime{ dir = 6 }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) "EW" = ( @@ -17986,11 +17902,7 @@ icon_state = "corner_white"; dir = 10 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) "FS" = ( @@ -18169,15 +18081,11 @@ pixel_x = 11; pixel_y = 0 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24; - pixel_y = 6 - }, /obj/effect/floor_decal/corner/white/full{ icon_state = "corner_white_full"; dir = 1 }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled{ icon_state = "vault"; dir = 5 @@ -18854,11 +18762,6 @@ /turf/simulated/floor/tiled/white, /area/medical/virology) "Ha" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, /obj/machinery/disposal, /obj/effect/decal/warning_stripes, /obj/structure/disposalpipe/trunk{ @@ -18867,6 +18770,7 @@ /obj/structure/sign/deathsposal{ pixel_x = 32 }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/medical/virology) "Hb" = ( @@ -19167,14 +19071,10 @@ /area/medical/virology) "HF" = ( /obj/structure/window/reinforced, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, /obj/effect/floor_decal/corner/lime{ dir = 10 }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/medical/virology) "HG" = ( @@ -20761,10 +20661,6 @@ icon_state = "comfychair_preview"; dir = 4 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -20774,6 +20670,7 @@ icon_state = "tube1"; pixel_x = 0 }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/medical/ward) "Kv" = ( @@ -20882,10 +20779,7 @@ /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) "KG" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled{ icon_state = "vault"; dir = 5 @@ -20929,11 +20823,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/medical/medbay4) "KM" = ( @@ -22491,12 +22381,8 @@ /area/rnd/storage) "Nw" = ( /obj/machinery/portable_atmospherics/canister/sleeping_agent, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24; - pixel_y = 6 - }, /obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/rnd/storage) "Nx" = ( @@ -22673,13 +22559,10 @@ /obj/item/device/assembly/timer, /obj/item/device/assembly/timer, /obj/item/device/assembly/timer, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, /obj/machinery/light{ dir = 8 }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/medical/medbay4) "NL" = ( @@ -22860,10 +22743,7 @@ listening = 1; name = "Break Room Emergency Phone" }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled/dark, /area/crew_quarters/medbreak) "Og" = ( @@ -23198,11 +23078,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/medbreak) "OL" = ( @@ -23503,14 +23379,11 @@ /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/medical) "Pi" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/medical) "Pj" = ( @@ -23955,12 +23828,8 @@ /obj/machinery/atmospherics/portables_connector{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24; - pixel_y = 6 - }, /obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) "Qg" = ( @@ -24154,11 +24023,7 @@ /turf/simulated/floor/tiled, /area/rnd/mixing) "Qw" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/medical/medbay4) "Qx" = ( @@ -24575,15 +24440,11 @@ /area/rnd/mixing) "Ri" = ( /obj/structure/closet/secure_closet/scientist, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 10 }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/rnd/mixing) "Rj" = ( @@ -25107,6 +24968,10 @@ }, /turf/simulated/floor/tiled/airless, /area/rnd/test_area) +"Sn" = ( +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled, +/area/outpost/engineering/hallway) (1,1,1) = {" aa @@ -40620,7 +40485,7 @@ eV fx fZ gH -fT +hp hW iB ja @@ -41648,7 +41513,7 @@ cJ ba fT gE -hp +fT hY iF ja diff --git a/maps/aurora/aurora-4_mainlevel.dmm b/maps/aurora/aurora-4_mainlevel.dmm index 289e7f820cb..f4869ccf99c 100644 --- a/maps/aurora/aurora-4_mainlevel.dmm +++ b/maps/aurora/aurora-4_mainlevel.dmm @@ -1805,14 +1805,10 @@ /turf/simulated/floor/tiled, /area/security/vacantoffice2) "adF" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, /obj/effect/floor_decal/corner/blue{ dir = 10 }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/security/vacantoffice2) "adG" = ( @@ -5433,14 +5429,10 @@ /turf/simulated/wall/r_wall, /area/engineering/atmos) "all" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/engineering/atmos) "alm" = ( @@ -6941,11 +6933,7 @@ icon_state = "corner_white"; dir = 6 }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled/dark, /area/security/main) "aoe" = ( @@ -7471,10 +7459,7 @@ /area/security/forensics_office) "apg" = ( /obj/structure/coatrack, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/security/forensics_office) "aph" = ( @@ -7653,11 +7638,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) "apF" = ( @@ -8307,10 +8288,7 @@ /obj/item/clothing/head/hardhat, /obj/item/clothing/head/hardhat, /obj/item/clothing/head/hardhat, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) "aqI" = ( @@ -8855,11 +8833,7 @@ /area/engineering/engine_smes) "arF" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24; - pixel_y = 6 - }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/engineering/engine_smes) "arG" = ( @@ -9053,11 +9027,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled/dark, /area/security/armoury) "arY" = ( @@ -9569,11 +9539,7 @@ /area/engineering/storage) "asQ" = ( /obj/machinery/portable_atmospherics/canister/phoron, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/plating, /area/engineering/storage) "asR" = ( @@ -9657,12 +9623,8 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, /obj/machinery/light, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) "asZ" = ( @@ -10282,11 +10244,7 @@ "atW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) "atX" = ( @@ -11401,10 +11359,7 @@ /obj/item/device/flashlight, /obj/item/device/gps/engineering, /obj/item/weapon/storage/belt/utility, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/engineering/locker_room) "avE" = ( @@ -12406,11 +12361,7 @@ icon_state = "tube1"; pixel_y = 0 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/security/brig) "axp" = ( @@ -13209,11 +13160,8 @@ /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) "ayx" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, /obj/item/modular_computer/console/preset/engineering, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) "ayy" = ( @@ -14170,11 +14118,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) "aAe" = ( @@ -14663,11 +14607,7 @@ /turf/simulated/floor/tiled, /area/hallway/primary/starboard) "aAY" = ( -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) "aAZ" = ( @@ -14735,16 +14675,12 @@ }, /area/bridge) "aBd" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/bridge) "aBe" = ( @@ -14909,15 +14845,11 @@ /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) "aBq" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 10 }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) "aBr" = ( @@ -15277,11 +15209,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24; - pixel_y = 6 - }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled/dark, /area/security/armoury) "aBU" = ( @@ -17987,10 +17915,6 @@ /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) "aGr" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, /obj/machinery/light{ dir = 1 }, @@ -17998,6 +17922,7 @@ icon_state = "corner_white"; dir = 6 }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) "aGs" = ( @@ -18563,11 +18488,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/wood, /area/lawoffice) "aHg" = ( @@ -20007,11 +19928,7 @@ /turf/simulated/floor/tiled, /area/engineering/storage) "aJr" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/engineering/storage) "aJs" = ( @@ -20456,16 +20373,12 @@ /turf/simulated/floor/tiled/dark, /area/security/warden) "aKe" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, /obj/structure/table/standard, /obj/item/weapon/book/manual/security_space_law, /obj/item/device/eftpos{ eftpos_name = "Brig EFTPOS scanner" }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled/dark, /area/security/warden) "aKf" = ( @@ -22108,10 +22021,7 @@ dir = 1 }, /obj/machinery/photocopier, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 24 - }, +/obj/machinery/firealarm/north, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) "aMY" = ( @@ -22730,11 +22640,7 @@ /turf/simulated/floor/tiled, /area/hallway/primary/starboard) "aOa" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) "aOb" = ( @@ -22865,11 +22771,7 @@ icon_state = "corner_white"; dir = 5 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/bridge) "aOj" = ( @@ -23428,11 +23330,7 @@ /area/security/brig) "aPj" = ( /obj/machinery/computer/station_alert, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/security/brig) "aPk" = ( @@ -24142,10 +24040,6 @@ /area/engineering/foyer) "aQt" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 9 @@ -24253,11 +24147,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) "aQG" = ( @@ -24305,14 +24195,11 @@ /obj/structure/bed/chair{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/security/lobby) "aQK" = ( @@ -24885,11 +24772,7 @@ pixel_x = 0; pixel_y = -27 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/wood, /area/crew_quarters/captain) "aRH" = ( @@ -25802,11 +25685,6 @@ /area/engineering/foyer) "aTg" = ( /obj/structure/closet/crate, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, /obj/effect/floor_decal/corner/yellow/full{ icon_state = "corner_white_full"; dir = 4 @@ -25816,6 +25694,7 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/engineering/foyer) "aTh" = ( @@ -26215,11 +26094,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/security/prison) "aTO" = ( @@ -27409,10 +27284,7 @@ /turf/simulated/floor/tiled, /area/hallway/primary/port) "aVY" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 24 - }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/hallway/primary/port) "aVZ" = ( @@ -27693,11 +27565,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/lino, /area/security/detectives_office) "aWD" = ( @@ -27866,11 +27734,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, +/obj/machinery/firealarm/east, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) "aWR" = ( @@ -28969,11 +28833,7 @@ /turf/simulated/floor/tiled, /area/hallway/primary/central_one) "aYC" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) "aYD" = ( @@ -29109,11 +28969,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) "aYR" = ( @@ -29533,12 +29389,8 @@ /turf/simulated/floor/tiled, /area/engineering/foyer) "aZB" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, /obj/effect/floor_decal/corner/yellow, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/engineering/foyer) "aZC" = ( @@ -30462,11 +30314,9 @@ /turf/simulated/floor/tiled/white, /area/medical/exam_room) "bbr" = ( -/obj/machinery/firealarm{ - pixel_y = 27 - }, /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/bed/chair, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/medical/exam_room) "bbs" = ( @@ -31120,16 +30970,12 @@ icon_state = "intact"; dir = 9 }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, /obj/machinery/light{ dir = 4; icon_state = "tube1"; pixel_x = 0 }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/medical/icu) "bcy" = ( @@ -32027,10 +31873,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/medical/temp_morgue) "bdU" = ( @@ -32218,11 +32061,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, +/obj/machinery/firealarm/east, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) "beh" = ( @@ -32539,14 +32378,11 @@ "beH" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/dropper, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 24 - }, /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 8 }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/medical/chemistry) "beI" = ( @@ -32661,11 +32497,8 @@ pixel_y = 4 }, /obj/item/weapon/storage/firstaid/o2, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, /obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/medical/medbay) "beQ" = ( @@ -33933,15 +33766,12 @@ /area/assembly/robotics) "bhf" = ( /obj/machinery/disposal, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 24 - }, /obj/machinery/camera/network/research{ c_tag = "Research - Robotics Manufacturing" }, /obj/structure/disposalpipe/trunk, /obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/assembly/robotics) "bhg" = ( @@ -34390,15 +34220,11 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 6 }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/medical/medbay3) "bhO" = ( @@ -36597,11 +36423,7 @@ icon_state = "corner_white"; dir = 10 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) "blv" = ( @@ -37457,11 +37279,7 @@ d2 = 8; icon_state = "1-8" }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/medical/medbay) "bmF" = ( @@ -37543,12 +37361,8 @@ /area/medical/psych) "bmM" = ( /obj/item/weapon/bedsheet/brown, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, /obj/structure/bed/psych, +/obj/machinery/firealarm/east, /turf/simulated/floor/carpet, /area/medical/psych) "bmN" = ( @@ -37601,11 +37415,7 @@ /obj/effect/floor_decal/corner/lime{ dir = 6 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24; - pixel_y = 0 - }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/medical/medbay2) "bmS" = ( @@ -37955,10 +37765,6 @@ /turf/simulated/floor/tiled, /area/assembly/robotics) "bnt" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, /obj/machinery/camera/network/research{ c_tag = "Research - Robotics Charging Bay"; dir = 4; @@ -37969,6 +37775,7 @@ icon_state = "tube1"; pixel_y = 0 }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/assembly/robotics) "bnu" = ( @@ -39340,11 +39147,7 @@ /turf/simulated/floor/tiled, /area/bridge/minibar) "bpG" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/carpet, /area/bridge/minibar) "bpH" = ( @@ -39504,10 +39307,7 @@ /turf/simulated/floor/tiled, /area/hallway/primary/central_one) "bpV" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 24 - }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) "bpW" = ( @@ -40018,15 +39818,11 @@ icon_state = "corner_white"; dir = 6 }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, /obj/machinery/camera/network/medbay{ c_tag = "Medical - Chief Medical Officer's Office"; dir = 8 }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) "bqK" = ( @@ -40230,13 +40026,10 @@ dir = 10; icon_state = "intact" }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 24 - }, /obj/machinery/light/small{ dir = 1 }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled/dark, /area/server) "bqW" = ( @@ -40328,10 +40121,7 @@ /turf/simulated/floor/tiled/white, /area/rnd/research) "brf" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 24 - }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/rnd/research) "brg" = ( @@ -40765,11 +40555,6 @@ /turf/simulated/floor/tiled/white, /area/medical/medbay2) "brW" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, /obj/structure/bed/roller, /obj/machinery/camera/network/medbay{ c_tag = "Medical - Medbay Hallway East"; @@ -40781,6 +40566,7 @@ }, /obj/machinery/light, /obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/medical/medbay2) "brX" = ( @@ -41977,11 +41763,7 @@ /obj/structure/table/standard, /obj/item/device/flashlight/pen, /obj/item/clothing/accessory/stethoscope, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) "btW" = ( @@ -42107,9 +41889,7 @@ pixel_y = 5 }, /obj/item/weapon/reagent_containers/glass/bottle/inaprovaline, -/obj/machinery/firealarm{ - pixel_y = 27 - }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/medical/surgery) "bug" = ( @@ -42516,11 +42296,6 @@ /area/medical/medbay) "buT" = ( /obj/machinery/photocopier, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 9 @@ -42529,6 +42304,7 @@ icon_state = "corner_white"; dir = 6 }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/medical/medbay) "buU" = ( @@ -42993,10 +42769,6 @@ /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) "bvG" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 24 - }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -43009,6 +42781,7 @@ icon_state = "4-8" }, /obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) "bvH" = ( @@ -43297,10 +43070,7 @@ /turf/simulated/floor/tiled/white, /area/rnd/lab) "bvX" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 24 - }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/rnd/lab) "bvY" = ( @@ -44257,13 +44027,10 @@ /turf/simulated/floor/tiled/white, /area/medical/surgery) "bxB" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, /obj/structure/bed/chair{ dir = 4 }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/medical/medbay2) "bxC" = ( @@ -44824,11 +44591,7 @@ /turf/simulated/floor/tiled/white, /area/medical/surgerywing) "byt" = ( -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) "byu" = ( @@ -45147,11 +44910,6 @@ /turf/simulated/floor/tiled/white, /area/medical/reception) "byY" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, /obj/machinery/camera/network/medbay{ c_tag = "Medical - MedBay Reception South"; dir = 1; @@ -45160,6 +44918,7 @@ /obj/effect/floor_decal/corner/lime{ dir = 6 }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/medical/reception) "byZ" = ( @@ -45739,11 +45498,7 @@ /turf/simulated/floor/tiled, /area/hallway/primary/central_one) "bzV" = ( -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) "bzW" = ( @@ -46427,15 +46182,11 @@ /turf/simulated/floor/tiled/white, /area/medical/surgery) "bBf" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 10 }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/medical/surgery) "bBg" = ( @@ -47088,10 +46839,6 @@ /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) "bCj" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 24 - }, /obj/machinery/camera/network/research{ c_tag = "Research - Break Room" }, @@ -47099,6 +46846,7 @@ icon_state = "corner_white"; dir = 8 }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) "bCk" = ( @@ -47718,14 +47466,11 @@ /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) "bDm" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 6 }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) "bDn" = ( @@ -48240,11 +47985,6 @@ pixel_x = 11; pixel_y = 0 }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -48257,6 +47997,7 @@ icon_state = "corner_white"; dir = 6 }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) "bEf" = ( @@ -49296,11 +49037,7 @@ pixel_y = 5 }, /obj/item/weapon/reagent_containers/glass/bottle/inaprovaline, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/medical/surgery) "bFG" = ( @@ -49514,11 +49251,7 @@ /area/hallway/primary/central_one) "bFZ" = ( /obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) "bGa" = ( @@ -49556,10 +49289,7 @@ pixel_x = 1; pixel_y = 5 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, +/obj/machinery/firealarm/west, /turf/simulated/floor/wood, /area/library) "bGf" = ( @@ -49823,10 +49553,6 @@ /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) "bGE" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = 24 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -49968,11 +49694,7 @@ dir = 2 }, /obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24; - pixel_y = 6 - }, +/obj/machinery/firealarm/east, /turf/simulated/floor/wood, /area/library) "bGS" = ( @@ -53541,10 +53263,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/hallway/primary/aft) "bOe" = ( @@ -54155,11 +53874,6 @@ /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) "bPk" = ( -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/chem_master/condimaster{ name = "CondiMaster Neo"; @@ -54169,6 +53883,7 @@ c_tag = "Kitchen - Food Preparation"; dir = 8 }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) "bPl" = ( @@ -54536,16 +54251,12 @@ /area/hydroponics) "bQg" = ( /obj/machinery/vending/hydronutrients, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 6 }, /obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/hydroponics) "bQh" = ( @@ -55294,10 +55005,7 @@ /area/hallway/primary/aft) "bRF" = ( /obj/structure/table/marble, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, +/obj/machinery/firealarm/west, /turf/simulated/floor/lino, /area/crew_quarters/bar) "bRG" = ( @@ -55858,15 +55566,11 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, /obj/effect/floor_decal/corner/green/full{ icon_state = "corner_white_full"; dir = 4 }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/hydroponics) "bSR" = ( @@ -55916,11 +55620,7 @@ /turf/simulated/floor/tiled, /area/hallway/primary/aft) "bSW" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, +/obj/machinery/firealarm/west, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bSX" = ( @@ -56249,9 +55949,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/quartermaster/office) "bTF" = ( @@ -56432,11 +56130,7 @@ /turf/simulated/floor/tiled, /area/hallway/primary/aft) "bTY" = ( -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/hallway/primary/aft) "bTZ" = ( @@ -57008,11 +56702,7 @@ "bVd" = ( /obj/item/weapon/bedsheet/brown, /obj/structure/bed, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, +/obj/machinery/firealarm/east, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bVe" = ( @@ -57503,16 +57193,12 @@ icon_state = "tube1"; pixel_x = 0 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24; - pixel_y = 0 - }, /obj/effect/floor_decal/corner/brown, /obj/structure/table/standard{ name = "plastic table frame" }, /obj/item/weapon/folder/yellow, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/quartermaster/office) "bVU" = ( @@ -57858,15 +57544,12 @@ /turf/simulated/floor/tiled, /area/quartermaster/storage) "bWF" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 8 }, /obj/effect/large_stock_marker, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/quartermaster/storage) "bWG" = ( @@ -58227,11 +57910,7 @@ dir = 4 }, /obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled{ icon_state = "vault"; dir = 5 @@ -58835,14 +58514,11 @@ /turf/simulated/wall, /area/maintenance/disposal) "bYw" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 9 }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/maintenance/disposal) "bYx" = ( @@ -59201,13 +58877,10 @@ icon_state = "corner_white_full"; dir = 8 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/quartermaster/office) "bZg" = ( @@ -60398,10 +60071,7 @@ icon_state = "tube1"; dir = 8 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, +/obj/machinery/firealarm/west, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) "cbk" = ( @@ -61281,10 +60951,7 @@ /obj/item/weapon/folder/yellow, /obj/item/weapon/pen, /obj/effect/floor_decal/corner/brown/full, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) "ccQ" = ( @@ -62516,11 +62183,7 @@ pixel_x = 5; pixel_y = 5 }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) "cfh" = ( @@ -62603,10 +62266,7 @@ icon_state = "corner_white"; dir = 9 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/security/brig) "cfp" = ( @@ -63461,10 +63121,7 @@ }, /obj/structure/table/standard, /obj/item/weapon/paper/sentencing, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/security/brig) "cgR" = ( @@ -63739,11 +63396,7 @@ icon_state = "corner_white"; dir = 6 }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/security/brig) "chm" = ( @@ -64077,10 +63730,7 @@ icon_state = "corner_white"; dir = 5 }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/security/brig) "chK" = ( @@ -64278,11 +63928,7 @@ /obj/item/device/radio/intercom{ pixel_x = -27 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, +/obj/machinery/firealarm/south, /turf/simulated/floor/carpet, /area/crew_quarters/captain) "cib" = ( @@ -64938,11 +64584,7 @@ /turf/simulated/floor/plating, /area/crew_quarters/captain) "cja" = ( -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/security/brig) "cjb" = ( @@ -65360,6 +65002,22 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) +"cjS" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"cjT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/wood, +/area/chapel/office) (1,1,1) = {" aaa @@ -82934,7 +82592,7 @@ aab adv cgv cgy -cgC +cgv adv apA apA @@ -83190,8 +82848,8 @@ aab aab adv cgw -cgz -cgD +cgy +cgv adv apA apA @@ -83447,8 +83105,8 @@ aab aab adv alY -cgA -cgE +cgy +cgv adv apA apA @@ -83703,7 +83361,7 @@ aab aab aab alk -cgx +cgv amP anC adv @@ -85249,8 +84907,8 @@ amb amU anH cgI -cgK -cgO +cgI +cgI cgP asU cgW @@ -90704,7 +90362,7 @@ bDn bGD bHq bHq -bIW +cjS bFV bKu bFV @@ -92255,7 +91913,7 @@ bNz bMC bNz bNA -bOb +cjT bOF bPd bPL @@ -93996,7 +93654,7 @@ avO chi ayX avO -aBY +chi aaV chJ aGH @@ -94766,8 +94424,8 @@ cgY avR aaV aza -aAB -chq +cgS +cgY aaV chL aGJ @@ -95537,8 +95195,8 @@ chb chg aaV azc -aAB -chs +cgS +cgY aaV aEW aGH @@ -96821,7 +96479,7 @@ atn aut avX chk -aze +chk axr aCf aDu @@ -98912,8 +98570,8 @@ bqi brD bsU cjH -cjL -cjM +cjH +cjH bxr boW bzg @@ -102485,7 +102143,7 @@ auE azz aLZ cdu -aPB +aAY azz azz azz @@ -105332,7 +104990,7 @@ bae bls bmR bod -bpr +cjF bqz brZ btf @@ -111490,7 +111148,7 @@ aYf aZq baw bbL -bdd +baz baz aWX bgM @@ -111989,7 +111647,7 @@ aBj aPQ chz chN -chZ +chz aPQ aKQ aMC @@ -112502,7 +112160,7 @@ aab aab aPQ chB -chP +chO cib aPQ aKS @@ -112759,7 +112417,7 @@ aab aab aPQ chC -chQ +chO cic aPQ aKT @@ -113790,9 +113448,9 @@ chE chT cig cil -cir -cix -aOy +cil +cil +cil aQa ciV aPQ @@ -114046,10 +113704,10 @@ chu chF chU cih -cim -cis -ciy -aOz +cih +cih +cih +cih aQb aRJ aPQ @@ -114563,8 +114221,8 @@ cij aPQ aPQ aPQ -ciE -ciO +chH +chW ciX aPQ aUG @@ -114821,7 +114479,7 @@ aaa aaa aaa aab -ciP +chX aab aMG aUH diff --git a/maps/aurora/aurora-6_surface.dmm b/maps/aurora/aurora-6_surface.dmm index 4a82f6e184a..5ab80099ba6 100644 --- a/maps/aurora/aurora-6_surface.dmm +++ b/maps/aurora/aurora-6_surface.dmm @@ -729,10 +729,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/dock) -"bp" = ( +"bq" = ( /turf/simulated/wall, /area/hallway/secondary/entry/dock) -"bq" = ( +"br" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -744,7 +744,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/dock) -"br" = ( +"bs" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -756,7 +756,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/plating, /area/hallway/secondary/entry/dock) -"bs" = ( +"bt" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -768,12 +768,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/dock) -"bt" = ( +"bu" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"bu" = ( +"bx" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -785,10 +785,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/plating, /area/hallway/secondary/entry/dock) -"bv" = ( +"by" = ( /turf/simulated/open, /area/turret_protected/tcomsat) -"bw" = ( +"bz" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -797,10 +797,10 @@ }, /turf/simulated/open, /area/turret_protected/tcomsat) -"bx" = ( +"bA" = ( /turf/simulated/floor/plating, /area/turret_protected/tcomsat) -"by" = ( +"bB" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -817,13 +817,13 @@ }, /turf/simulated/floor/plating, /area/turret_protected/tcomsat) -"bz" = ( +"bC" = ( /obj/machinery/atmospherics/valve{ dir = 4 }, /turf/simulated/floor/plating, /area/turret_protected/tcomsat) -"bA" = ( +"bD" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ dir = 1; icon_state = "map" @@ -831,21 +831,21 @@ /obj/machinery/meter, /turf/simulated/floor/plating, /area/turret_protected/tcomsat) -"bB" = ( +"bE" = ( /obj/machinery/atmospherics/pipe/tank/air{ dir = 8 }, /turf/simulated/floor/plating, /area/turret_protected/tcomsat) -"bC" = ( +"bF" = ( /turf/simulated/floor/plating, /area/tcommsat/computer) -"bD" = ( +"bG" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"bE" = ( +"bH" = ( /obj/machinery/light{ dir = 1 }, @@ -853,7 +853,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"bF" = ( +"bI" = ( /obj/structure/table/reinforced, /obj/item/stack/material/phoron{ amount = 10 @@ -863,7 +863,7 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"bG" = ( +"bJ" = ( /obj/structure/table/reinforced, /obj/item/clothing/shoes/magboots, /obj/item/clothing/suit/space/void/engineering, @@ -875,21 +875,21 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"bH" = ( +"bK" = ( /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"bI" = ( +"bL" = ( /obj/machinery/power/port_gen/pacman, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"bJ" = ( +"bM" = ( /obj/effect/landmark{ name = "carpspawn" }, /turf/unsimulated/chasm_mask, /area/mine/explored) -"bK" = ( +"bN" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -901,12 +901,9 @@ dir = 4 }, /obj/machinery/door/firedoor, -/obj/machinery/status_display/arrivals_display{ - pixel_y = 32 - }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/dock) -"bL" = ( +"bO" = ( /obj/effect/floor_decal/corner/blue/full{ dir = 8 }, @@ -922,44 +919,39 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"bM" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"bN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"bO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - icon_state = "intact"; - dir = 4 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) "bP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, /obj/effect/floor_decal/corner/blue{ dir = 5 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) "bQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/dock) +"bR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + icon_state = "intact"; + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/dock) +"bS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/dock) +"bT" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -969,7 +961,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"bR" = ( +"bU" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" @@ -979,13 +971,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"bS" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"bT" = ( +"bV" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -994,20 +980,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"bU" = ( +"bW" = ( /turf/simulated/floor/asteroid, /area/shuttle/escape/station) -"bV" = ( +"bX" = ( /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/open, /area/turret_protected/tcomsat) -"bW" = ( +"bY" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plating, /area/turret_protected/tcomsat) -"bX" = ( +"bZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/structure/cable/blue{ d1 = 1; @@ -1016,29 +1002,29 @@ }, /turf/simulated/floor/plating, /area/turret_protected/tcomsat) -"bY" = ( +"ca" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 5; icon_state = "intact" }, /turf/simulated/floor/plating, /area/turret_protected/tcomsat) -"bZ" = ( +"cb" = ( /obj/structure/window/reinforced{ dir = 8 }, /turf/simulated/open, /area/turret_protected/tcomsat) -"ca" = ( +"cc" = ( /obj/machinery/atmospherics/portables_connector, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"cb" = ( +"cd" = ( /obj/structure/filingcabinet, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"cc" = ( +"ce" = ( /obj/structure/table/standard, /obj/item/weapon/folder/yellow, /obj/item/weapon/folder/yellow, @@ -1055,29 +1041,29 @@ /obj/item/weapon/paper_bin, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"cd" = ( +"cf" = ( /obj/structure/ladder/up{ pixel_y = 16 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"ce" = ( +"cg" = ( /obj/machinery/computer/telecomms/traffic, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"cf" = ( +"ch" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"cg" = ( +"ci" = ( /obj/item/weapon/reagent_containers/food/snacks/meat/syntiflesh{ name = "Cuban Pete-Meat" }, /turf/simulated/floor/plating, /area/tcommsat/computer) -"ch" = ( +"cj" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; pixel_x = -29; @@ -1090,10 +1076,10 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"ci" = ( +"ck" = ( /turf/simulated/floor/tiled, /area/tcommsat/computer) -"cj" = ( +"cl" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -1104,35 +1090,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/dock) -"ck" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/blue/full, -/obj/machinery/atmospherics/portables_connector{ +"cm" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/eastright{ - dir = 1; - name = "interior door"; - req_access = null - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"cl" = ( /obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"cm" = ( +/obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) "cn" = ( @@ -1146,6 +1109,9 @@ /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) "co" = ( +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/dock) +"cp" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -1155,7 +1121,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"cp" = ( +"cq" = ( /obj/machinery/atmospherics/binary/pump/on{ dir = 1; name = "Distro to Canister"; @@ -1167,7 +1133,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/dock) -"cq" = ( +"cr" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -1178,13 +1144,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"cr" = ( +"cs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/plating, /area/turret_protected/tcomsat) -"cs" = ( +"ct" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/blue{ d1 = 1; @@ -1193,7 +1159,7 @@ }, /turf/simulated/floor/plating, /area/turret_protected/tcomsat) -"ct" = ( +"cu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -1204,11 +1170,11 @@ }, /turf/simulated/floor/plating, /area/turret_protected/tcomsat) -"cu" = ( +"cv" = ( /obj/structure/closet, /turf/simulated/floor/plating, /area/turret_protected/tcomsat) -"cv" = ( +"cw" = ( /obj/item/device/radio/intercom{ dir = 8; name = "Station Intercom (General)"; @@ -1220,14 +1186,14 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"cw" = ( +"cx" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4; icon_state = "intact" }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"cx" = ( +"cy" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -1237,21 +1203,21 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"cy" = ( +"cz" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ icon_state = "intact"; dir = 4 }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"cz" = ( +"cA" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10; icon_state = "intact" }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"cA" = ( +"cB" = ( /obj/machinery/computer/telecomms/monitor{ network = "tcommsat" }, @@ -1262,7 +1228,7 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"cB" = ( +"cC" = ( /obj/machinery/light{ dir = 8 }, @@ -1285,12 +1251,12 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"cC" = ( +"cD" = ( /obj/machinery/autolathe, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"cD" = ( +"cE" = ( /obj/structure/bed/chair, /obj/structure/window/reinforced{ dir = 1 @@ -1300,17 +1266,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"cE" = ( -/obj/structure/bed/chair, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) "cF" = ( /obj/structure/bed/chair, /obj/structure/window/reinforced{ @@ -1320,13 +1275,19 @@ icon_state = "corner_white"; dir = 5 }, -/obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) "cG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/effect/floor_decal/industrial/warning/cee, -/turf/simulated/floor/plating, +/obj/structure/bed/chair, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) "cH" = ( /obj/structure/bed/chair, @@ -1717,20 +1678,12 @@ /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) "dr" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/blue/full, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"ds" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"dt" = ( +"ds" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -1743,7 +1696,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"du" = ( +"dt" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -1757,7 +1710,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"dv" = ( +"du" = ( /obj/machinery/power/solar{ id = "portsolar"; name = "Port Solar Array" @@ -1770,7 +1723,7 @@ icon_state = "solarpanel" }, /area/solar/port) -"dw" = ( +"dv" = ( /obj/structure/cable/yellow{ d1 = 2; d2 = 8; @@ -1783,7 +1736,7 @@ }, /turf/simulated/floor/airless, /area/solar/port) -"dx" = ( +"dw" = ( /obj/machinery/power/solar{ id = "portsolar"; name = "Port Solar Array" @@ -1796,7 +1749,7 @@ icon_state = "solarpanel" }, /area/solar/port) -"dy" = ( +"dx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled{ @@ -1804,7 +1757,7 @@ dir = 5 }, /area/turret_protected/tcomsat) -"dz" = ( +"dy" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -1813,20 +1766,20 @@ }, /turf/simulated/open, /area/turret_protected/tcomsat) -"dA" = ( +"dz" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/machinery/light, /turf/simulated/open, /area/turret_protected/tcomsat) -"dB" = ( +"dA" = ( /obj/structure/window/reinforced{ dir = 1 }, /turf/simulated/open, /area/turret_protected/tcomsat) -"dC" = ( +"dB" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -1838,7 +1791,7 @@ /obj/structure/lattice/catwalk, /turf/simulated/open, /area/turret_protected/tcomsat) -"dD" = ( +"dC" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -1860,7 +1813,7 @@ /obj/structure/lattice/catwalk, /turf/simulated/open, /area/turret_protected/tcomsat) -"dE" = ( +"dD" = ( /obj/machinery/light{ dir = 8 }, @@ -1871,7 +1824,7 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"dF" = ( +"dE" = ( /obj/machinery/atmospherics/unary/freezer{ dir = 2; icon_state = "freezer_1"; @@ -1880,7 +1833,7 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"dG" = ( +"dF" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -1889,7 +1842,7 @@ /obj/machinery/ntnet_relay, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"dH" = ( +"dG" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; icon_state = "intact" @@ -1903,7 +1856,7 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"dI" = ( +"dH" = ( /obj/machinery/door/airlock/maintenance_hatch{ frequency = 1381; icon_state = "door_locked"; @@ -1918,7 +1871,7 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"dJ" = ( +"dI" = ( /obj/machinery/airlock_sensor{ frequency = 1381; id_tag = "server_access_sensor"; @@ -1946,13 +1899,13 @@ }, /turf/simulated/floor/plating, /area/tcommsat/computer) -"dK" = ( +"dJ" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, /area/tcommsat/computer) -"dL" = ( +"dK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, @@ -1965,7 +1918,7 @@ dir = 5 }, /area/tcommsat/computer) -"dM" = ( +"dL" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -1977,7 +1930,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/hallway/secondary/entry/dock) -"dN" = ( +"dM" = ( /obj/structure/bed/chair, /obj/structure/window/reinforced{ dir = 1 @@ -1991,7 +1944,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"dO" = ( +"dN" = ( /obj/structure/bed/chair, /obj/structure/window/reinforced{ dir = 1 @@ -2009,7 +1962,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"dP" = ( +"dO" = ( /obj/structure/bed/chair, /obj/structure/window/reinforced{ dir = 1 @@ -2026,7 +1979,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"dQ" = ( +"dP" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -2037,7 +1990,7 @@ /obj/structure/bed/chair, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"dR" = ( +"dQ" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -2047,7 +2000,7 @@ /obj/structure/bed/chair, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"dS" = ( +"dR" = ( /obj/structure/cable/yellow{ d1 = 2; d2 = 8; @@ -2065,22 +2018,17 @@ }, /turf/simulated/floor/airless, /area/solar/port) -"dT" = ( -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/turret_protected/tcomsat) -"dU" = ( +"dS" = ( /obj/machinery/porta_turret/stationary, /obj/effect/decal/warning_stripes, /turf/simulated/floor/plating{ roof_type = null }, /area/turret_protected/tcomsat) -"dV" = ( +"dT" = ( /turf/simulated/wall/r_wall, /area/tcommsat/chamber) -"dW" = ( +"dU" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -2095,7 +2043,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/tcommsat/chamber) -"dX" = ( +"dV" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -2105,7 +2053,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/tcommsat/chamber) -"dY" = ( +"dW" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -2122,7 +2070,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/tcommsat/chamber) -"dZ" = ( +"dX" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -2134,7 +2082,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/tcommsat/chamber) -"ea" = ( +"dY" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -2149,7 +2097,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/tcommsat/chamber) -"eb" = ( +"dZ" = ( /obj/machinery/door/airlock/maintenance_hatch{ frequency = 1381; icon_state = "door_locked"; @@ -2160,10 +2108,10 @@ }, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"ec" = ( +"ea" = ( /turf/simulated/floor/asteroid, /area/syndicate_station/arrivals_dock) -"ed" = ( +"eb" = ( /obj/effect/floor_decal/corner/blue/full, /obj/structure/cable/green{ d2 = 4; @@ -2176,7 +2124,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"ee" = ( +"ec" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -2187,7 +2135,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"ef" = ( +"ed" = ( /obj/item/device/radio/intercom{ pixel_y = -32 }, @@ -2202,7 +2150,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"eg" = ( +"ee" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 8 @@ -2214,7 +2162,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"eh" = ( +"ef" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -2224,36 +2172,24 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"ei" = ( +"eg" = ( /obj/effect/floor_decal/corner/blue, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) +"ei" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/dock) "ej" = ( -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"ek" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/dock) -"el" = ( /obj/effect/floor_decal/corner/blue/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"em" = ( +"ek" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -2263,7 +2199,7 @@ dir = 5 }, /area/turret_protected/tcomsat) -"en" = ( +"el" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -2274,7 +2210,7 @@ roof_type = null }, /area/turret_protected/tcomsat) -"eo" = ( +"em" = ( /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; nitrogen = 100; @@ -2282,7 +2218,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"ep" = ( +"en" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -2299,7 +2235,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"eq" = ( +"eo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /obj/structure/cable/blue{ d1 = 4; @@ -2313,7 +2249,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"er" = ( +"ep" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -2326,7 +2262,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"es" = ( +"eq" = ( /obj/machinery/light{ dir = 1 }, @@ -2350,7 +2286,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"et" = ( +"er" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; @@ -2359,7 +2295,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"eu" = ( +"es" = ( /obj/machinery/airlock_sensor/airlock_interior{ frequency = 1381; id_tag = "server_access_in_sensor"; @@ -2375,7 +2311,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"ev" = ( +"et" = ( /obj/machinery/airlock_sensor/airlock_interior{ frequency = 1381; id_tag = "server_access_in_sensor"; @@ -2394,10 +2330,10 @@ temperature = 80 }, /area/tcommsat/chamber) -"ew" = ( +"eu" = ( /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"ex" = ( +"ev" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; @@ -2410,10 +2346,10 @@ temperature = 80 }, /area/tcommsat/chamber) -"ey" = ( +"ew" = ( /turf/simulated/wall, /area/hallway/secondary/entry/port) -"ez" = ( +"ex" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -2425,33 +2361,19 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) +"ey" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/port) "eA" = ( /obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"eB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"eC" = ( -/obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -2462,35 +2384,35 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/dock) +"eB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/dock) +"eC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/dock) "eD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"eE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) -"eF" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"eG" = ( +"eE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -2500,17 +2422,17 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"eH" = ( +"eF" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"eI" = ( +"eG" = ( /turf/simulated/wall, /area/hallway/secondary/exit) -"eJ" = ( +"eH" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -2522,7 +2444,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"eK" = ( +"eI" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -2531,7 +2453,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"eL" = ( +"eJ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -2543,7 +2465,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"eM" = ( +"eK" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -2553,7 +2475,7 @@ dir = 5 }, /area/turret_protected/tcomsat) -"eN" = ( +"eL" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -2564,11 +2486,11 @@ roof_type = null }, /area/turret_protected/tcomsat) -"eO" = ( +"eM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"eP" = ( +"eN" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -2576,7 +2498,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"eQ" = ( +"eO" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -2586,7 +2508,7 @@ }, /turf/simulated/floor/plating, /area/turret_protected/tcomsat) -"eR" = ( +"eP" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -2594,7 +2516,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/turret_protected/tcomsat) -"eS" = ( +"eQ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -2605,7 +2527,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/turret_protected/tcomsat) -"eT" = ( +"eR" = ( /obj/effect/floor_decal/corner/yellow/full{ icon_state = "corner_white_full"; dir = 8 @@ -2618,7 +2540,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"eU" = ( +"eS" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -2642,7 +2564,7 @@ /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"eV" = ( +"eT" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -2655,7 +2577,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"eW" = ( +"eU" = ( /obj/machinery/light{ dir = 1 }, @@ -2667,7 +2589,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"eX" = ( +"eV" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -2680,89 +2602,75 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) +"eW" = ( +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/port) +"eX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/port) "eY" = ( -/obj/effect/floor_decal/corner/yellow/full{ +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"eZ" = ( +/obj/effect/floor_decal/corner/red/full{ + icon_state = "corner_white_full"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"fa" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"eZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"fa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/dock) +/area/hallway/secondary/exit) "fb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/bed/chair{ + dir = 4 }, /obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/window/reinforced{ - dir = 4 +/obj/effect/floor_decal/corner/red/full{ + icon_state = "corner_white_full"; + dir = 8 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, +/turf/simulated/floor/tiled, /area/hallway/secondary/exit) "fc" = ( -/obj/effect/floor_decal/corner/red/full{ - icon_state = "corner_white_full"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"fd" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/full{ - icon_state = "corner_white_full"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"fe" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/full{ - icon_state = "corner_white_full"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"ff" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 1 @@ -2779,7 +2687,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"fg" = ( +"fd" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -2799,7 +2707,7 @@ /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"fh" = ( +"fe" = ( /obj/effect/floor_decal/corner/red/full{ icon_state = "corner_white_full"; dir = 1 @@ -2819,14 +2727,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"fi" = ( +"ff" = ( /obj/machinery/camera/network/telecom{ c_tag = "Telecomms - Port Solar Array"; dir = 4 }, /turf/unsimulated/chasm_mask, /area/solar/port) -"fj" = ( +"fg" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -2840,10 +2748,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/portsolar) -"fk" = ( +"fh" = ( /turf/simulated/wall/r_wall, /area/maintenance/portsolar) -"fl" = ( +"fi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -2853,7 +2761,7 @@ dir = 5 }, /area/turret_protected/tcomsat) -"fm" = ( +"fj" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -2865,19 +2773,19 @@ roof_type = null }, /area/turret_protected/tcomsat) -"fn" = ( +"fk" = ( /obj/machinery/telecomms/server/presets/supply, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"fo" = ( +"fl" = ( /obj/machinery/telecomms/server/presets/service, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"fp" = ( +"fm" = ( /obj/machinery/telecomms/server/presets/unused, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"fq" = ( +"fn" = ( /obj/machinery/telecomms/broadcaster/preset_right, /obj/structure/cable/blue{ d1 = 1; @@ -2891,15 +2799,15 @@ temperature = 80 }, /area/tcommsat/chamber) -"fr" = ( +"fo" = ( /obj/machinery/telecomms/server/presets/common, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"fs" = ( +"fp" = ( /obj/machinery/telecomms/server/presets/engineering, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"ft" = ( +"fq" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -2910,7 +2818,7 @@ roof_type = null }, /area/turret_protected/tcomsat) -"fu" = ( +"fr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -2921,7 +2829,7 @@ dir = 5 }, /area/turret_protected/tcomsat) -"fv" = ( +"fs" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -2931,7 +2839,7 @@ }, /turf/simulated/floor/plating, /area/turret_protected/tcomsat) -"fw" = ( +"ft" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/micro_laser, /obj/item/weapon/stock_parts/manipulator, @@ -2945,14 +2853,14 @@ /obj/item/weapon/stock_parts/micro_laser/high, /turf/simulated/floor/tiled, /area/turret_protected/tcomsat) -"fx" = ( +"fu" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/camera/network/telecom{ c_tag = "Telecomms - Storage" }, /turf/simulated/floor/tiled, /area/turret_protected/tcomsat) -"fy" = ( +"fv" = ( /obj/structure/table/rack, /obj/item/weapon/circuitboard/telecomms/processor, /obj/item/weapon/circuitboard/telecomms/processor, @@ -2964,7 +2872,7 @@ /obj/item/weapon/circuitboard/telecomms/broadcaster, /turf/simulated/floor/tiled, /area/turret_protected/tcomsat) -"fz" = ( +"fw" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -2980,7 +2888,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"fA" = ( +"fx" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -2988,7 +2896,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"fB" = ( +"fy" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/machinery/door/firedoor{ @@ -3002,15 +2910,43 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"fC" = ( +"fz" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/port) +"fA" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/port) +"fB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/port) +"fC" = ( /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) "fD" = ( +/obj/structure/bed/chair{ + dir = 8 + }, /obj/structure/window/reinforced{ dir = 4 }, @@ -3021,35 +2957,6 @@ /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) "fE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"fF" = ( -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"fG" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"fH" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -3063,14 +2970,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"fI" = ( +"fF" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"fJ" = ( +"fG" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -3081,7 +2988,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"fK" = ( +"fH" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -3093,11 +3000,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/dock) -"fL" = ( +"fI" = ( /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"fM" = ( +"fJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue{ @@ -3110,7 +3017,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/dock) -"fN" = ( +"fK" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -3121,14 +3028,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"fO" = ( +"fL" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"fP" = ( +"fM" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -3141,36 +3048,36 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) +"fN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"fO" = ( +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"fP" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) "fQ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"fR" = ( -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"fS" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 9 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"fT" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 6 @@ -3178,7 +3085,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"fU" = ( +"fR" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -3192,7 +3099,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"fV" = ( +"fS" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -3203,7 +3110,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"fW" = ( +"fT" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -3222,11 +3129,11 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"fX" = ( +"fU" = ( /obj/structure/cable/yellow, /turf/simulated/floor/airless, /area/solar/port) -"fY" = ( +"fV" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -3238,7 +3145,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/portsolar) -"fZ" = ( +"fW" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -3247,7 +3154,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/portsolar) -"ga" = ( +"fX" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -3256,7 +3163,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/portsolar) -"gb" = ( +"fY" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; @@ -3269,7 +3176,7 @@ /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/plating, /area/maintenance/portsolar) -"gc" = ( +"fZ" = ( /obj/machinery/power/terminal{ dir = 4 }, @@ -3282,7 +3189,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/portsolar) -"gd" = ( +"ga" = ( /obj/structure/cable{ d2 = 2; icon_state = "0-2"; @@ -3294,7 +3201,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/portsolar) -"ge" = ( +"gb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -3304,7 +3211,7 @@ dir = 5 }, /area/turret_protected/tcomsat) -"gf" = ( +"gc" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -3319,7 +3226,7 @@ roof_type = null }, /area/turret_protected/tcomsat) -"gg" = ( +"gd" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -3332,7 +3239,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"gh" = ( +"ge" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -3343,7 +3250,7 @@ roof_type = null }, /area/turret_protected/tcomsat) -"gi" = ( +"gf" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -3353,14 +3260,14 @@ dir = 5 }, /area/turret_protected/tcomsat) -"gj" = ( +"gg" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 }, /turf/simulated/open, /area/turret_protected/tcomsat) -"gk" = ( +"gh" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -3371,25 +3278,25 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/turret_protected/tcomsat) -"gl" = ( +"gi" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/subspace/treatment, /obj/item/weapon/stock_parts/subspace/treatment, /obj/item/weapon/stock_parts/subspace/treatment, /turf/simulated/floor/tiled, /area/turret_protected/tcomsat) -"gm" = ( +"gj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/turret_protected/tcomsat) -"gn" = ( +"gk" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/subspace/analyzer, /obj/item/weapon/stock_parts/subspace/analyzer, /obj/item/weapon/stock_parts/subspace/analyzer, /turf/simulated/floor/tiled, /area/turret_protected/tcomsat) -"go" = ( +"gl" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -3409,7 +3316,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"gp" = ( +"gm" = ( /obj/machinery/light/small, /obj/machinery/airlock_sensor{ frequency = 1380; @@ -3420,7 +3327,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"gq" = ( +"gn" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4; frequency = 1380; @@ -3441,7 +3348,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"gr" = ( +"go" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ icon_state = "intact"; dir = 4 @@ -3456,7 +3363,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"gs" = ( +"gp" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1380; @@ -3477,57 +3384,57 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"gt" = ( +"gq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) +"gr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/port) +"gs" = ( +/turf/simulated/wall, +/area/hallway/secondary/entry/fore) +"gt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) "gu" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ - dir = 8 + dir = 4 }, /obj/structure/window/reinforced{ - dir = 4 + dir = 1 }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) +/area/hallway/secondary/entry/fore) "gv" = ( -/turf/simulated/wall, -/area/hallway/secondary/entry/fore) -"gw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"gx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"gy" = ( /obj/machinery/door/airlock/glass{ name = "Blue Dock" }, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"gz" = ( +"gw" = ( /obj/machinery/door/airlock/glass{ name = "Blue Dock" }, @@ -3541,7 +3448,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"gA" = ( +"gx" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -3553,11 +3460,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"gB" = ( +"gy" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"gC" = ( +"gz" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 6 @@ -3578,7 +3485,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"gD" = ( +"gA" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -3593,7 +3500,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"gE" = ( +"gB" = ( /obj/machinery/light/small, /obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ frequency = 1380; @@ -3615,7 +3522,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"gF" = ( +"gC" = ( /obj/machinery/airlock_sensor{ frequency = 1380; id_tag = "escape_dock_north_sensor"; @@ -3625,7 +3532,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"gG" = ( +"gD" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -3645,7 +3552,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"gH" = ( +"gE" = ( /obj/machinery/power/tracker, /obj/structure/cable/yellow{ d2 = 4; @@ -3653,7 +3560,7 @@ }, /turf/simulated/floor/airless, /area/solar/port) -"gI" = ( +"gF" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -3661,24 +3568,24 @@ }, /turf/simulated/floor/airless, /area/solar/port) -"gJ" = ( +"gG" = ( /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/airless, /area/solar/port) -"gK" = ( +"gH" = ( /turf/simulated/floor/airless, /area/solar/port) -"gL" = ( +"gI" = ( /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/airless, /area/solar/port) -"gM" = ( +"gJ" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -3695,7 +3602,7 @@ }, /turf/simulated/floor/airless, /area/solar/port) -"gN" = ( +"gK" = ( /obj/machinery/door/airlock/external{ frequency = 1379; icon_state = "door_locked"; @@ -3711,7 +3618,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/portsolar) -"gO" = ( +"gL" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4; frequency = 1379; @@ -3744,7 +3651,7 @@ /obj/effect/decal/warning_stripes, /turf/simulated/floor/plating, /area/maintenance/portsolar) -"gP" = ( +"gM" = ( /obj/machinery/door/airlock/external{ frequency = 1379; icon_state = "door_locked"; @@ -3763,7 +3670,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/portsolar) -"gQ" = ( +"gN" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1379; @@ -3787,7 +3694,7 @@ /obj/machinery/atmospherics/pipe/manifold/visible, /turf/simulated/floor/plating, /area/maintenance/portsolar) -"gR" = ( +"gO" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 8; @@ -3800,7 +3707,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/portsolar) -"gS" = ( +"gP" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -3816,7 +3723,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/portsolar) -"gT" = ( +"gQ" = ( /obj/machinery/door/airlock/engineering{ name = "Beta Solar Array"; req_access = list(11) @@ -3833,7 +3740,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/portsolar) -"gU" = ( +"gR" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -3849,7 +3756,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/solarmaint) -"gV" = ( +"gS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -3859,7 +3766,7 @@ dir = 5 }, /area/turret_protected/tcomsat) -"gW" = ( +"gT" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -3874,7 +3781,7 @@ roof_type = null }, /area/turret_protected/tcomsat) -"gX" = ( +"gU" = ( /obj/structure/sign/nosmoking_2{ pixel_x = -32; pixel_y = 0 @@ -3889,19 +3796,19 @@ temperature = 80 }, /area/tcommsat/chamber) -"gY" = ( +"gV" = ( /obj/machinery/telecomms/processor/preset_two, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"gZ" = ( +"gW" = ( /obj/machinery/telecomms/bus/preset_two, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"ha" = ( +"gX" = ( /obj/machinery/telecomms/relay/preset/telecomms, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"hb" = ( +"gY" = ( /obj/machinery/telecomms/hub/preset, /obj/structure/cable/blue{ d1 = 1; @@ -3915,19 +3822,19 @@ temperature = 80 }, /area/tcommsat/chamber) -"hc" = ( +"gZ" = ( /obj/machinery/telecomms/relay/preset/station, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"hd" = ( +"ha" = ( /obj/machinery/telecomms/bus/preset_four, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"he" = ( +"hb" = ( /obj/machinery/telecomms/processor/preset_four, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"hf" = ( +"hc" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 32; pixel_y = 0 @@ -3942,7 +3849,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"hg" = ( +"hd" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -3958,7 +3865,7 @@ roof_type = null }, /area/turret_protected/tcomsat) -"hh" = ( +"he" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -3970,7 +3877,7 @@ dir = 5 }, /area/turret_protected/tcomsat) -"hi" = ( +"hf" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Telecoms Storage"; req_access = list(61) @@ -3987,7 +3894,7 @@ dir = 5 }, /area/turret_protected/tcomsat) -"hj" = ( +"hg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -3996,7 +3903,7 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomsat) -"hk" = ( +"hh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -4006,7 +3913,7 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomsat) -"hl" = ( +"hi" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/subspace/amplifier, /obj/item/weapon/stock_parts/subspace/amplifier, @@ -4022,7 +3929,7 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomsat) -"hm" = ( +"hj" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -4033,14 +3940,14 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"hn" = ( +"hk" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"ho" = ( +"hl" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -4051,7 +3958,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"hp" = ( +"hm" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/light{ dir = 8 @@ -4062,35 +3969,19 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"hq" = ( +"hn" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"hr" = ( +"ho" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"hs" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"ht" = ( +"hq" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/corner/lime/full{ icon_state = "corner_white_full"; @@ -4098,14 +3989,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"hu" = ( +"hr" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"hv" = ( +"hs" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -4117,7 +4008,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"hw" = ( +"ht" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/lime{ @@ -4131,7 +4022,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"hx" = ( +"hu" = ( /obj/item/device/radio/intercom{ pixel_y = 27 }, @@ -4144,19 +4035,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"hy" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24; - pixel_y = 6 - }, -/obj/effect/floor_decal/corner/lime/full{ - icon_state = "corner_white_full"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"hz" = ( +"hw" = ( /obj/item/device/radio/intercom{ pixel_x = -32 }, @@ -4169,36 +4048,12 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"hA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, +"hx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"hB" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - icon_state = "warningcee"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"hC" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - tag = "icon-warningcee (EAST)"; - icon_state = "warningcee"; - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/on{ - dir = 4; - name = "Distro to Canisters"; - target_pressure = 200 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/exit) -"hD" = ( +"hy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/light{ icon_state = "tube1"; dir = 4 @@ -4207,13 +4062,9 @@ icon_state = "corner_white"; dir = 6 }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4; - icon_state = "map" - }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"hE" = ( +"hz" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -4224,7 +4075,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"hF" = ( +"hA" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -4234,7 +4085,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"hG" = ( +"hB" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -4248,14 +4099,14 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"hH" = ( +"hC" = ( /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/airless, /area/solar/port) -"hI" = ( +"hD" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -4266,7 +4117,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/portsolar) -"hJ" = ( +"hE" = ( /obj/machinery/power/solar_control{ id = "auxsolarnorth"; name = "Fore Solar Control"; @@ -4275,10 +4126,10 @@ /obj/structure/cable/yellow, /turf/simulated/floor/plating, /area/maintenance/portsolar) -"hK" = ( +"hF" = ( /turf/simulated/floor/plating, /area/maintenance/portsolar) -"hL" = ( +"hG" = ( /obj/structure/cable, /obj/machinery/alarm{ dir = 1; @@ -4295,7 +4146,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/portsolar) -"hM" = ( +"hH" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -4307,7 +4158,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/solarmaint) -"hN" = ( +"hI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -4317,7 +4168,7 @@ dir = 5 }, /area/turret_protected/tcomsat) -"hO" = ( +"hJ" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -4328,27 +4179,27 @@ roof_type = null }, /area/turret_protected/tcomsat) -"hP" = ( +"hK" = ( /obj/machinery/telecomms/bus/preset_one, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"hQ" = ( +"hL" = ( /obj/machinery/telecomms/processor/preset_one, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"hR" = ( +"hM" = ( /obj/machinery/bluespacerelay, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"hS" = ( +"hN" = ( /obj/machinery/telecomms/processor/preset_three, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"hT" = ( +"hO" = ( /obj/machinery/telecomms/bus/preset_three, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"hU" = ( +"hP" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -4359,7 +4210,7 @@ roof_type = null }, /area/turret_protected/tcomsat) -"hV" = ( +"hQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -4369,7 +4220,7 @@ dir = 5 }, /area/turret_protected/tcomsat) -"hW" = ( +"hR" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -4378,7 +4229,7 @@ }, /turf/simulated/open, /area/turret_protected/tcomsat) -"hX" = ( +"hS" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -4391,22 +4242,22 @@ }, /turf/simulated/floor/plating, /area/turret_protected/tcomsat) -"hY" = ( +"hT" = ( /turf/simulated/floor/tiled, /area/turret_protected/tcomsat) -"hZ" = ( +"hU" = ( /obj/item/weapon/storage/toolbox/mechanical, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/turret_protected/tcomsat) -"ia" = ( +"hV" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/subspace/ansible, /obj/item/weapon/stock_parts/subspace/ansible, /obj/item/weapon/stock_parts/subspace/ansible, /turf/simulated/floor/tiled, /area/turret_protected/tcomsat) -"ib" = ( +"hW" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -4416,12 +4267,12 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"ic" = ( +"hX" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"id" = ( +"hZ" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -4435,14 +4286,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"ie" = ( +"ia" = ( /obj/machinery/door/airlock/glass{ name = "Yellow Dock" }, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"if" = ( +"ib" = ( /obj/effect/floor_decal/corner/lime/full{ icon_state = "corner_white_full"; dir = 8 @@ -4459,7 +4310,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"ig" = ( +"ic" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -4469,26 +4320,26 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"ih" = ( +"id" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"ii" = ( +"ie" = ( /obj/effect/floor_decal/ss13/l1, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"ij" = ( +"if" = ( /obj/effect/floor_decal/ss13/l3, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"ik" = ( +"ig" = ( /obj/effect/floor_decal/ss13/l5, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"il" = ( +"ih" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/ss13/l7, @@ -4499,26 +4350,26 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"im" = ( +"ii" = ( /obj/effect/floor_decal/ss13/l9, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"in" = ( +"ij" = ( /obj/effect/floor_decal/ss13/l11, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"io" = ( +"ik" = ( /obj/effect/floor_decal/ss13/l13, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"ip" = ( +"il" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"iq" = ( +"im" = ( /obj/effect/floor_decal/corner/lime/full{ icon_state = "corner_white_full"; dir = 1 @@ -4535,23 +4386,19 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"ir" = ( +"in" = ( /obj/machinery/door/airlock/glass{ name = "Red Dock" }, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"is" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"it" = ( +"ip" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"iu" = ( +"iq" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -4564,7 +4411,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"iv" = ( +"ir" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -4582,7 +4429,7 @@ }, /turf/simulated/floor/airless, /area/solar/port) -"iw" = ( +"it" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -4596,7 +4443,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/portsolar) -"ix" = ( +"iu" = ( /obj/machinery/telecomms/receiver/preset_right, /obj/structure/cable/blue{ d1 = 1; @@ -4610,7 +4457,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"iy" = ( +"iv" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -4621,7 +4468,7 @@ roof_type = null }, /area/turret_protected/tcomsat) -"iz" = ( +"iw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -4631,13 +4478,13 @@ dir = 5 }, /area/turret_protected/tcomsat) -"iA" = ( +"ix" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/subspace/transmitter, /obj/item/weapon/stock_parts/subspace/transmitter, /turf/simulated/floor/tiled, /area/turret_protected/tcomsat) -"iB" = ( +"iy" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/subspace/filter, /obj/item/weapon/stock_parts/subspace/filter, @@ -4649,14 +4496,14 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomsat) -"iC" = ( +"iz" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/subspace/crystal, /obj/item/weapon/stock_parts/subspace/crystal, /obj/item/weapon/stock_parts/subspace/crystal, /turf/simulated/floor/tiled, /area/turret_protected/tcomsat) -"iD" = ( +"iC" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -4672,7 +4519,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"iE" = ( +"iD" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -4691,7 +4538,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"iF" = ( +"iE" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -4701,7 +4548,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"iG" = ( +"iF" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -4720,7 +4567,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"iH" = ( +"iG" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -4737,7 +4584,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"iI" = ( +"iH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4755,7 +4602,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"iJ" = ( +"iI" = ( /obj/machinery/door/airlock/glass{ name = "Yellow Dock" }, @@ -4777,7 +4624,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"iK" = ( +"iJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4795,7 +4642,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"iL" = ( +"iK" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -4814,7 +4661,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"iM" = ( +"iL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4828,7 +4675,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"iN" = ( +"iM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4843,7 +4690,7 @@ /obj/effect/floor_decal/ss13/l2, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"iO" = ( +"iN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4858,7 +4705,7 @@ /obj/effect/floor_decal/ss13/l4, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"iP" = ( +"iO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4873,7 +4720,7 @@ /obj/effect/floor_decal/ss13/l6, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"iQ" = ( +"iP" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -4889,7 +4736,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"iR" = ( +"iQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4904,7 +4751,7 @@ /obj/effect/floor_decal/ss13/l10, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"iS" = ( +"iR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4919,7 +4766,7 @@ /obj/effect/floor_decal/ss13/l12, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"iT" = ( +"iS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4934,7 +4781,7 @@ /obj/effect/floor_decal/ss13/l14, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"iU" = ( +"iT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -4948,7 +4795,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"iV" = ( +"iU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4965,7 +4812,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"iW" = ( +"iV" = ( /obj/machinery/door/airlock/glass{ name = "Red Dock" }, @@ -4983,7 +4830,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"iX" = ( +"iW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -5001,7 +4848,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"iY" = ( +"iX" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -5020,7 +4867,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"iZ" = ( +"iY" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -5039,7 +4886,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"ja" = ( +"iZ" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -5049,7 +4896,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"jb" = ( +"ja" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -5065,7 +4912,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"jc" = ( +"jb" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -5081,47 +4928,47 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"jd" = ( +"je" = ( /obj/machinery/telecomms/server/presets/science, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"je" = ( +"jf" = ( /obj/machinery/telecomms/server/presets/medical, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"jf" = ( +"jg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 6 }, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"jg" = ( +"jh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 9 }, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"jh" = ( +"ji" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 5 }, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"ji" = ( +"jj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 10 }, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"jj" = ( +"jk" = ( /obj/machinery/telecomms/server/presets/command, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"jk" = ( +"jl" = ( /obj/machinery/telecomms/server/presets/security, /turf/simulated/floor/tiled/dark, /area/tcommsat/chamber) -"jl" = ( +"jm" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -5132,7 +4979,7 @@ roof_type = null }, /area/turret_protected/tcomsat) -"jm" = ( +"jn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -5142,7 +4989,7 @@ dir = 5 }, /area/turret_protected/tcomsat) -"jn" = ( +"jo" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -5150,11 +4997,11 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/turret_protected/tcomsat) -"jo" = ( +"jr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"jp" = ( +"js" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -5166,7 +5013,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"jq" = ( +"jt" = ( /obj/machinery/door/airlock/glass{ name = "Yellow Dock" }, @@ -5177,14 +5024,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"jr" = ( +"ju" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"js" = ( +"jv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -5196,41 +5043,41 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"jt" = ( +"jw" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"ju" = ( +"jx" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"jv" = ( +"jy" = ( /obj/machinery/light, /obj/effect/floor_decal/corner/blue{ dir = 10 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"jw" = ( +"jz" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"jx" = ( +"jA" = ( /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"jy" = ( +"jB" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"jz" = ( +"jC" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -5242,7 +5089,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"jA" = ( +"jE" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 1; external_pressure_bound = 140; @@ -5259,7 +5106,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"jB" = ( +"jF" = ( /obj/machinery/light, /obj/machinery/camera/network/telecom{ c_tag = "Telecomms - Central Compartment Aft"; @@ -5277,7 +5124,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"jC" = ( +"jG" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 1; external_pressure_bound = 0; @@ -5298,7 +5145,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"jD" = ( +"jH" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -5310,7 +5157,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"jE" = ( +"jI" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -5319,13 +5166,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"jF" = ( +"jJ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"jG" = ( +"jK" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -5338,49 +5185,6 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"jH" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8; - icon_state = "map"; - tag = "icon-manifold-f (WEST)" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"jI" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - icon_state = "warningcee"; - dir = 8 - }, -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - name = "Distro to Canisters"; - target_pressure = 200 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"jJ" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - icon_state = "warningcee"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/port) -"jK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) "jL" = ( /obj/item/device/radio/intercom{ pixel_x = 32 @@ -5529,35 +5333,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"jY" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green, -/obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) "jZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"ka" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -5568,7 +5344,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"kb" = ( +"ka" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/machinery/door/firedoor{ @@ -5576,7 +5352,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"kc" = ( +"kb" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -5584,7 +5360,7 @@ }, /turf/simulated/wall/r_wall, /area/tcommsat/chamber) -"kd" = ( +"kc" = ( /obj/machinery/door/airlock/external{ frequency = 1331; icon_state = "door_locked"; @@ -5604,13 +5380,13 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"ke" = ( +"kd" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"kf" = ( +"ke" = ( /obj/machinery/embedded_controller/radio/airlock/docking_port{ frequency = 1331; id_tag = "nuke_shuttle_dock_airlock"; @@ -5637,7 +5413,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"kg" = ( +"kf" = ( /obj/machinery/door/airlock/external{ frequency = 1331; icon_state = "door_locked"; @@ -5652,7 +5428,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"kh" = ( +"kg" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" @@ -5672,13 +5448,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"ki" = ( +"kh" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"kj" = ( +"ki" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -5695,7 +5471,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"kk" = ( +"kj" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -5707,7 +5483,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"kl" = ( +"kk" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -5726,7 +5502,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"km" = ( +"kl" = ( /obj/structure/closet/wardrobe/red, /obj/structure/reagent_dispensers/peppertank{ pixel_x = -30; @@ -5737,7 +5513,7 @@ }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"kn" = ( +"km" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -5754,14 +5530,14 @@ }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"ko" = ( +"kn" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"kp" = ( +"ko" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -5773,7 +5549,7 @@ roof_type = null }, /area/security/checkpoint2) -"kq" = ( +"kp" = ( /obj/machinery/requests_console{ department = "Security"; departmentType = 5; @@ -5791,7 +5567,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"kr" = ( +"kq" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -5803,7 +5579,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"ks" = ( +"kr" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -5816,18 +5592,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"kt" = ( -/obj/effect/floor_decal/corner/red, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"ku" = ( -/obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"kv" = ( +"ks" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; icon_state = "intact" @@ -5851,7 +5616,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"kw" = ( +"kt" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ icon_state = "intact"; dir = 4 @@ -5866,7 +5631,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"kx" = ( +"ku" = ( /obj/machinery/light/small{ dir = 1 }, @@ -5890,7 +5655,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"ky" = ( +"kv" = ( /obj/machinery/airlock_sensor{ frequency = 1380; id_tag = "escape_dock_south_sensor"; @@ -5900,7 +5665,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"kz" = ( +"kw" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -5920,7 +5685,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"kA" = ( +"kx" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -5933,24 +5698,24 @@ }, /turf/simulated/floor/airless, /area/solar/port) -"kB" = ( +"ky" = ( /obj/structure/window/reinforced{ dir = 8 }, /obj/structure/window/reinforced, /turf/simulated/open, /area/turret_protected/tcomsat) -"kC" = ( +"kz" = ( /obj/structure/window/reinforced, /obj/machinery/light{ dir = 1 }, /turf/simulated/open, /area/turret_protected/tcomsat) -"kD" = ( +"kA" = ( /turf/simulated/wall/r_wall, /area/turret_protected/tcomfoyer) -"kE" = ( +"kB" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -5965,7 +5730,7 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"kF" = ( +"kC" = ( /obj/machinery/porta_turret{ dir = 6 }, @@ -5977,7 +5742,7 @@ }, /turf/simulated/floor/plating, /area/turret_protected/tcomfoyer) -"kG" = ( +"kD" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -5985,7 +5750,7 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"kH" = ( +"kE" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/camera/network/telecom{ c_tag = "Telecomms - Foyer" @@ -6011,30 +5776,30 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"kI" = ( +"kF" = ( /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"kJ" = ( +"kG" = ( /obj/machinery/porta_turret{ dir = 10 }, /obj/effect/decal/warning_stripes, /turf/simulated/floor/plating, /area/turret_protected/tcomfoyer) -"kK" = ( +"kH" = ( /obj/structure/sign/drop{ pixel_x = 32 }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"kL" = ( +"kI" = ( /obj/structure/window/reinforced{ dir = 4 }, /obj/structure/window/reinforced, /turf/simulated/open, /area/turret_protected/tcomsat) -"kM" = ( +"kJ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -6051,7 +5816,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"kN" = ( +"kK" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -6060,7 +5825,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"kO" = ( +"kL" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -6072,14 +5837,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"kP" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/port) -"kQ" = ( +"kM" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -6092,7 +5850,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"kR" = ( +"kN" = ( /obj/machinery/light{ dir = 8 }, @@ -6106,7 +5864,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"kS" = ( +"kO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -6116,12 +5874,12 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"kT" = ( +"kP" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"kU" = ( +"kQ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -6142,7 +5900,7 @@ }, /turf/simulated/floor/plating, /area/security/checkpoint2) -"kV" = ( +"kR" = ( /obj/structure/closet/secure_closet/security, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -6155,14 +5913,14 @@ }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"kW" = ( +"kS" = ( /turf/simulated/floor/tiled, /area/security/checkpoint2) -"kX" = ( +"kT" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"kY" = ( +"kU" = ( /obj/structure/closet/secure_closet/security, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -6170,11 +5928,11 @@ }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"kZ" = ( +"kV" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"la" = ( +"kW" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 @@ -6189,41 +5947,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"lb" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"lc" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"ld" = ( -/obj/machinery/door/window/brigdoor/eastleft{ - dir = 1; - icon_state = "leftsecure"; - name = "Holding Cell"; - req_access = list(2) - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"le" = ( +"kY" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -6237,7 +5961,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/hallway/secondary/exit) -"lf" = ( +"kZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -6250,7 +5974,7 @@ dir = 5 }, /area/turret_protected/tcomsat) -"lg" = ( +"la" = ( /obj/machinery/door/airlock/hatch{ name = "Telecoms West Wing"; req_access = list(61) @@ -6267,7 +5991,7 @@ dir = 5 }, /area/turret_protected/tcomfoyer) -"lh" = ( +"lb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -6276,7 +6000,7 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"li" = ( +"lc" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -6288,7 +6012,7 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"lj" = ( +"ld" = ( /obj/machinery/door/airlock/hatch{ name = "Telecoms East Wing"; req_access = list(61) @@ -6305,7 +6029,7 @@ dir = 5 }, /area/turret_protected/tcomfoyer) -"lk" = ( +"le" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -6319,18 +6043,18 @@ dir = 5 }, /area/turret_protected/tcomsat) -"ll" = ( +"lf" = ( /obj/machinery/camera/network/telecom{ c_tag = "Telecomms - Starboard Wing Aft"; dir = 8 }, /turf/simulated/open, /area/turret_protected/tcomsat) -"lm" = ( +"lg" = ( /obj/effect/floor_decal/corner/yellow/full, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"ln" = ( +"lh" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -6343,7 +6067,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"lo" = ( +"li" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -6353,7 +6077,7 @@ /obj/effect/floor_decal/corner/yellow/full, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"lp" = ( +"lj" = ( /obj/machinery/light, /obj/machinery/camera/network/civilian_east{ c_tag = "Surface - Yellow Dock Aft"; @@ -6364,14 +6088,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"lq" = ( +"lk" = ( /obj/effect/floor_decal/corner/yellow/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/port) -"lr" = ( +"ll" = ( /obj/item/device/radio/intercom{ pixel_x = -32 }, @@ -6381,7 +6105,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"ls" = ( +"lm" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -6400,7 +6124,7 @@ }, /turf/simulated/floor/plating, /area/security/checkpoint2) -"lt" = ( +"ln" = ( /obj/structure/table/reinforced, /obj/machinery/computer/skills{ icon_state = "medlaptop" @@ -6417,7 +6141,7 @@ }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"lu" = ( +"lo" = ( /obj/structure/table/reinforced, /obj/machinery/button/remote/blast_door{ id = "seccheckpoint1"; @@ -6442,13 +6166,13 @@ }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"lv" = ( +"lp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"lw" = ( +"lq" = ( /obj/structure/table/reinforced, /obj/machinery/button/remote/blast_door{ id = "seccheckpoint3"; @@ -6470,7 +6194,7 @@ }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"lx" = ( +"lr" = ( /obj/structure/table/reinforced, /obj/machinery/computer/skills{ icon_state = "medlaptop" @@ -6489,7 +6213,7 @@ }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"ly" = ( +"ls" = ( /obj/item/device/radio/intercom{ pixel_x = 32 }, @@ -6498,11 +6222,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"lz" = ( +"lt" = ( /obj/effect/floor_decal/corner/red/full, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"lA" = ( +"lu" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -6515,7 +6239,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"lB" = ( +"lv" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -6525,7 +6249,7 @@ /obj/effect/floor_decal/corner/red/full, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"lC" = ( +"lw" = ( /obj/machinery/light, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -6543,30 +6267,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"lD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/secondary/exit) -"lE" = ( +"lx" = ( /obj/machinery/status_display{ pixel_x = 32 }, /turf/simulated/floor/tiled, /area/hallway/secondary/exit) -"lF" = ( +"ly" = ( /obj/machinery/camera/network/telecom{ c_tag = "Telecomms - Port Wing Aft"; dir = 4 }, /turf/simulated/open, /area/turret_protected/tcomsat) -"lG" = ( +"lz" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'LETHAL TURRETS'. Enter at your own risk!"; name = "LETHAL TURRETS"; @@ -6575,11 +6289,11 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"lH" = ( +"lA" = ( /obj/machinery/light/small/emergency, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"lI" = ( +"lB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -6591,13 +6305,13 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"lJ" = ( +"lC" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"lK" = ( +"lD" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'LETHAL TURRETS'. Enter at your own risk!"; name = "LETHAL TURRETS"; @@ -6606,7 +6320,7 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"lL" = ( +"lE" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -6618,7 +6332,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/port) -"lM" = ( +"lF" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -6628,11 +6342,11 @@ /obj/effect/floor_decal/corner/lime/full, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"lN" = ( +"lG" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"lO" = ( +"lH" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ density = 0; @@ -6651,7 +6365,7 @@ }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"lP" = ( +"lI" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -6661,20 +6375,20 @@ }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"lQ" = ( +"lJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"lR" = ( +"lK" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"lS" = ( +"lL" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -6684,7 +6398,7 @@ }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"lT" = ( +"lM" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ density = 0; @@ -6701,7 +6415,7 @@ }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"lU" = ( +"lN" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 4 }, @@ -6712,7 +6426,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"lV" = ( +"lO" = ( /obj/machinery/door/airlock/hatch{ name = "Telecoms Satellite"; req_access = list(61) @@ -6727,7 +6441,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"lW" = ( +"lP" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -6739,7 +6453,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"lX" = ( +"lQ" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -6758,7 +6472,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"lY" = ( +"lR" = ( /obj/structure/table/reinforced, /obj/machinery/recharger{ pixel_y = 4 @@ -6777,7 +6491,7 @@ /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"lZ" = ( +"lS" = ( /obj/machinery/computer/secure_data, /obj/structure/cable/green{ d1 = 4; @@ -6789,7 +6503,7 @@ }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"ma" = ( +"lT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -6802,14 +6516,14 @@ }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"mb" = ( +"lU" = ( /obj/machinery/computer/secure_data, /obj/effect/floor_decal/corner/blue{ dir = 10 }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"mc" = ( +"lV" = ( /obj/structure/table/reinforced, /obj/machinery/recharger{ pixel_y = 4 @@ -6822,7 +6536,7 @@ }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"md" = ( +"lW" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -6834,7 +6548,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"me" = ( +"lX" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -6851,7 +6565,7 @@ }, /turf/simulated/floor/plating, /area/turret_protected/tcomfoyer) -"mf" = ( +"lY" = ( /obj/machinery/power/smes/buildable{ charge = 5e+006; input_attempt = 1; @@ -6868,7 +6582,7 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"mg" = ( +"lZ" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -6877,7 +6591,7 @@ /obj/structure/sign/electricshock, /turf/simulated/wall/r_wall, /area/turret_protected/tcomfoyer) -"mh" = ( +"ma" = ( /obj/item/device/radio/intercom{ broadcasting = 0; listening = 1; @@ -6892,7 +6606,7 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"mi" = ( +"mb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/blue{ @@ -6907,7 +6621,7 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"mj" = ( +"mc" = ( /obj/machinery/turretid/stun{ ailock = 1; check_synth = 1; @@ -6919,11 +6633,11 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"mk" = ( +"md" = ( /obj/structure/sign/electricshock, /turf/simulated/wall/r_wall, /area/turret_protected/tcomfoyer) -"ml" = ( +"me" = ( /obj/machinery/computer/power_monitor{ name = "telecoms power monitoring" }, @@ -6941,7 +6655,7 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"mm" = ( +"mf" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -6959,7 +6673,7 @@ }, /turf/simulated/floor/plating, /area/turret_protected/tcomsat) -"mn" = ( +"mg" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -6973,14 +6687,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/fore) -"mo" = ( +"mh" = ( /obj/effect/floor_decal/corner/lime/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"mp" = ( +"mi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -6994,13 +6708,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"mq" = ( +"mj" = ( /obj/effect/floor_decal/corner/blue/full{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"mr" = ( +"mk" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -7016,7 +6730,7 @@ }, /turf/simulated/floor/plating, /area/security/checkpoint2) -"ms" = ( +"ml" = ( /obj/machinery/door/airlock/security{ name = "Security Checkpoint"; req_access = list(1) @@ -7031,27 +6745,27 @@ }, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"mt" = ( +"mm" = ( /obj/effect/floor_decal/corner/blue/full{ dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"mu" = ( +"mn" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"mv" = ( +"mo" = ( /obj/effect/floor_decal/corner/lime/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"mw" = ( +"mp" = ( /obj/machinery/power/terminal{ icon_state = "term"; dir = 1 @@ -7062,7 +6776,7 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"mx" = ( +"mq" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -7070,7 +6784,7 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"my" = ( +"mr" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -7084,7 +6798,7 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"mz" = ( +"ms" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -7093,7 +6807,7 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"mA" = ( +"mt" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -7108,7 +6822,7 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"mB" = ( +"mu" = ( /obj/machinery/camera/network/telecom{ c_tag = "Telecomms - Power Room Starboard" }, @@ -7122,7 +6836,7 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"mC" = ( +"mv" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 8; @@ -7130,7 +6844,7 @@ }, /turf/simulated/floor/tiled, /area/turret_protected/tcomfoyer) -"mD" = ( +"mw" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -7141,14 +6855,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/fore) -"mE" = ( +"mx" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"mF" = ( +"my" = ( /obj/machinery/light{ dir = 1 }, @@ -7158,7 +6872,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"mG" = ( +"mz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -7172,11 +6886,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"mH" = ( +"mA" = ( /obj/structure/sign/securearea, /turf/simulated/wall/r_wall, /area/tcommsat/entrance) -"mI" = ( +"mB" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -7191,7 +6905,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"mJ" = ( +"mC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -7205,35 +6919,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"mK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"mL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"mM" = ( +"mD" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, @@ -7254,13 +6940,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"mN" = ( +"mE" = ( /turf/simulated/wall/r_wall, /area/tcommsat/entrance) -"mO" = ( +"mF" = ( /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"mP" = ( +"mG" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -7270,13 +6956,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"mQ" = ( +"mH" = ( /obj/machinery/camera/network/telecom{ c_tag = "Telecomms - Lobby Fore" }, /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"mR" = ( +"mI" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -7288,7 +6974,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/fore) -"mS" = ( +"mJ" = ( /obj/effect/floor_decal/corner/lime/full, /obj/machinery/alarm{ dir = 1; @@ -7296,13 +6982,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"mT" = ( +"mK" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"mU" = ( +"mL" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 8 @@ -7310,31 +6996,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"mV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"mW" = ( +"mM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"mX" = ( +"mN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /obj/effect/floor_decal/corner/lime, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"mY" = ( +"mO" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -7344,7 +7019,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"mZ" = ( +"mP" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 4 }, @@ -7353,11 +7028,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"na" = ( +"mQ" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, /area/tcommsat/entrance) -"nb" = ( +"mR" = ( /obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, /obj/machinery/atmospherics/pipe/zpipe/down/supply, /obj/structure/cable{ @@ -7367,7 +7042,7 @@ /obj/structure/lattice/catwalk, /turf/simulated/open, /area/tcommsat/entrance) -"nc" = ( +"mS" = ( /obj/effect/decal/warning_stripes, /obj/structure/ladder{ icon_state = "ladder01"; @@ -7375,16 +7050,7 @@ }, /turf/simulated/open, /area/tcommsat/entrance) -"nd" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/corner/lime/full, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"ne" = ( +"mU" = ( /obj/machinery/camera/network/civilian_east{ c_tag = "Surface - Arrivals Terminal Aft"; dir = 1 @@ -7404,7 +7070,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"nf" = ( +"mV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -7416,7 +7082,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"ng" = ( +"mW" = ( /obj/item/device/radio/intercom{ pixel_y = -32 }, @@ -7425,14 +7091,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"nh" = ( +"mX" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/corner/lime/full{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"ni" = ( +"mY" = ( /obj/machinery/light{ dir = 8 }, @@ -7441,13 +7107,13 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"nj" = ( +"mZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"nk" = ( +"na" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -7464,7 +7130,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"nl" = ( +"nb" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -7473,7 +7139,7 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"nm" = ( +"nc" = ( /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -7485,16 +7151,16 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"nn" = ( +"nd" = ( /obj/machinery/light/small/emergency{ dir = 8 }, /turf/simulated/floor/plating, /area/tcommsat/entrance) -"no" = ( +"ne" = ( /turf/simulated/floor/plating, /area/tcommsat/entrance) -"np" = ( +"nf" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -7504,69 +7170,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/tcommsat/entrance) -"nq" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"nr" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"ns" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"nt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/machinery/door/airlock/atmos{ - name = "Docks Air Bypass"; - req_one_access = list(11,24) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"nu" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"nv" = ( +"ng" = ( /obj/machinery/door/airlock/glass{ name = "NSS Aurora" }, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"nw" = ( +"nh" = ( /obj/machinery/door/airlock/glass{ name = "NSS Aurora" }, @@ -7579,14 +7190,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"nx" = ( +"ni" = ( /turf/unsimulated/chasm_mask, /area/shuttle/syndicate_elite/station) -"ny" = ( +"nj" = ( /obj/item/weapon/cell, /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"nz" = ( +"nk" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -7600,7 +7211,7 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"nA" = ( +"nl" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -7614,7 +7225,7 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"nB" = ( +"nm" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -7629,7 +7240,7 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"nC" = ( +"nn" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -7649,7 +7260,7 @@ }, /turf/simulated/floor/plating, /area/tcommsat/entrance) -"nD" = ( +"no" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -7664,7 +7275,7 @@ }, /turf/simulated/floor/plating, /area/tcommsat/entrance) -"nE" = ( +"np" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -7680,7 +7291,7 @@ }, /turf/simulated/floor/plating, /area/tcommsat/entrance) -"nF" = ( +"nq" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 6 @@ -7696,7 +7307,7 @@ }, /turf/simulated/floor/plating, /area/tcommsat/entrance) -"nG" = ( +"nr" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, @@ -7710,7 +7321,7 @@ }, /turf/simulated/floor/plating, /area/tcommsat/entrance) -"nH" = ( +"ns" = ( /obj/machinery/embedded_controller/radio/airlock/docking_port{ frequency = 1380; id_tag = "engineering_surface_airlock"; @@ -7736,7 +7347,7 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/tcommsat/entrance) -"nI" = ( +"nt" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -7750,7 +7361,7 @@ }, /turf/simulated/floor/plating, /area/tcommsat/entrance) -"nJ" = ( +"nu" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1380; @@ -7762,67 +7373,7 @@ }, /turf/unsimulated/chasm_mask, /area/mine/explored) -"nK" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"nL" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"nM" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"nN" = ( -/obj/machinery/atmospherics/tvalve/bypass{ - icon_state = "map_tvalve0"; - name = "Distro to Docks Bypass"; - state = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"nO" = ( -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"nP" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"nQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"nR" = ( +"nv" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -7836,7 +7387,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/fore) -"nS" = ( +"nw" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -7847,7 +7398,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/solarmaint) -"nT" = ( +"nx" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -7864,7 +7415,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/solarmaint) -"nU" = ( +"ny" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -7880,7 +7431,7 @@ }, /turf/simulated/floor/plating, /area/tcommsat/entrance) -"nV" = ( +"nz" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -7892,7 +7443,7 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"nW" = ( +"nA" = ( /obj/machinery/bluespace_beacon, /obj/structure/cable{ d1 = 4; @@ -7917,7 +7468,7 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"nX" = ( +"nB" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -7925,93 +7476,20 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"nY" = ( +"nC" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ dir = 1 }, /turf/simulated/floor/plating, /area/tcommsat/entrance) -"nZ" = ( +"nD" = ( /obj/machinery/light/small/emergency{ dir = 8 }, /turf/unsimulated/chasm_mask, /area/tcommsat/entrance) -"oa" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"ob" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 9 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"oc" = ( -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"od" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible{ - tag = "icon-intact (NORTHEAST)"; - icon_state = "intact"; - dir = 5 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"oe" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - icon_state = "map_universal"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"of" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/atmos{ - name = "Docks Air Bypass"; - req_one_access = list(11,24) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/fore) -"og" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"oh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"oi" = ( +"nE" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -8023,16 +7501,16 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/fore) -"oj" = ( +"nF" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"ok" = ( +"nG" = ( /turf/simulated/mineral, /area/tcommsat/entrance) -"ol" = ( +"nK" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -32 }, @@ -8045,16 +7523,16 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"om" = ( +"nL" = ( /obj/item/device/radio/intercom{ pixel_x = 32 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"on" = ( +"nM" = ( /turf/simulated/wall, /area/security/vacantoffice) -"oo" = ( +"nN" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -8072,7 +7550,7 @@ }, /turf/simulated/floor/plating, /area/security/vacantoffice) -"op" = ( +"nO" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -8087,7 +7565,7 @@ }, /turf/simulated/floor/plating, /area/security/vacantoffice) -"oq" = ( +"nP" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -8105,13 +7583,13 @@ }, /turf/simulated/floor/plating, /area/security/vacantoffice) -"or" = ( +"nQ" = ( /obj/structure/closet/crate, /obj/item/weapon/aicard, /obj/item/device/multitool, /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"os" = ( +"nR" = ( /obj/machinery/camera/network/telecom{ c_tag = "Telecomms - Lobby Aft"; dir = 1 @@ -8119,26 +7597,26 @@ /obj/structure/closet/crate/solar, /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"ot" = ( +"nS" = ( /obj/structure/closet/malf/suits, /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"ou" = ( +"nT" = ( /obj/machinery/light{ dir = 4 }, /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/tcommsat/entrance) -"ov" = ( +"nU" = ( /obj/machinery/vending/cigarette, /turf/simulated/floor/lino, /area/hallway/secondary/entry/fore) -"ow" = ( +"nV" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/lino, /area/hallway/secondary/entry/fore) -"ox" = ( +"nW" = ( /obj/machinery/vending/cola, /obj/machinery/light{ icon_state = "tube1"; @@ -8146,26 +7624,26 @@ }, /turf/simulated/floor/lino, /area/hallway/secondary/entry/fore) -"oy" = ( +"nX" = ( /obj/machinery/vending/snack, /turf/simulated/floor/lino, /area/hallway/secondary/entry/fore) -"oz" = ( +"nY" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/lino, /area/hallway/secondary/entry/fore) -"oA" = ( +"nZ" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"oB" = ( +"oa" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"oC" = ( +"ob" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -8177,7 +7655,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"oD" = ( +"oc" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -8197,16 +7675,16 @@ }, /turf/simulated/floor/plating, /area/security/vacantoffice) -"oE" = ( +"od" = ( /obj/structure/table/standard{ name = "plastic table frame" }, /turf/simulated/floor/carpet, /area/security/vacantoffice) -"oF" = ( +"oe" = ( /turf/simulated/floor/carpet, /area/security/vacantoffice) -"oG" = ( +"of" = ( /obj/structure/window/basic{ dir = 4 }, @@ -8215,7 +7693,7 @@ }, /turf/simulated/floor/carpet, /area/security/vacantoffice) -"oH" = ( +"og" = ( /obj/machinery/button/remote/blast_door{ id = "office_shutter"; name = "Office Shutters"; @@ -8232,38 +7710,38 @@ }, /turf/simulated/floor/tiled, /area/security/vacantoffice) -"oI" = ( +"oh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/vacantoffice) -"oJ" = ( +"oi" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/simulated/floor/tiled, /area/security/vacantoffice) -"oK" = ( +"oj" = ( /turf/simulated/floor/lino, /area/hallway/secondary/entry/fore) -"oL" = ( +"ok" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/lino, /area/hallway/secondary/entry/fore) -"oM" = ( +"ol" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/lino, /area/hallway/secondary/entry/fore) -"oN" = ( +"om" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"oO" = ( +"on" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -8276,13 +7754,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"oP" = ( +"oo" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"oQ" = ( +"op" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -8302,7 +7780,7 @@ }, /turf/simulated/floor/plating, /area/security/vacantoffice) -"oR" = ( +"oq" = ( /obj/structure/table/standard{ name = "plastic table frame" }, @@ -8311,7 +7789,7 @@ }, /turf/simulated/floor/carpet, /area/security/vacantoffice) -"oS" = ( +"or" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, @@ -8321,13 +7799,13 @@ }, /turf/simulated/floor/carpet, /area/security/vacantoffice) -"oT" = ( +"os" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/carpet, /area/security/vacantoffice) -"oU" = ( +"ot" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -8336,7 +7814,7 @@ }, /turf/simulated/floor/carpet, /area/security/vacantoffice) -"oV" = ( +"ou" = ( /obj/structure/window/basic{ dir = 4 }, @@ -8351,17 +7829,17 @@ }, /turf/simulated/floor/carpet, /area/security/vacantoffice) -"oW" = ( +"ov" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/security/vacantoffice) -"oX" = ( +"ow" = ( /turf/simulated/floor/tiled, /area/security/vacantoffice) -"oY" = ( +"ox" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -8376,7 +7854,7 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled, /area/security/vacantoffice) -"oZ" = ( +"oy" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -8393,7 +7871,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/solarmaint) -"pa" = ( +"oz" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -8409,22 +7887,22 @@ }, /turf/simulated/floor/plating, /area/maintenance/solarmaint) -"pb" = ( +"oA" = ( /turf/simulated/floor/carpet, /area/hallway/secondary/entry/fore) -"pc" = ( +"oB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /turf/simulated/floor/carpet, /area/hallway/secondary/entry/fore) -"pd" = ( +"oC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/lino, /area/hallway/secondary/entry/fore) -"pe" = ( +"oD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -8433,7 +7911,7 @@ }, /turf/simulated/floor/carpet, /area/hallway/secondary/entry/fore) -"pf" = ( +"oE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -8446,7 +7924,7 @@ }, /turf/simulated/floor/carpet, /area/hallway/secondary/entry/fore) -"pg" = ( +"oF" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -8459,7 +7937,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"ph" = ( +"oG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -8469,7 +7947,7 @@ /obj/structure/disposalpipe/junction, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"pi" = ( +"oH" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/green{ @@ -8484,7 +7962,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"pj" = ( +"oI" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass{ name = "Vacant Office" @@ -8502,7 +7980,7 @@ }, /turf/simulated/floor/tiled, /area/security/vacantoffice) -"pk" = ( +"oJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -8516,7 +7994,7 @@ }, /turf/simulated/floor/carpet, /area/security/vacantoffice) -"pl" = ( +"oK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -8531,7 +8009,7 @@ }, /turf/simulated/floor/carpet, /area/security/vacantoffice) -"pm" = ( +"oL" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -8543,7 +8021,7 @@ }, /turf/simulated/floor/carpet, /area/security/vacantoffice) -"pn" = ( +"oM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -8554,7 +8032,7 @@ }, /turf/simulated/floor/carpet, /area/security/vacantoffice) -"po" = ( +"oN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -8565,7 +8043,7 @@ }, /turf/simulated/floor/carpet, /area/security/vacantoffice) -"pp" = ( +"oO" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -8573,7 +8051,7 @@ }, /turf/simulated/floor/tiled, /area/security/vacantoffice) -"pq" = ( +"oP" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -8594,10 +8072,10 @@ }, /turf/simulated/floor/tiled, /area/security/vacantoffice) -"pr" = ( +"oQ" = ( /turf/simulated/wall/r_wall, /area/maintenance/starboardsolar) -"ps" = ( +"oR" = ( /obj/machinery/door/airlock/engineering{ name = "Alpha Solar Array"; req_access = list(11) @@ -8611,18 +8089,18 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) -"pt" = ( +"oS" = ( /obj/structure/bed/chair/comfy/beige, /turf/simulated/floor/carpet, /area/hallway/secondary/entry/fore) -"pu" = ( +"oT" = ( /obj/structure/bed/chair/comfy/beige, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/carpet, /area/hallway/secondary/entry/fore) -"pv" = ( +"oU" = ( /obj/structure/bed/chair/comfy/beige, /obj/machinery/camera/network/civilian_east{ c_tag = "Surface - Waiting Room"; @@ -8630,14 +8108,14 @@ }, /turf/simulated/floor/carpet, /area/hallway/secondary/entry/fore) -"pw" = ( +"oV" = ( /obj/machinery/newscaster{ pixel_x = -32 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"px" = ( +"oW" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -8654,23 +8132,23 @@ }, /turf/simulated/floor/plating, /area/security/vacantoffice) -"py" = ( +"oX" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/simulated/floor/carpet, /area/security/vacantoffice) -"pz" = ( +"oY" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/simulated/floor/carpet, /area/security/vacantoffice) -"pA" = ( +"oZ" = ( /obj/machinery/photocopier, /turf/simulated/floor/tiled, /area/security/vacantoffice) -"pB" = ( +"pa" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -8682,7 +8160,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) -"pC" = ( +"pb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -8697,7 +8175,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) -"pD" = ( +"pc" = ( /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -8708,7 +8186,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) -"pE" = ( +"pd" = ( /obj/structure/table/woodentable, /obj/random/single{ icon = 'icons/obj/items.dmi'; @@ -8719,11 +8197,11 @@ }, /turf/simulated/floor/carpet, /area/hallway/secondary/entry/fore) -"pF" = ( +"pe" = ( /obj/structure/table/woodentable, /turf/simulated/floor/carpet, /area/hallway/secondary/entry/fore) -"pG" = ( +"pf" = ( /obj/structure/table/woodentable, /obj/random/single{ icon = 'icons/obj/playing_cards.dmi'; @@ -8734,7 +8212,7 @@ }, /turf/simulated/floor/carpet, /area/hallway/secondary/entry/fore) -"pH" = ( +"pg" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/snacks/chips, /obj/random/single{ @@ -8746,11 +8224,11 @@ }, /turf/simulated/floor/carpet, /area/hallway/secondary/entry/fore) -"pI" = ( +"ph" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"pJ" = ( +"pi" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -8768,26 +8246,14 @@ }, /turf/simulated/floor/plating, /area/security/vacantoffice) -"pK" = ( +"pj" = ( /obj/item/weapon/folder/yellow, /obj/structure/table/standard{ name = "plastic table frame" }, /turf/simulated/floor/carpet, /area/security/vacantoffice) -"pL" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = -24 - }, -/obj/machinery/light, -/obj/machinery/camera/network/civilian_east{ - c_tag = "Surface - Vacant Office 1"; - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/security/vacantoffice) -"pM" = ( +"pl" = ( /obj/machinery/newscaster{ pixel_y = -32 }, @@ -8796,18 +8262,18 @@ }, /turf/simulated/floor/carpet, /area/security/vacantoffice) -"pN" = ( +"pm" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; pixel_y = -29 }, /turf/simulated/floor/tiled, /area/security/vacantoffice) -"pO" = ( +"pn" = ( /obj/structure/filingcabinet, /turf/simulated/floor/tiled, /area/security/vacantoffice) -"pP" = ( +"po" = ( /obj/item/weapon/stool, /obj/machinery/alarm{ dir = 4; @@ -8820,7 +8286,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) -"pQ" = ( +"pp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/yellow{ d1 = 2; @@ -8830,7 +8296,7 @@ /obj/machinery/atmospherics/binary/pump/on, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) -"pR" = ( +"pq" = ( /obj/machinery/power/terminal{ icon_state = "term"; dir = 1 @@ -8844,16 +8310,16 @@ }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) -"pS" = ( +"pr" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/snacks/chips, /turf/simulated/floor/carpet, /area/hallway/secondary/entry/fore) -"pT" = ( +"ps" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/lino, /area/hallway/secondary/entry/fore) -"pU" = ( +"pt" = ( /obj/structure/table/woodentable, /obj/item/weapon/storage/fancy/cigarettes{ pixel_y = 2 @@ -8867,12 +8333,12 @@ }, /turf/simulated/floor/carpet, /area/hallway/secondary/entry/fore) -"pV" = ( +"pu" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"pW" = ( +"pv" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8883,13 +8349,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"pX" = ( +"pw" = ( /turf/simulated/wall/r_wall, /area/security/vacantoffice) -"pY" = ( +"px" = ( /turf/simulated/wall, /area/mine/unexplored) -"pZ" = ( +"py" = ( /obj/machinery/power/solar_control{ id = "roofsolars"; name = "Aft Solar Control"; @@ -8901,7 +8367,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) -"qa" = ( +"pz" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1379; @@ -8926,7 +8392,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) -"qb" = ( +"pA" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; @@ -8941,7 +8407,7 @@ /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) -"qc" = ( +"pB" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1; icon_state = "comfychair_preview" @@ -8949,7 +8415,7 @@ /obj/machinery/light, /turf/simulated/floor/carpet, /area/hallway/secondary/entry/fore) -"qd" = ( +"pC" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1; icon_state = "comfychair_preview" @@ -8960,29 +8426,17 @@ }, /turf/simulated/floor/carpet, /area/hallway/secondary/entry/fore) -"qe" = ( +"pD" = ( /obj/machinery/atm{ pixel_y = -32 }, /turf/simulated/floor/lino, /area/hallway/secondary/entry/fore) -"qf" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1; - icon_state = "comfychair_preview" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/carpet, -/area/hallway/secondary/entry/fore) -"qg" = ( +"pF" = ( /obj/structure/bed/chair, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"qh" = ( +"pG" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -9000,13 +8454,13 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"qi" = ( +"pH" = ( /turf/simulated/wall/r_wall, /area/hallway/secondary/entry/fore) -"qj" = ( +"pI" = ( /turf/simulated/open, /area/turbolift/main_arrivals) -"qk" = ( +"pJ" = ( /obj/structure/ladder/up{ pixel_y = 16 }, @@ -9022,7 +8476,7 @@ icon_state = "asteroidplating" }, /area/mine/explored) -"ql" = ( +"pK" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -9034,7 +8488,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) -"qm" = ( +"pL" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -9045,7 +8499,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) -"qn" = ( +"pM" = ( /obj/machinery/door/airlock/external{ frequency = 1379; icon_state = "door_locked"; @@ -9062,7 +8516,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) -"qo" = ( +"pN" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -9073,7 +8527,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) -"qp" = ( +"pO" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -9085,19 +8539,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) -"qq" = ( +"pP" = ( /turf/simulated/wall, /area/storage/primary) -"qr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"qs" = ( +"pR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -9109,13 +8554,19 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"qt" = ( +"pS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"pT" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"qu" = ( +"pU" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -9126,7 +8577,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) -"qv" = ( +"pV" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ frequency = 1379; id_tag = "solar_aft_airlock"; @@ -9157,17 +8608,17 @@ /obj/effect/decal/warning_stripes, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) -"qw" = ( +"pW" = ( /obj/machinery/vending/tool, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/storage/primary) -"qx" = ( +"pX" = ( /obj/machinery/lapvend, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/storage/primary) -"qy" = ( +"pY" = ( /obj/structure/table/standard, /obj/random/tech_supply, /obj/random/tech_supply, @@ -9181,7 +8632,7 @@ }, /turf/simulated/floor/tiled, /area/storage/primary) -"qz" = ( +"pZ" = ( /obj/structure/table/standard, /obj/random/tech_supply, /obj/random/tech_supply, @@ -9189,12 +8640,12 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled, /area/storage/primary) -"qA" = ( +"qa" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/storage/primary) -"qB" = ( +"qb" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -9209,14 +8660,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/storage/primary) -"qC" = ( +"qc" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"qD" = ( +"qd" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -9228,7 +8679,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) -"qE" = ( +"qe" = ( /obj/machinery/door/airlock/external{ frequency = 1379; icon_state = "door_locked"; @@ -9244,10 +8695,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) -"qF" = ( +"qf" = ( /turf/simulated/wall/r_wall, /area/mine/explored) -"qG" = ( +"qg" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -9259,7 +8710,7 @@ }, /turf/simulated/floor/tiled, /area/storage/primary) -"qH" = ( +"qh" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -9267,7 +8718,7 @@ }, /turf/simulated/floor/tiled, /area/storage/primary) -"qI" = ( +"qi" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -9279,7 +8730,7 @@ }, /turf/simulated/floor/tiled, /area/storage/primary) -"qJ" = ( +"qj" = ( /obj/machinery/door/airlock/glass{ name = "Primary Tool Storage" }, @@ -9294,7 +8745,7 @@ }, /turf/simulated/floor/tiled, /area/storage/primary) -"qK" = ( +"qk" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -9303,7 +8754,7 @@ /obj/structure/disposalpipe/junction, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"qL" = ( +"ql" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -9318,7 +8769,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"qM" = ( +"qm" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -9336,7 +8787,7 @@ }, /turf/simulated/floor/airless, /area/solar/starboard) -"qN" = ( +"qn" = ( /obj/structure/table/standard, /obj/random/tech_supply, /obj/random/tech_supply, @@ -9347,17 +8798,17 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled, /area/storage/primary) -"qO" = ( +"qo" = ( /obj/effect/landmark/start{ name = "Assistant" }, /turf/simulated/floor/tiled, /area/storage/primary) -"qP" = ( +"qp" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/storage/primary) -"qQ" = ( +"qq" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -9371,7 +8822,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/storage/primary) -"qR" = ( +"qr" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -9396,7 +8847,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/fore) -"qS" = ( +"qs" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -9407,14 +8858,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"qT" = ( +"qt" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"qU" = ( +"qu" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1380; @@ -9426,7 +8877,7 @@ }, /turf/unsimulated/chasm_mask, /area/mine/explored) -"qV" = ( +"qv" = ( /obj/machinery/power/solar{ id = "aftsolar"; name = "Aft Solar Array" @@ -9441,11 +8892,11 @@ icon_state = "solarpanel" }, /area/solar/starboard) -"qW" = ( +"qw" = ( /obj/structure/cable/yellow, /turf/simulated/floor/airless, /area/solar/starboard) -"qX" = ( +"qx" = ( /obj/structure/table/standard, /obj/random/tech_supply, /obj/random/tech_supply, @@ -9456,12 +8907,12 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled, /area/storage/primary) -"qY" = ( +"qy" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/storage/primary) -"qZ" = ( +"qz" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -9472,7 +8923,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/storage/primary) -"ra" = ( +"qA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -9486,7 +8937,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"rb" = ( +"qB" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -9519,7 +8970,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/fore) -"rc" = ( +"qC" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 4 @@ -9531,7 +8982,7 @@ /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"rd" = ( +"qD" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 4 @@ -9546,7 +8997,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"re" = ( +"qE" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -9557,7 +9008,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/fore) -"rf" = ( +"qF" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -9570,7 +9021,7 @@ }, /turf/simulated/floor/airless, /area/solar/starboard) -"rg" = ( +"qG" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -9588,24 +9039,24 @@ }, /turf/simulated/floor/airless, /area/solar/starboard) -"rh" = ( +"qH" = ( /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/airless, /area/solar/starboard) -"ri" = ( +"qI" = ( /turf/simulated/floor/airless, /area/solar/starboard) -"rj" = ( +"qJ" = ( /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/airless, /area/solar/starboard) -"rk" = ( +"qK" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -9623,7 +9074,7 @@ }, /turf/simulated/floor/airless, /area/solar/starboard) -"rl" = ( +"qL" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 8; @@ -9636,7 +9087,7 @@ }, /turf/simulated/floor/airless, /area/solar/starboard) -"rm" = ( +"qM" = ( /obj/structure/table/standard, /obj/random/tech_supply, /obj/random/tech_supply, @@ -9650,20 +9101,20 @@ }, /turf/simulated/floor/tiled, /area/storage/primary) -"rn" = ( +"qN" = ( /obj/machinery/hologram/holopad, /obj/effect/landmark/start{ name = "Assistant" }, /turf/simulated/floor/tiled, /area/storage/primary) -"ro" = ( +"qO" = ( /obj/structure/table/standard, /obj/random/tech_supply, /obj/random/tech_supply, /turf/simulated/floor/tiled, /area/storage/primary) -"rp" = ( +"qP" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -9683,7 +9134,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/fore) -"rq" = ( +"qQ" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -9694,7 +9145,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"rr" = ( +"qR" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -9704,10 +9155,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"rs" = ( +"qS" = ( /turf/simulated/open, /area/turbolift/main_arrivals_aux) -"rt" = ( +"qT" = ( /obj/machinery/airlock_sensor{ frequency = 1380; id_tag = "arrivals_surface_sensor"; @@ -9734,34 +9185,34 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/fore) -"ru" = ( +"qU" = ( /turf/simulated/shuttle/wall, /area/shuttle/escape_pod1/station) -"rv" = ( +"qV" = ( /obj/structure/window/shuttle, /obj/structure/grille, /turf/simulated/shuttle/plating, /area/shuttle/escape_pod1/station) -"rw" = ( +"qW" = ( /turf/simulated/shuttle/wall, /area/shuttle/escape_pod2/station) -"rx" = ( +"qX" = ( /obj/structure/window/shuttle, /obj/structure/grille, /turf/simulated/shuttle/plating, /area/shuttle/escape_pod2/station) -"ry" = ( +"qY" = ( /turf/simulated/shuttle/wall, /area/shuttle/escape_pod3/station) -"rz" = ( +"qZ" = ( /obj/structure/window/shuttle, /obj/structure/grille, /turf/simulated/shuttle/plating, /area/shuttle/escape_pod3/station) -"rA" = ( +"ra" = ( /turf/simulated/floor/asteroid, /area/shuttle/administration/station) -"rB" = ( +"rb" = ( /obj/machinery/power/solar{ id = "aftsolar"; name = "Aft Solar Array" @@ -9773,7 +9224,7 @@ icon_state = "solarpanel" }, /area/solar/starboard) -"rC" = ( +"rc" = ( /obj/structure/table/standard, /obj/random/tech_supply, /obj/random/tech_supply, @@ -9784,21 +9235,21 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled, /area/storage/primary) -"rD" = ( +"rd" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/landmark/start{ name = "Assistant" }, /turf/simulated/floor/tiled, /area/storage/primary) -"rE" = ( +"re" = ( /obj/structure/table/standard, /obj/machinery/recharger{ pixel_y = 0 }, /turf/simulated/floor/tiled, /area/storage/primary) -"rF" = ( +"rf" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -9810,7 +9261,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/plating, /area/hallway/secondary/entry/fore) -"rG" = ( +"rg" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; @@ -9818,7 +9269,7 @@ }, /turf/simulated/wall/r_wall, /area/bridge/levela) -"rH" = ( +"rh" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -9837,7 +9288,7 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/escape_pod1/station) -"rI" = ( +"ri" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -9856,7 +9307,7 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/escape_pod2/station) -"rJ" = ( +"rj" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -9875,7 +9326,7 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/escape_pod3/station) -"rK" = ( +"rk" = ( /obj/structure/table/standard, /obj/random/tech_supply, /obj/random/tech_supply, @@ -9888,18 +9339,18 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled, /area/storage/primary) -"rL" = ( +"rl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/landmark/start{ name = "Assistant" }, /turf/simulated/floor/tiled, /area/storage/primary) -"rM" = ( +"rm" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled, /area/storage/primary) -"rN" = ( +"rn" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light{ dir = 8; @@ -9908,7 +9359,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"rO" = ( +"ro" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1380; @@ -9921,21 +9372,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"rP" = ( +"rp" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"rQ" = ( +"rq" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"rR" = ( +"rr" = ( /turf/simulated/wall, /area/crew_quarters/sleep/cryo) -"rS" = ( +"rs" = ( /turf/simulated/wall/r_wall, /area/bridge/levela) -"rT" = ( +"rt" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -9953,7 +9404,7 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/escape_pod1/station) -"rU" = ( +"ru" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -9971,7 +9422,7 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/escape_pod2/station) -"rV" = ( +"rv" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -9989,7 +9440,7 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/escape_pod3/station) -"rW" = ( +"rw" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -10006,26 +9457,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"rX" = ( +"rx" = ( /turf/simulated/floor/asteroid, /area/shuttle/specops/station) -"rY" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/random/tech_supply, -/obj/random/tech_supply, +"rz" = ( /turf/simulated/floor/tiled, /area/storage/primary) -"rZ" = ( -/turf/simulated/floor/tiled, -/area/storage/primary) -"sa" = ( +"rA" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -10037,7 +9475,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/storage/primary) -"sb" = ( +"rB" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, @@ -10049,14 +9487,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"sc" = ( +"rC" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; icon_state = "intact" }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"sd" = ( +"rD" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10; icon_state = "intact" @@ -10064,28 +9502,28 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"se" = ( +"rE" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"sf" = ( +"rF" = ( /obj/structure/cryofeed{ icon_state = "cryo_rear"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/cryo) -"sg" = ( +"rG" = ( /obj/machinery/cryopod{ icon_state = "body_scanner_0"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/cryo) -"sh" = ( +"rH" = ( /obj/machinery/computer/cryopod{ density = 0; pixel_y = 32 @@ -10095,7 +9533,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/cryo) -"si" = ( +"rI" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -10114,7 +9552,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/cryo) -"sj" = ( +"rJ" = ( /obj/machinery/cryopod, /obj/machinery/light{ icon_state = "tube1"; @@ -10126,18 +9564,18 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/cryo) -"sk" = ( +"rK" = ( /obj/structure/cryofeed, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/cryo) -"sl" = ( +"rL" = ( /obj/structure/shuttle/engine/propulsion/burst, /turf/simulated/shuttle/wall{ icon_state = "swall"; dir = 1 }, /area/shuttle/escape_pod1/station) -"sm" = ( +"rM" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -10148,14 +9586,14 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/escape_pod1/station) -"sn" = ( +"rN" = ( /obj/structure/shuttle/engine/propulsion/burst, /turf/simulated/shuttle/wall{ icon_state = "swall"; dir = 1 }, /area/shuttle/escape_pod2/station) -"so" = ( +"rO" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -10166,14 +9604,14 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/escape_pod2/station) -"sp" = ( +"rP" = ( /obj/structure/shuttle/engine/propulsion/burst, /turf/simulated/shuttle/wall{ icon_state = "swall"; dir = 1 }, /area/shuttle/escape_pod3/station) -"sq" = ( +"rQ" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -10184,7 +9622,7 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/escape_pod3/station) -"sr" = ( +"rR" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -10196,13 +9634,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"ss" = ( +"rS" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"st" = ( +"rT" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -10214,19 +9652,19 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"su" = ( +"rU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled, /area/storage/primary) -"sv" = ( +"rV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/storage/primary) -"sw" = ( +"rW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -10235,7 +9673,7 @@ }, /turf/simulated/floor/tiled, /area/storage/primary) -"sx" = ( +"rX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -10244,7 +9682,7 @@ }, /turf/simulated/floor/tiled, /area/storage/primary) -"sy" = ( +"rY" = ( /obj/machinery/door/airlock/glass{ name = "Primary Tool Storage" }, @@ -10257,7 +9695,7 @@ }, /turf/simulated/floor/tiled, /area/storage/primary) -"sz" = ( +"rZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -10267,7 +9705,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"sA" = ( +"sa" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -10281,13 +9719,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"sB" = ( +"sb" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"sC" = ( +"sc" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 4 @@ -10299,24 +9737,24 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"sD" = ( +"sd" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"sE" = ( +"se" = ( /obj/machinery/atm{ pixel_x = 32 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"sF" = ( +"sf" = ( /obj/effect/landmark{ name = "JoinLateCryo" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/cryo) -"sG" = ( +"sg" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable/green{ d1 = 1; @@ -10328,27 +9766,27 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/cryo) -"sH" = ( +"sh" = ( /obj/machinery/cryopod, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/cryo) -"sI" = ( +"si" = ( /turf/simulated/wall, /area/bridge/levela) -"sJ" = ( +"sj" = ( /obj/machinery/light/small/emergency{ dir = 8 }, /turf/simulated/floor/plating, /area/bridge/levela) -"sK" = ( +"sk" = ( /turf/simulated/floor/plating, /area/bridge/levela) -"sL" = ( +"sl" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, /area/bridge/levela) -"sM" = ( +"sm" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -10358,7 +9796,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"sN" = ( +"sn" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1380; @@ -10376,7 +9814,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"sO" = ( +"so" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, @@ -10390,7 +9828,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"sP" = ( +"sp" = ( /obj/machinery/embedded_controller/radio/airlock/docking_port{ frequency = 1380; id_tag = "specops_dock_airlock"; @@ -10420,7 +9858,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"sQ" = ( +"sq" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1380; @@ -10440,21 +9878,21 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"sR" = ( +"sr" = ( /turf/simulated/wall, /area/maintenance/arrivals) -"sS" = ( +"ss" = ( /obj/machinery/vending/assist, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/storage/primary) -"sT" = ( +"st" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/storage/primary) -"sU" = ( +"su" = ( /obj/structure/table/standard, /obj/item/weapon/hand_labeler, /obj/machinery/light, @@ -10464,19 +9902,19 @@ }, /turf/simulated/floor/tiled, /area/storage/primary) -"sV" = ( +"sv" = ( /obj/structure/table/standard, /obj/item/weapon/storage/fancy/crayons, /obj/item/weapon/storage/fancy/crayons, /turf/simulated/floor/tiled, /area/storage/primary) -"sW" = ( +"sw" = ( /obj/structure/table/standard, /obj/item/device/camera, /obj/item/device/camera_film, /turf/simulated/floor/tiled, /area/storage/primary) -"sX" = ( +"sx" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -10490,7 +9928,7 @@ }, /turf/simulated/floor/plating, /area/storage/primary) -"sY" = ( +"sy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -10505,7 +9943,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"sZ" = ( +"sz" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -10517,35 +9955,26 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"ta" = ( +"sA" = ( /turf/simulated/wall, /area/hydroponics/garden) -"tb" = ( +"sB" = ( /turf/simulated/wall/r_wall, /area/hydroponics/garden) -"tc" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"td" = ( +"sC" = ( /obj/machinery/status_display{ pixel_x = 32 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"te" = ( +"sD" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/landmark{ name = "JoinLateCryo" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/cryo) -"tf" = ( +"sE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -10557,7 +9986,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/cryo) -"tg" = ( +"sF" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -10569,11 +9998,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"th" = ( +"sG" = ( /obj/structure/sign/pods, /turf/simulated/wall/r_wall, /area/bridge/levela) -"ti" = ( +"sH" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -10585,11 +10014,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"tj" = ( +"sI" = ( /obj/structure/sign/pods, /turf/simulated/wall, /area/bridge/levela) -"tk" = ( +"sJ" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -10601,7 +10030,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"tl" = ( +"sK" = ( /obj/machinery/status_display{ density = 0; layer = 4; @@ -10617,7 +10046,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"tm" = ( +"sL" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -10625,7 +10054,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"tn" = ( +"sM" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -10646,7 +10075,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"to" = ( +"sN" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -10656,26 +10085,26 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"tp" = ( +"sO" = ( /obj/random/loot, /obj/structure/table/rack, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"tq" = ( +"sP" = ( /turf/simulated/floor/plating, /area/maintenance/arrivals) -"tr" = ( +"sQ" = ( /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"ts" = ( +"sR" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, /turf/simulated/floor/plating, /area/storage/primary) -"tt" = ( +"sS" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -10688,7 +10117,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"tu" = ( +"sT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -10700,7 +10129,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"tv" = ( +"sU" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -10715,20 +10144,20 @@ }, /turf/simulated/floor/plating, /area/hydroponics/garden) -"tw" = ( +"sV" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/hydroponics/garden) -"tx" = ( +"sW" = ( /obj/machinery/vending/hydroseeds, /turf/simulated/floor/grass, /area/hydroponics/garden) -"ty" = ( +"sX" = ( /obj/machinery/vending/hydronutrients, /turf/simulated/floor/grass, /area/hydroponics/garden) -"tz" = ( +"sY" = ( /obj/machinery/smartfridge/drying_rack, /obj/machinery/light{ dir = 1 @@ -10738,18 +10167,18 @@ }, /turf/simulated/floor/grass, /area/hydroponics/garden) -"tA" = ( +"sZ" = ( /obj/structure/table/standard{ name = "plastic table frame" }, /obj/item/weapon/material/minihoe, /turf/simulated/floor/grass, /area/hydroponics/garden) -"tB" = ( +"ta" = ( /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/grass, /area/hydroponics/garden) -"tC" = ( +"tb" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -10762,7 +10191,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics/garden) -"tD" = ( +"tc" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -10778,7 +10207,7 @@ }, /turf/simulated/floor/plating, /area/hydroponics/garden) -"tE" = ( +"td" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10786,18 +10215,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"tF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"tG" = ( +"te" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 @@ -10808,14 +10226,14 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/cryo) -"tH" = ( +"tf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/landmark{ name = "JoinLateCryo" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/cryo) -"tI" = ( +"tg" = ( /obj/machinery/cryopod, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -10823,10 +10241,10 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/cryo) -"tJ" = ( +"th" = ( /turf/simulated/wall, /area/crew_quarters/fitness) -"tK" = ( +"ti" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -10840,7 +10258,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/crew_quarters/fitness) -"tL" = ( +"tj" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -10850,7 +10268,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/crew_quarters/fitness) -"tM" = ( +"tk" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -10863,7 +10281,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/crew_quarters/fitness) -"tN" = ( +"tl" = ( /obj/machinery/light/small{ dir = 1 }, @@ -10873,7 +10291,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"tO" = ( +"tm" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ frequency = 1380; id_tag = "escape_pod_1_berth"; @@ -10883,23 +10301,23 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"tP" = ( +"tn" = ( /turf/simulated/floor/tiled, /area/bridge/levela) -"tQ" = ( +"to" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/tiled, /area/bridge/levela) -"tR" = ( +"tp" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled, /area/bridge/levela) -"tS" = ( +"tq" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ frequency = 1380; id_tag = "escape_pod_2_berth"; @@ -10909,15 +10327,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"tT" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/bridge/levela) -"tU" = ( +"ts" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Surface Corridor 2" }, @@ -10926,7 +10336,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"tV" = ( +"tt" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ frequency = 1380; id_tag = "escape_pod_3_berth"; @@ -10936,14 +10346,14 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"tW" = ( +"tu" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/tiled, /area/bridge/levela) -"tX" = ( +"tv" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -10966,7 +10376,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"tY" = ( +"tw" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; @@ -10974,14 +10384,14 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"tZ" = ( +"tx" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 1 }, /turf/simulated/floor/tiled, /area/bridge/levela) -"ua" = ( +"ty" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8; icon_state = "map" @@ -10992,7 +10402,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"ub" = ( +"tz" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -11010,7 +10420,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/bridge/levela) -"uc" = ( +"tA" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -11024,7 +10434,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"ud" = ( +"tB" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -11032,7 +10442,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"ue" = ( +"tC" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11040,7 +10450,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"uf" = ( +"tD" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11052,7 +10462,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/fore) -"ug" = ( +"tE" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11061,7 +10471,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"uh" = ( +"tF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -11076,7 +10486,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"ui" = ( +"tG" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -11087,30 +10497,30 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics/garden) -"uj" = ( +"tH" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/disposalpipe/segment, /turf/simulated/floor/grass, /area/hydroponics/garden) -"uk" = ( +"tI" = ( /obj/structure/flora/grass/green, /turf/simulated/floor/grass, /area/hydroponics/garden) -"ul" = ( +"tJ" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /turf/simulated/floor/grass, /area/hydroponics/garden) -"um" = ( +"tK" = ( /turf/simulated/floor/grass, /area/hydroponics/garden) -"un" = ( +"tL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled, /area/hydroponics/garden) -"uo" = ( +"tM" = ( /obj/machinery/door/airlock/glass{ name = "Garden" }, @@ -11120,7 +10530,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics/garden) -"up" = ( +"tN" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -11128,7 +10538,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"uq" = ( +"tO" = ( /obj/machinery/door/airlock/glass{ name = "Cryogenic Storage" }, @@ -11136,7 +10546,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/cryo) -"ur" = ( +"tP" = ( /obj/machinery/door/airlock/glass{ name = "Cryogenic Storage" }, @@ -11149,7 +10559,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/cryo) -"us" = ( +"tQ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -11165,7 +10575,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/fitness) -"ut" = ( +"tR" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; @@ -11181,7 +10591,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/fitness) -"uu" = ( +"tS" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 4 @@ -11192,7 +10602,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/fitness) -"uv" = ( +"tT" = ( /obj/structure/weightlifter, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -11200,14 +10610,14 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/fitness) -"uw" = ( +"tU" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/fitness) -"ux" = ( +"tV" = ( /obj/structure/punching_bag, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -11215,7 +10625,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/fitness) -"uy" = ( +"tW" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ density = 0; @@ -11239,7 +10649,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"uz" = ( +"tX" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -11250,19 +10660,19 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"uA" = ( +"tY" = ( /obj/machinery/newscaster, /turf/simulated/wall, /area/bridge/levela) -"uB" = ( +"tZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/bridge/levela) -"uC" = ( +"ua" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/bridge/levela) -"uD" = ( +"ub" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -11271,7 +10681,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"uE" = ( +"uc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -11284,7 +10694,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"uF" = ( +"ud" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ density = 0; @@ -11304,7 +10714,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"uG" = ( +"ue" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -11318,7 +10728,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"uH" = ( +"uf" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -11331,7 +10741,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"uI" = ( +"ug" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -11340,7 +10750,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"uJ" = ( +"uh" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -11353,7 +10763,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"uK" = ( +"ui" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -11367,26 +10777,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"uL" = ( +"uj" = ( /turf/simulated/wall, /area/crew_quarters/locker) -"uM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"uN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/fore) -"uO" = ( +"uk" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -11398,26 +10792,26 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics/garden) -"uP" = ( +"ul" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/grass, /area/hydroponics/garden) -"uQ" = ( +"um" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/grass, /area/hydroponics/garden) -"uR" = ( +"un" = ( /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, /area/hydroponics/garden) -"uS" = ( +"uo" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/hydroponics/garden) -"uT" = ( +"up" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -11432,13 +10826,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics/garden) -"uU" = ( +"uq" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"uV" = ( +"ur" = ( /obj/structure/sign/directions/cryo{ dir = 4; icon_state = "direction_cryo"; @@ -11451,24 +10845,24 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"uW" = ( +"us" = ( /obj/machinery/newscaster{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"uX" = ( +"ut" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 1 }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"uY" = ( +"uu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"uZ" = ( +"uv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -11477,11 +10871,11 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"va" = ( +"uw" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"vb" = ( +"ux" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -11495,7 +10889,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/sleep/cryo) -"vc" = ( +"uy" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -11507,7 +10901,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/fitness) -"vd" = ( +"uz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; @@ -11519,10 +10913,10 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/fitness) -"ve" = ( +"uA" = ( /turf/simulated/floor/tiled/white, /area/crew_quarters/fitness) -"vf" = ( +"uB" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -11533,7 +10927,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"vg" = ( +"uC" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -11543,7 +10937,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"vh" = ( +"uD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -11557,11 +10951,11 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"vi" = ( +"uE" = ( /obj/effect/floor_decal/corner/paleblue/full, /turf/simulated/floor/tiled, /area/bridge/levela) -"vj" = ( +"uF" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/door/airlock/glass_command{ id_tag = ""; @@ -11570,24 +10964,24 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"vk" = ( +"uG" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled, /area/bridge/levela) -"vl" = ( +"uH" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/effect/floor_decal/corner/paleblue/full, /turf/simulated/floor/tiled, /area/bridge/levela) -"vm" = ( +"uI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/bridge/levela) -"vn" = ( +"uJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -11596,7 +10990,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"vo" = ( +"uK" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -11605,7 +10999,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"vp" = ( +"uL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -11614,7 +11008,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"vq" = ( +"uM" = ( /obj/machinery/light_switch{ dir = 2; name = "light switch "; @@ -11629,7 +11023,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"vr" = ( +"uN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -11639,14 +11033,14 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"vs" = ( +"uO" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/tiled, /area/bridge/levela) -"vt" = ( +"uP" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -11668,7 +11062,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"vu" = ( +"uQ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -11676,14 +11070,14 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/bridge/levela) -"vv" = ( +"uR" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 8 }, /turf/simulated/floor/tiled, /area/bridge/levela) -"vw" = ( +"uS" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -11700,7 +11094,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"vx" = ( +"uT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -11708,7 +11102,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"vy" = ( +"uU" = ( /obj/structure/table/standard{ name = "plastic table frame" }, @@ -11717,32 +11111,32 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"vz" = ( +"uV" = ( /obj/structure/closet/wardrobe/mixed, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"vA" = ( +"uW" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"vB" = ( +"uX" = ( /obj/structure/reagent_dispensers/fueltank, /obj/machinery/camera/network/civilian_east{ c_tag = "Surface - Locker Rooms Fore" }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"vC" = ( +"uY" = ( /obj/machinery/vending/snack, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"vD" = ( +"uZ" = ( /obj/machinery/vending/cigarette, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"vE" = ( +"va" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -11756,7 +11150,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/locker) -"vF" = ( +"vb" = ( /obj/structure/flora/ausbushes/brflowers, /obj/machinery/light{ dir = 8 @@ -11764,12 +11158,12 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/grass, /area/hydroponics/garden) -"vG" = ( +"vc" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/grass, /area/hydroponics/garden) -"vH" = ( +"vd" = ( /obj/machinery/light{ dir = 4 }, @@ -11780,7 +11174,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics/garden) -"vI" = ( +"ve" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -11795,7 +11189,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"vJ" = ( +"vf" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -11810,7 +11204,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"vK" = ( +"vg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -11824,7 +11218,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"vL" = ( +"vh" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -11843,7 +11237,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"vM" = ( +"vi" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -11852,18 +11246,18 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"vN" = ( +"vj" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"vO" = ( +"vk" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"vP" = ( +"vl" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -11874,7 +11268,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/sleep/cryo) -"vQ" = ( +"vm" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -11887,53 +11281,25 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/crew_quarters/fitness) -"vR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lime{ - icon_state = "corner_white"; - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue{ - icon_state = "corner_white"; - dir = 1 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/fitness) -"vS" = ( +"vn" = ( /obj/effect/floor_decal/corner/paleblue, /turf/simulated/floor/tiled/white, /area/crew_quarters/fitness) -"vT" = ( +"vo" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/fitness) -"vU" = ( +"vp" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/fitness) -"vV" = ( -/obj/effect/floor_decal/corner/lime{ - icon_state = "corner_white"; - dir = 10 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/fitness) -"vW" = ( +"vq" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -11946,16 +11312,16 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"vX" = ( +"vr" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge/levela) -"vY" = ( +"vs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge/levela) -"vZ" = ( +"vt" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -11975,7 +11341,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"wa" = ( +"vu" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -11987,7 +11353,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"wb" = ( +"vv" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -11997,7 +11363,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"wc" = ( +"vw" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -12006,7 +11372,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"wd" = ( +"vx" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -12020,7 +11386,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"we" = ( +"vy" = ( /obj/machinery/door/airlock/command{ name = "Head of Staff Preparation"; req_access = list(19) @@ -12030,7 +11396,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/bridge/levela) -"wf" = ( +"vz" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -12046,7 +11412,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"wg" = ( +"vA" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -12065,7 +11431,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"wh" = ( +"vB" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -12082,7 +11448,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"wi" = ( +"vC" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -12103,7 +11469,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"wj" = ( +"vD" = ( /obj/machinery/light{ dir = 8 }, @@ -12113,7 +11479,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"wk" = ( +"vE" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -12127,7 +11493,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"wl" = ( +"vF" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/machinery/door/firedoor{ @@ -12135,7 +11501,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"wm" = ( +"vG" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -12156,28 +11522,28 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"wn" = ( +"vH" = ( /obj/machinery/camera/network/telecom{ c_tag = "Telecomms - Aft Solar Array"; dir = 1 }, /turf/unsimulated/chasm_mask, /area/solar/port) -"wo" = ( +"vI" = ( /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/airless, /area/solar/starboard) -"wp" = ( +"vJ" = ( /obj/structure/closet/wardrobe/xenos, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"wq" = ( +"vK" = ( /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"wr" = ( +"vL" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -12188,7 +11554,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/locker) -"ws" = ( +"vM" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -12203,15 +11569,15 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics/garden) -"wt" = ( +"vN" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/grass, /area/hydroponics/garden) -"wu" = ( +"vO" = ( /turf/simulated/floor/tiled, /area/hydroponics/garden) -"wv" = ( +"vP" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -12225,7 +11591,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics/garden) -"ww" = ( +"vQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -12236,20 +11602,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"wx" = ( +"vR" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"wy" = ( +"vS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"wz" = ( +"vT" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -12263,14 +11629,14 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"wA" = ( +"vU" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"wB" = ( +"vV" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -12282,11 +11648,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/sleep/cryo) -"wC" = ( +"vW" = ( /obj/structure/window/reinforced, /turf/unsimulated/chasm_mask, /area/mine/explored) -"wD" = ( +"vX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -12294,27 +11660,27 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/fitness) -"wE" = ( +"vY" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/fitness) -"wF" = ( +"vZ" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; dir = 9 }, /turf/simulated/floor/beach/water/pool, /area/crew_quarters/fitness) -"wG" = ( +"wb" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; dir = 1 }, /turf/simulated/floor/beach/water/pool, /area/crew_quarters/fitness) -"wH" = ( +"wc" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1380; @@ -12326,7 +11692,7 @@ }, /turf/unsimulated/chasm_mask, /area/mine/explored) -"wI" = ( +"wd" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -12340,7 +11706,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"wJ" = ( +"we" = ( /obj/machinery/embedded_controller/radio/airlock/docking_port{ frequency = 1380; id_tag = "command_surface_airlock"; @@ -12366,7 +11732,7 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/bridge/levela) -"wK" = ( +"wf" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -12387,7 +11753,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"wL" = ( +"wg" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1380; @@ -12406,14 +11772,14 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"wM" = ( +"wh" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge/levela) -"wN" = ( +"wi" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 @@ -12428,7 +11794,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge/levela) -"wO" = ( +"wj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -12438,7 +11804,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge/levela) -"wP" = ( +"wk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -12451,7 +11817,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"wQ" = ( +"wl" = ( /obj/machinery/door/airlock/command{ name = "Head of Staff Preparation"; req_access = list(19) @@ -12465,7 +11831,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/bridge/levela) -"wR" = ( +"wm" = ( /obj/machinery/light_switch{ pixel_y = 22 }, @@ -12477,7 +11843,7 @@ }, /turf/simulated/floor/wood, /area/bridge/levela) -"wS" = ( +"wn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -12486,7 +11852,7 @@ }, /turf/simulated/floor/wood, /area/bridge/levela) -"wT" = ( +"wo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -12495,7 +11861,7 @@ }, /turf/simulated/floor/wood, /area/bridge/levela) -"wU" = ( +"wp" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -12504,7 +11870,7 @@ }, /turf/simulated/floor/wood, /area/bridge/levela) -"wV" = ( +"wq" = ( /obj/machinery/light{ dir = 1 }, @@ -12516,7 +11882,7 @@ }, /turf/simulated/floor/wood, /area/bridge/levela) -"wW" = ( +"wr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -12526,12 +11892,12 @@ }, /turf/simulated/floor/wood, /area/bridge/levela) -"wX" = ( +"ws" = ( /obj/structure/table/woodentable, /obj/machinery/photocopier, /turf/simulated/floor/wood, /area/bridge/levela) -"wY" = ( +"wt" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -12553,7 +11919,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"wZ" = ( +"wu" = ( /obj/structure/ladder/up{ pixel_y = 16 }, @@ -12569,7 +11935,7 @@ icon_state = "asteroidplating" }, /area/mine/explored) -"xa" = ( +"wv" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Surface Docks"; dir = 4 @@ -12580,7 +11946,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"xb" = ( +"ww" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; icon_state = "intact" @@ -12590,14 +11956,14 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"xc" = ( +"wx" = ( /obj/machinery/door/airlock/external, /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, /turf/simulated/floor/plating, /area/bridge/levela) -"xd" = ( +"wy" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, @@ -12606,13 +11972,13 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"xe" = ( +"wz" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, /turf/simulated/floor/plating, /area/bridge/levela) -"xf" = ( +"wA" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1380; @@ -12631,7 +11997,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"xg" = ( +"wB" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, @@ -12652,7 +12018,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"xh" = ( +"wC" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -12667,7 +12033,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"xi" = ( +"wD" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8; frequency = 1380; @@ -12693,7 +12059,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"xj" = ( +"wE" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1380; @@ -12713,7 +12079,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"xk" = ( +"wF" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -12721,7 +12087,7 @@ }, /turf/simulated/floor/airless, /area/solar/starboard) -"xl" = ( +"wG" = ( /obj/structure/cable/green, /obj/machinery/power/apc{ dir = 4; @@ -12730,28 +12096,28 @@ }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"xm" = ( +"wH" = ( /obj/structure/closet/wardrobe/white, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"xn" = ( +"wI" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"xo" = ( +"wJ" = ( /obj/structure/table/standard{ name = "plastic table frame" }, /obj/item/weapon/storage/toolbox/mechanical, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"xp" = ( +"wK" = ( /obj/structure/table/standard{ name = "plastic table frame" }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"xq" = ( +"wL" = ( /obj/machinery/light{ dir = 8 }, @@ -12768,7 +12134,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"xr" = ( +"wM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/green{ @@ -12786,7 +12152,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"xs" = ( +"wN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -12800,7 +12166,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"xt" = ( +"wO" = ( /obj/machinery/door/airlock/glass{ name = "Garden" }, @@ -12818,7 +12184,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics/garden) -"xu" = ( +"wP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -12833,7 +12199,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics/garden) -"xv" = ( +"wQ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -12844,7 +12210,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics/garden) -"xw" = ( +"wR" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12852,7 +12218,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics/garden) -"xx" = ( +"wS" = ( /obj/machinery/hologram/holopad, /obj/structure/cable/green{ d1 = 2; @@ -12861,7 +12227,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics/garden) -"xy" = ( +"wT" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -12874,7 +12240,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"xz" = ( +"wU" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 @@ -12886,7 +12252,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"xA" = ( +"wV" = ( /obj/machinery/light{ dir = 8 }, @@ -12902,12 +12268,12 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"xB" = ( +"wW" = ( /obj/structure/table/woodentable, /obj/item/clothing/glasses/threedglasses, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"xC" = ( +"wX" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -12918,41 +12284,35 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"xD" = ( +"wY" = ( /obj/structure/table/woodentable, /obj/random/coin, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"xE" = ( +"wZ" = ( /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"xF" = ( +"xa" = ( /obj/machinery/door/airlock/glass{ name = "Holodeck" }, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/crew_quarters/sleep/cryo) -"xG" = ( +"xb" = ( /obj/structure/window/reinforced{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"xH" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"xI" = ( +"xc" = ( /obj/machinery/door/airlock/glass{ name = "Pool" }, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"xJ" = ( +"xd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; @@ -12960,31 +12320,31 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/fitness) -"xK" = ( +"xe" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/fitness) -"xL" = ( +"xf" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; dir = 8 }, /turf/simulated/floor/beach/water/pool, /area/crew_quarters/fitness) -"xM" = ( +"xg" = ( /turf/simulated/floor/beach/water/pool, /area/crew_quarters/fitness) -"xN" = ( +"xh" = ( /obj/machinery/camera/network/civilian_east{ c_tag = "Surface - Corridor Camera 7"; dir = 8 }, /turf/simulated/floor/beach/water/pool, /area/crew_quarters/fitness) -"xO" = ( +"xi" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Surface Entrance"; dir = 8 @@ -12995,7 +12355,7 @@ }, /turf/unsimulated/chasm_mask, /area/bridge/levela) -"xP" = ( +"xj" = ( /obj/machinery/light_switch{ pixel_x = -22 }, @@ -13005,14 +12365,14 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"xQ" = ( +"xk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge/levela) -"xR" = ( +"xl" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -13026,7 +12386,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge/levela) -"xS" = ( +"xm" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -13035,7 +12395,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge/levela) -"xT" = ( +"xn" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -13051,34 +12411,34 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"xU" = ( +"xo" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/simulated/floor/wood, /area/bridge/levela) -"xV" = ( +"xp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/bridge/levela) -"xW" = ( +"xq" = ( /obj/structure/bed/chair/office/dark, /turf/simulated/floor/carpet, /area/bridge/levela) -"xX" = ( +"xr" = ( /obj/structure/bed/chair/office/dark, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/carpet, /area/bridge/levela) -"xY" = ( +"xs" = ( /turf/simulated/floor/carpet, /area/bridge/levela) -"xZ" = ( +"xt" = ( /obj/structure/table/woodentable, /obj/machinery/photocopier/faxmachine, /turf/simulated/floor/wood, /area/bridge/levela) -"ya" = ( +"xu" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -13097,7 +12457,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"yb" = ( +"xv" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -13110,7 +12470,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"yc" = ( +"xw" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -13118,7 +12478,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"yd" = ( +"xx" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -13128,7 +12488,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"ye" = ( +"xy" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -13141,7 +12501,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"yf" = ( +"xz" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -13153,7 +12513,7 @@ /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plating, /area/bridge/levela) -"yg" = ( +"xA" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -13166,7 +12526,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"yh" = ( +"xB" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -13175,12 +12535,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"yi" = ( +"xC" = ( /obj/machinery/power/tracker, /obj/structure/cable/yellow, /turf/simulated/floor/airless, /area/solar/starboard) -"yj" = ( +"xD" = ( /obj/structure/closet/wardrobe/grey, /obj/machinery/alarm{ dir = 4; @@ -13190,12 +12550,12 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"yk" = ( +"xE" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"yl" = ( +"xF" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -13207,11 +12567,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/locker) -"ym" = ( +"xG" = ( /obj/structure/flora/ausbushes/leafybush, /turf/simulated/floor/grass, /area/hydroponics/garden) -"yn" = ( +"xH" = ( /obj/structure/flora/grass/green, /obj/machinery/light, /obj/machinery/power/apc{ @@ -13222,7 +12582,7 @@ /obj/structure/cable/green, /turf/simulated/floor/grass, /area/hydroponics/garden) -"yo" = ( +"xI" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -13236,11 +12596,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/fore) -"yp" = ( +"xJ" = ( /obj/structure/table/woodentable, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"yq" = ( +"xK" = ( /obj/structure/table/woodentable, /obj/item/device/paicard, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -13256,7 +12616,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"yr" = ( +"xL" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -13271,7 +12631,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"ys" = ( +"xM" = ( /obj/machinery/door/airlock/glass{ name = "Holodeck" }, @@ -13289,7 +12649,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/sleep/cryo) -"yt" = ( +"xN" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -13304,7 +12664,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"yu" = ( +"xO" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -13318,7 +12678,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"yv" = ( +"xP" = ( /obj/structure/window/reinforced, /obj/machinery/camera/network/civilian_east{ c_tag = "Surface - Fitness Corridor"; @@ -13333,7 +12693,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"yw" = ( +"xQ" = ( /obj/machinery/door/airlock/glass{ name = "Pool" }, @@ -13346,7 +12706,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"yx" = ( +"xR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -13360,7 +12720,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/fitness) -"yy" = ( +"xS" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, @@ -13377,7 +12737,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"yz" = ( +"xT" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(19) }, @@ -13398,7 +12758,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"yA" = ( +"xU" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -13415,7 +12775,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"yB" = ( +"xV" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -13436,7 +12796,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"yC" = ( +"xW" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -13458,21 +12818,21 @@ }, /turf/simulated/floor/tiled, /area/bridge/levela) -"yD" = ( +"xX" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/tiled, /area/bridge/levela) -"yE" = ( +"xY" = ( /obj/structure/flora/pottedplant/random, /obj/structure/sign/drop{ pixel_x = 32 }, /turf/simulated/floor/tiled, /area/bridge/levela) -"yF" = ( +"xZ" = ( /obj/structure/table/woodentable, /obj/machinery/camera/network/command{ c_tag = "Bridge - Surface Meeting Room"; @@ -13482,7 +12842,7 @@ /obj/item/weapon/storage/box/cups, /turf/simulated/floor/wood, /area/bridge/levela) -"yG" = ( +"ya" = ( /obj/structure/table/woodentable, /obj/item/weapon/folder/blue, /obj/item/weapon/folder/blue, @@ -13493,7 +12853,7 @@ }, /turf/simulated/floor/carpet, /area/bridge/levela) -"yH" = ( +"yb" = ( /obj/structure/table/woodentable, /obj/item/weapon/folder/blue, /obj/item/weapon/folder/blue, @@ -13504,14 +12864,14 @@ /obj/item/weapon/pen, /turf/simulated/floor/carpet, /area/bridge/levela) -"yI" = ( +"yc" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/carpet, /area/bridge/levela) -"yJ" = ( +"yd" = ( /turf/simulated/floor/wood, /area/bridge/levela) -"yK" = ( +"ye" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 8 @@ -13525,7 +12885,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"yL" = ( +"yf" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -13537,7 +12897,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"yM" = ( +"yg" = ( /obj/machinery/embedded_controller/radio/airlock/docking_port{ frequency = 1380; id_tag = "centcom_shuttle_dock_airlock"; @@ -13569,7 +12929,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"yN" = ( +"yh" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -13582,32 +12942,32 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"yO" = ( +"yi" = ( /obj/structure/closet/wardrobe/black, /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"yP" = ( +"yj" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"yQ" = ( +"yk" = ( /obj/structure/table/standard{ name = "plastic table frame" }, /obj/item/weapon/tape_roll, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"yR" = ( +"yl" = ( /obj/item/device/radio/intercom{ pixel_x = 32 }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"yS" = ( +"ym" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -13616,7 +12976,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics/garden) -"yT" = ( +"yn" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -13625,7 +12985,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics/garden) -"yU" = ( +"yo" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -13634,7 +12994,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics/garden) -"yV" = ( +"yp" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -13646,7 +13006,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics/garden) -"yW" = ( +"yq" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -13658,7 +13018,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics/garden) -"yX" = ( +"yr" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -13667,7 +13027,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics/garden) -"yY" = ( +"ys" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -13678,19 +13038,19 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/fore) -"yZ" = ( +"yt" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"za" = ( +"yu" = ( /obj/structure/window/reinforced{ dir = 1 }, /turf/unsimulated/chasm_mask, /area/mine/explored) -"zb" = ( +"yv" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -13699,7 +13059,7 @@ }, /turf/unsimulated/chasm_mask, /area/mine/explored) -"zc" = ( +"yw" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -13715,7 +13075,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"zd" = ( +"yx" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -13724,7 +13084,7 @@ }, /turf/unsimulated/chasm_mask, /area/mine/explored) -"ze" = ( +"yy" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -13738,11 +13098,11 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/fitness) -"zf" = ( +"yz" = ( /obj/item/weapon/inflatable_duck, /turf/simulated/floor/beach/water/pool, /area/crew_quarters/fitness) -"zg" = ( +"yA" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ d1 = 1; @@ -13753,7 +13113,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/bridge/levela) -"zh" = ( +"yB" = ( /obj/machinery/vending/coffee, /obj/machinery/status_display{ density = 0; @@ -13763,19 +13123,19 @@ }, /turf/simulated/floor/wood, /area/bridge/levela) -"zi" = ( +"yC" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/carpet, /area/bridge/levela) -"zj" = ( +"yD" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/simulated/floor/carpet, /area/bridge/levela) -"zk" = ( +"yE" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -13795,7 +13155,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"zl" = ( +"yF" = ( /obj/machinery/washing_machine, /obj/effect/floor_decal/corner/blue/diagonal, /obj/effect/floor_decal/corner/white/diagonal{ @@ -13804,7 +13164,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"zm" = ( +"yG" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -13815,7 +13175,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"zn" = ( +"yH" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -13827,20 +13187,20 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"zo" = ( +"yI" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"zp" = ( +"yJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"zq" = ( +"yK" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -13848,18 +13208,18 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"zr" = ( +"yL" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"zs" = ( +"yM" = ( /obj/structure/disposalpipe/junction, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"zt" = ( +"yN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/light{ icon_state = "tube1"; @@ -13870,7 +13230,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"zu" = ( +"yO" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -13882,11 +13242,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/fore) -"zv" = ( +"yP" = ( /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"zw" = ( +"yQ" = ( /obj/structure/undies_wardrobe, /obj/machinery/status_display{ pixel_x = 0; @@ -13894,20 +13254,11 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"zx" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/cryo) -"zy" = ( +"yS" = ( /obj/structure/closet/wardrobe/pjs, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"zz" = ( +"yT" = ( /obj/structure/flora/pottedplant/random, /obj/machinery/light_switch{ pixel_x = 0; @@ -13915,7 +13266,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/cryo) -"zA" = ( +"yU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/glass{ @@ -13933,7 +13284,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"zB" = ( +"yV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -13949,18 +13300,11 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/fitness) -"zC" = ( +"yW" = ( /obj/item/weapon/beach_ball, /turf/simulated/floor/beach/water/pool, /area/crew_quarters/fitness) -"zD" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/beach/water/pool, -/area/crew_quarters/fitness) -"zE" = ( +"yX" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; icon_state = "intact" @@ -13978,7 +13322,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"zF" = ( +"yY" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10; icon_state = "intact" @@ -13996,42 +13340,42 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"zG" = ( +"yZ" = ( /turf/simulated/open, /area/turbolift/command_station) -"zH" = ( +"za" = ( /obj/machinery/vending/cola, /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/wood, /area/bridge/levela) -"zI" = ( +"zb" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/wood, /area/bridge/levela) -"zJ" = ( +"zc" = ( /obj/structure/sign/double/map/left{ pixel_y = -32 }, /turf/simulated/floor/wood, /area/bridge/levela) -"zK" = ( +"zd" = ( /obj/structure/sign/double/map/right{ pixel_y = -32 }, /turf/simulated/floor/wood, /area/bridge/levela) -"zL" = ( +"ze" = ( /obj/structure/table/woodentable, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, /turf/simulated/floor/wood, /area/bridge/levela) -"zM" = ( +"zf" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -14051,10 +13395,10 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"zN" = ( +"zg" = ( /turf/simulated/floor/asteroid, /area/shuttle/transport1/station) -"zO" = ( +"zh" = ( /obj/machinery/washing_machine, /obj/item/device/radio/intercom{ pixel_x = -32 @@ -14070,7 +13414,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"zP" = ( +"zi" = ( /obj/effect/floor_decal/corner/blue/diagonal, /obj/effect/floor_decal/corner/white/diagonal{ icon_state = "corner_white_diagonal"; @@ -14078,7 +13422,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"zQ" = ( +"zj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -14087,7 +13431,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"zR" = ( +"zk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -14101,7 +13445,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"zS" = ( +"zl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -14115,7 +13459,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"zT" = ( +"zm" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -14130,7 +13474,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"zU" = ( +"zn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -14145,7 +13489,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"zV" = ( +"zo" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/structure/cable/green{ @@ -14165,7 +13509,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"zW" = ( +"zp" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -14184,7 +13528,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"zX" = ( +"zq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -14196,7 +13540,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"zY" = ( +"zr" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -14220,7 +13564,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"zZ" = ( +"zs" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; @@ -14236,7 +13580,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"Aa" = ( +"zt" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/directions/cryo{ dir = 1; @@ -14257,13 +13601,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"Ab" = ( +"zu" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, /turf/simulated/floor/plating, /area/crew_quarters/sleep/cryo) -"Ac" = ( +"zv" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -14278,13 +13622,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/fitness) -"Ad" = ( +"zw" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"Ae" = ( +"zx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -14298,7 +13642,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"Af" = ( +"zy" = ( /obj/machinery/light/small{ dir = 1 }, @@ -14314,7 +13658,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"Ag" = ( +"zz" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -14328,7 +13672,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/fitness) -"Ah" = ( +"zA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; @@ -14336,7 +13680,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/fitness) -"Ai" = ( +"zB" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -14356,7 +13700,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"Aj" = ( +"zC" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -14373,7 +13717,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"Ak" = ( +"zD" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -14394,7 +13738,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"Al" = ( +"zE" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -14406,13 +13750,13 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"Am" = ( +"zF" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"An" = ( +"zG" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14420,11 +13764,11 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"Ao" = ( +"zH" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"Ap" = ( +"zI" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -14434,7 +13778,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"Aq" = ( +"zJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14458,7 +13802,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"Ar" = ( +"zK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14468,7 +13812,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"As" = ( +"zL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14477,7 +13821,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"At" = ( +"zM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14487,7 +13831,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"Au" = ( +"zN" = ( /obj/machinery/light, /obj/structure/disposalpipe/segment{ dir = 4 @@ -14497,11 +13841,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"Av" = ( +"zO" = ( /obj/structure/disposalpipe/junction/yjunction, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"Aw" = ( +"zP" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -14510,7 +13854,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"Ax" = ( +"zQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; icon_state = "intact" @@ -14520,7 +13864,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"Ay" = ( +"zR" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -14530,7 +13874,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/fore) -"Az" = ( +"zS" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -14539,27 +13883,27 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/fore) -"AA" = ( +"zT" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"AB" = ( +"zU" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"AC" = ( +"zV" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ dir = 8 }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"AD" = ( +"zW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -14579,7 +13923,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"AE" = ( +"zX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -14594,7 +13938,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"AF" = ( +"zY" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -14605,7 +13949,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"AG" = ( +"zZ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -14617,7 +13961,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/fitness) -"AH" = ( +"Aa" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -14627,31 +13971,16 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/fitness) -"AI" = ( -/obj/machinery/light, -/turf/simulated/floor/beach/water/pool, -/area/crew_quarters/fitness) -"AJ" = ( -/obj/machinery/station_map{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"AK" = ( +"Ac" = ( /obj/structure/closet/secure_closet/personal, /obj/machinery/light, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"AL" = ( +"Ad" = ( /obj/structure/closet/secure_closet/personal, -/obj/machinery/status_display{ - pixel_x = 0; - pixel_y = -32 - }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"AM" = ( +"Ae" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/cable/green, /obj/machinery/power/apc{ @@ -14665,24 +13994,10 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) -"AN" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"AO" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"AP" = ( +"Ag" = ( /turf/simulated/wall, /area/crew_quarters/sleep/bedrooms) -"AQ" = ( +"Ah" = ( /obj/machinery/door/airlock{ id_tag = "Dormitory 2"; name = "Dorm" @@ -14697,10 +14012,10 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/sleep/bedrooms) -"AR" = ( +"Ai" = ( /turf/simulated/wall, /area/crew_quarters/toilet) -"AS" = ( +"Aj" = ( /obj/machinery/door/airlock{ name = "Unisex Restrooms" }, @@ -14714,7 +14029,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"AT" = ( +"Ak" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -14725,7 +14040,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/storage/tools) -"AU" = ( +"Al" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -14734,7 +14049,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/storage/tools) -"AV" = ( +"Am" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -14746,10 +14061,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/storage/tools) -"AW" = ( +"An" = ( /turf/simulated/wall, /area/storage/tools) -"AX" = ( +"Ao" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -14761,7 +14076,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/storage/tools) -"AY" = ( +"Ap" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -14772,7 +14087,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/storage/tools) -"AZ" = ( +"Aq" = ( /obj/machinery/door/airlock/glass{ name = "Holodeck Control" }, @@ -14786,14 +14101,14 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"Ba" = ( +"Ar" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, /turf/simulated/floor/plating, /area/crew_quarters/locker) -"Bb" = ( +"As" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /obj/machinery/camera/network/civilian_east{ @@ -14802,7 +14117,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/bedrooms) -"Bc" = ( +"At" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -14812,12 +14127,12 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/sleep/bedrooms) -"Bd" = ( +"Au" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /turf/simulated/floor/wood, /area/crew_quarters/sleep/bedrooms) -"Be" = ( +"Av" = ( /obj/machinery/light_switch{ pixel_y = 28 }, @@ -14832,7 +14147,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"Bf" = ( +"Aw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -14842,13 +14157,13 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"Bg" = ( +"Ax" = ( /obj/machinery/door/airlock{ name = "Unit 1" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"Bh" = ( +"Ay" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -14857,12 +14172,12 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"Bi" = ( +"Az" = ( /obj/machinery/door/airlock/glass, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Bj" = ( +"AA" = ( /obj/machinery/door/airlock/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -14873,11 +14188,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Bk" = ( +"AB" = ( /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Bl" = ( +"AC" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -14888,11 +14203,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/storage/tools) -"Bm" = ( +"AD" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/storage/tools) -"Bn" = ( +"AE" = ( /obj/structure/table/steel, /obj/random/tech_supply, /obj/random/tech_supply, @@ -14900,7 +14215,7 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled, /area/storage/tools) -"Bo" = ( +"AF" = ( /obj/structure/table/steel, /obj/machinery/cell_charger, /obj/random/tech_supply, @@ -14925,14 +14240,14 @@ }, /turf/simulated/floor/tiled, /area/storage/tools) -"Bp" = ( +"AG" = ( /turf/simulated/floor/tiled, /area/storage/tools) -"Bq" = ( +"AH" = ( /obj/structure/closet/toolcloset, /turf/simulated/floor/tiled, /area/storage/tools) -"Br" = ( +"AI" = ( /obj/structure/closet{ icon_closed = "cabinet_closed"; icon_opened = "cabinet_open"; @@ -14941,7 +14256,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"Bs" = ( +"AJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -14951,12 +14266,12 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"Bt" = ( +"AK" = ( /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"Bu" = ( +"AL" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /obj/item/device/radio/intercom{ @@ -14966,7 +14281,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/bedrooms) -"Bv" = ( +"AM" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /obj/machinery/light/small{ @@ -14974,7 +14289,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/bedrooms) -"Bw" = ( +"AN" = ( /obj/structure/sink{ dir = 8; icon_state = "sink"; @@ -14991,7 +14306,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"Bx" = ( +"AO" = ( /obj/machinery/light{ dir = 4 }, @@ -15005,12 +14320,12 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"By" = ( +"AP" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Bz" = ( +"AQ" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -15021,11 +14336,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"BA" = ( +"AR" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"BB" = ( +"AS" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -15037,11 +14352,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/storage/tools) -"BC" = ( +"AT" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/storage/tools) -"BD" = ( +"AU" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -15049,14 +14364,14 @@ }, /turf/simulated/floor/tiled, /area/storage/tools) -"BE" = ( +"AV" = ( /obj/structure/closet/athletic_mixed, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"BF" = ( +"AW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -15071,7 +14386,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"BG" = ( +"AX" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -15082,7 +14397,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"BH" = ( +"AY" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -15099,7 +14414,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"BI" = ( +"AZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, @@ -15116,14 +14431,7 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"BJ" = ( -/obj/machinery/light/small/emergency{ - icon_state = "bulb1"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"BK" = ( +"Ba" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /obj/machinery/power/apc{ @@ -15137,7 +14445,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/bedrooms) -"BL" = ( +"Bb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -15147,12 +14455,12 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/sleep/bedrooms) -"BM" = ( +"Bc" = ( /obj/item/weapon/bedsheet/mime, /obj/structure/bed/padded, /turf/simulated/floor/wood, /area/crew_quarters/sleep/bedrooms) -"BN" = ( +"Bd" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -15161,25 +14469,25 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"BO" = ( +"Be" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"BP" = ( +"Bf" = ( /obj/machinery/door/airlock{ name = "Unit 2" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"BQ" = ( +"Bg" = ( /obj/machinery/atm{ pixel_x = -32 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"BR" = ( +"Bh" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -15198,7 +14506,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"BS" = ( +"Bi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -15212,7 +14520,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"BT" = ( +"Bj" = ( /obj/machinery/door/airlock/glass{ name = "Auxiliary Tool Storage"; req_access = list(12) @@ -15231,7 +14539,7 @@ }, /turf/simulated/floor/tiled, /area/storage/tools) -"BU" = ( +"Bk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -15246,7 +14554,7 @@ }, /turf/simulated/floor/tiled, /area/storage/tools) -"BV" = ( +"Bl" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -15258,7 +14566,7 @@ }, /turf/simulated/floor/tiled, /area/storage/tools) -"BW" = ( +"Bm" = ( /obj/structure/table/steel, /obj/random/tech_supply, /obj/random/tech_supply, @@ -15271,7 +14579,7 @@ }, /turf/simulated/floor/tiled, /area/storage/tools) -"BX" = ( +"Bn" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -15279,7 +14587,7 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled, /area/storage/tools) -"BY" = ( +"Bo" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -15287,7 +14595,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"BZ" = ( +"Bp" = ( /obj/structure/table/rack, /obj/item/weapon/beach_ball/holoball, /obj/item/weapon/beach_ball, @@ -15295,7 +14603,7 @@ /obj/item/device/violin, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"Ca" = ( +"Bq" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -15303,7 +14611,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"Cb" = ( +"Br" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 @@ -15323,15 +14631,15 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"Cc" = ( +"Bs" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"Cd" = ( +"Bt" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"Ce" = ( +"Bu" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /obj/machinery/light/small{ @@ -15339,12 +14647,12 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/bedrooms) -"Cf" = ( +"Bv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/crew_quarters/sleep/bedrooms) -"Cg" = ( +"Bw" = ( /obj/machinery/light_switch{ pixel_x = 22; pixel_y = 10 @@ -15353,7 +14661,7 @@ /obj/item/weapon/bedsheet/mime, /turf/simulated/floor/wood, /area/crew_quarters/sleep/bedrooms) -"Ch" = ( +"Bx" = ( /obj/structure/sink{ dir = 8; icon_state = "sink"; @@ -15370,14 +14678,14 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"Ci" = ( +"By" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"Cj" = ( +"Bz" = ( /obj/machinery/light{ dir = 8 }, @@ -15388,7 +14696,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Ck" = ( +"BA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -15398,10 +14706,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Cl" = ( +"BB" = ( /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Cm" = ( +"BC" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -15415,33 +14723,33 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/storage/tools) -"Cn" = ( +"BD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/storage/tools) -"Co" = ( +"BE" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/tiled, /area/storage/tools) -"Cp" = ( +"BF" = ( /obj/structure/closet/lasertag/blue, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"Cq" = ( +"BG" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"Cr" = ( +"BH" = ( /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"Cs" = ( +"BI" = ( /obj/structure/closet/secure_closet/personal, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/bedrooms) -"Ct" = ( +"BJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -15449,40 +14757,40 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/sleep/bedrooms) -"Cu" = ( +"BK" = ( /obj/structure/closet/secure_closet/personal, /turf/simulated/floor/wood, /area/crew_quarters/sleep/bedrooms) -"Cv" = ( +"BL" = ( /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"Cw" = ( +"BM" = ( /obj/machinery/door/airlock{ name = "Unit 3" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"Cx" = ( +"BN" = ( /obj/machinery/light/small{ dir = 4 }, /obj/machinery/recharge_station, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"Cy" = ( +"BO" = ( /obj/item/device/radio/intercom{ pixel_x = -32 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Cz" = ( +"BP" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/storage/tools) -"CA" = ( +"BQ" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 @@ -15490,28 +14798,20 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/storage/tools) -"CB" = ( +"BR" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled, /area/storage/tools) -"CC" = ( +"BS" = ( /obj/structure/closet/lasertag/red, /turf/simulated/floor/tiled/dark, /area/crew_quarters/fitness) -"CD" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/fitness) -"CE" = ( +"BU" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/sleep/bedrooms) -"CF" = ( +"BV" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -15520,7 +14820,7 @@ /obj/structure/closet/secure_closet/personal, /turf/simulated/floor/wood, /area/crew_quarters/sleep/bedrooms) -"CG" = ( +"BW" = ( /obj/machinery/door/airlock{ name = "Unisex Showers" }, @@ -15528,15 +14828,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"CH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"CI" = ( +"BY" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -15544,7 +14836,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/storage/tools) -"CJ" = ( +"BZ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -15553,20 +14845,20 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/storage/tools) -"CK" = ( +"Ca" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, /turf/simulated/floor/plating, /area/crew_quarters/fitness) -"CL" = ( +"Cb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/carpet, /area/crew_quarters/sleep/bedrooms) -"CM" = ( +"Cc" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -15574,7 +14866,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/bedrooms) -"CN" = ( +"Cd" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower{ icon_state = "shower"; @@ -15582,14 +14874,14 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"CO" = ( +"Ce" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"CP" = ( +"Cf" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower{ dir = 8; @@ -15602,10 +14894,10 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"CQ" = ( +"Cg" = ( /turf/simulated/wall, /area/hallway/secondary/entry/aft) -"CR" = ( +"Ch" = ( /obj/structure/disposalpipe/segment, /obj/machinery/station_map{ dir = 4; @@ -15613,7 +14905,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"CS" = ( +"Ci" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -15625,13 +14917,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"CT" = ( +"Cj" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"CU" = ( +"Ck" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -15643,27 +14935,27 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/aft) -"CV" = ( +"Cl" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"CW" = ( +"Cm" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"CX" = ( +"Cn" = ( /turf/simulated/floor/carpet, /area/crew_quarters/sleep/bedrooms) -"CY" = ( +"Co" = ( /obj/machinery/light, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"CZ" = ( +"Cp" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower{ dir = 8; @@ -15678,21 +14970,21 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) -"Da" = ( +"Cq" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -32 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Db" = ( +"Cr" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Dc" = ( +"Cs" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /obj/machinery/light/small{ @@ -15704,7 +14996,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/bedrooms) -"Dd" = ( +"Ct" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -15717,7 +15009,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"De" = ( +"Cu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -15732,7 +15024,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Df" = ( +"Cv" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(19) }, @@ -15747,7 +15039,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/levela) -"Dg" = ( +"Cw" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /obj/machinery/camera/network/civilian_east{ @@ -15756,17 +15048,17 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/bedrooms) -"Dh" = ( +"Cx" = ( /turf/simulated/mineral, /area/mine/explored) -"Di" = ( +"Cy" = ( /obj/structure/disposalpipe/segment, /obj/machinery/newscaster{ pixel_x = -32 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Dj" = ( +"Cz" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -15781,20 +15073,20 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/aft) -"Dk" = ( +"CA" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /obj/machinery/light, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Dl" = ( +"CB" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /turf/simulated/floor/plating, /area/bridge/levela) -"Dm" = ( +"CC" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 9 @@ -15811,31 +15103,25 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"Dn" = ( +"CD" = ( /obj/structure/ladder{ icon_state = "ladder01"; pixel_y = 16 }, /turf/simulated/open, /area/bridge/levela) -"Do" = ( +"CE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"Dp" = ( +"CF" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Dq" = ( +"CG" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 @@ -15858,7 +15144,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Dr" = ( +"CH" = ( /obj/machinery/atmospherics/pipe/zpipe/down/supply{ icon_state = "down-supply"; dir = 4 @@ -15873,7 +15159,7 @@ /obj/structure/lattice/catwalk, /turf/simulated/open, /area/bridge/levela) -"Ds" = ( +"CI" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -15891,27 +15177,17 @@ }, /turf/simulated/floor/plating, /area/bridge/levela) -"Dt" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/bridge/levela) -"Du" = ( +"CJ" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/aft) -"Dv" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"Dw" = ( +"CN" = ( /turf/simulated/mineral, /area/bridge/levela) -"Dx" = ( +"CO" = ( /obj/structure/ladder/up{ pixel_y = 16 }, @@ -15920,7 +15196,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"Dy" = ( +"CP" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -15934,23 +15210,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/aft) -"Dz" = ( -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"DA" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"DB" = ( +"CS" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -15961,30 +15221,14 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/aft) -"DC" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"DD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"DE" = ( +"CT" = ( /obj/structure/mopbucket, /obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/vomit, /turf/simulated/floor/plating, /area/hallway/secondary/entry/aft) -"DF" = ( +"CU" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/network/civilian_east{ @@ -15992,13 +15236,13 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/aft) -"DG" = ( +"CV" = ( /obj/structure/janitorialcart, /obj/item/weapon/mop, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/hallway/secondary/entry/aft) -"DH" = ( +"CW" = ( /obj/structure/disposalpipe/segment, /obj/machinery/camera/network/civilian_east{ c_tag = "Surface - Corridor Camera 9"; @@ -16006,7 +15250,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"DI" = ( +"CY" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -16015,7 +15259,7 @@ /obj/item/weapon/reagent_containers/glass/bucket, /turf/simulated/floor/plating, /area/hallway/secondary/entry/aft) -"DJ" = ( +"CZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -16029,7 +15273,7 @@ }, /turf/simulated/floor/plating, /area/hallway/secondary/entry/aft) -"DK" = ( +"Da" = ( /obj/structure/closet/l3closet/janitor, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -16041,26 +15285,18 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/hallway/secondary/entry/aft) -"DL" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/status_display{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"DM" = ( +"Dc" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/hallway/secondary/entry/aft) -"DN" = ( +"Dd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/hallway/secondary/entry/aft) -"DO" = ( +"De" = ( /obj/structure/closet/jcloset, /obj/item/weapon/storage/box/lights/mixed, /obj/item/weapon/storage/box/lights/mixed, @@ -16073,32 +15309,10 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/hallway/secondary/entry/aft) -"DP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atm{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"DQ" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"DR" = ( -/turf/simulated/floor/asteroid, -/area/merchant_ship/docked) -"DS" = ( +"Df" = ( /turf/simulated/wall, /area/quartermaster/loading) -"DT" = ( +"Dg" = ( /obj/machinery/door/airlock/maintenance{ name = "Cargo Bay Warehouse Maintenance"; req_access = list(31) @@ -16106,7 +15320,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/quartermaster/loading) -"DU" = ( +"Dh" = ( /obj/machinery/door/airlock{ name = "Custodial Closet"; req_access = list(26) @@ -16116,18 +15330,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor, /area/hallway/secondary/entry/aft) -"DV" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"DW" = ( +"Di" = ( /turf/simulated/floor/asteroid, /area/supply/station) -"DX" = ( +"Dj" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -16143,7 +15349,7 @@ }, /turf/simulated/floor/plating, /area/quartermaster/loading) -"DY" = ( +"Dk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -16159,7 +15365,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"DZ" = ( +"Dl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -16172,7 +15378,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Ea" = ( +"Dm" = ( /obj/machinery/light{ dir = 1 }, @@ -16190,7 +15396,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Eb" = ( +"Dn" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -16199,7 +15405,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Ec" = ( +"Do" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -16215,12 +15421,12 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Ed" = ( +"Dp" = ( /obj/vehicle/train/cargo/trolley, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Ee" = ( +"Dq" = ( /obj/vehicle/train/cargo/trolley, /obj/machinery/requests_console{ department = "Cargo Bay"; @@ -16231,7 +15437,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Ef" = ( +"Dr" = ( /obj/vehicle/train/cargo/engine, /obj/machinery/alarm{ pixel_y = 22 @@ -16239,15 +15445,15 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Eg" = ( +"Ds" = ( /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Eh" = ( +"Dt" = ( /obj/structure/disposalpipe/trunk, /obj/machinery/disposal, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Ei" = ( +"Du" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -16261,7 +15467,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/quartermaster/loading) -"Ej" = ( +"Dv" = ( /obj/structure/table/standard, /obj/item/clothing/head/soft, /obj/item/weapon/stamp{ @@ -16275,7 +15481,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Ek" = ( +"Dw" = ( /obj/structure/table/standard, /obj/item/weapon/hand_labeler, /obj/machinery/requests_console{ @@ -16295,17 +15501,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"El" = ( -/obj/effect/floor_decal/corner/brown/full{ - icon_state = "corner_white_full"; - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"Em" = ( +"Dy" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -16321,11 +15517,11 @@ }, /turf/simulated/floor/plating, /area/quartermaster/loading) -"En" = ( +"Dz" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Eo" = ( +"DA" = ( /obj/machinery/light{ dir = 1 }, @@ -16335,23 +15531,23 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Ep" = ( +"DB" = ( /obj/machinery/newscaster{ pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Eq" = ( +"DC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Er" = ( +"DD" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Es" = ( +"DE" = ( /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ dir = 4 @@ -16366,7 +15562,7 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/hallway/secondary/entry/aft) -"Et" = ( +"DF" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -16380,7 +15576,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/aft) -"Eu" = ( +"DG" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -16393,7 +15589,7 @@ }, /turf/simulated/floor/plating, /area/quartermaster/loading) -"Ev" = ( +"DH" = ( /obj/machinery/camera/network/civilian_east{ c_tag = "Cargo - Loading Bay 2"; dir = 4 @@ -16404,11 +15600,11 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Ew" = ( +"DI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Ex" = ( +"DJ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -16416,15 +15612,15 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Ey" = ( +"DK" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Ez" = ( +"DL" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"EA" = ( +"DM" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -16438,7 +15634,7 @@ }, /turf/simulated/floor/plating, /area/quartermaster/loading) -"EB" = ( +"DN" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /obj/effect/floor_decal/corner/brown{ @@ -16447,14 +15643,14 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"EC" = ( +"DO" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"ED" = ( +"DP" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -16466,45 +15662,15 @@ }, /turf/simulated/floor/plating, /area/quartermaster/loading) -"EE" = ( +"DQ" = ( /obj/machinery/vending/cola, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"EF" = ( +"DR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"EG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"EH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"EI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"EJ" = ( +"DT" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -16516,7 +15682,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/quartermaster/loading) -"EK" = ( +"DU" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -16525,7 +15691,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/quartermaster/loading) -"EL" = ( +"DV" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -16536,7 +15702,7 @@ }, /turf/simulated/floor/plating, /area/quartermaster/loading) -"EM" = ( +"DW" = ( /obj/machinery/conveyor_switch/oneway{ id = "QMLoad2" }, @@ -16546,35 +15712,35 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"EN" = ( +"DX" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"EO" = ( +"DY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"EP" = ( +"DZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"EQ" = ( +"Ea" = ( /obj/effect/large_stock_marker, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"ER" = ( +"Eb" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"ES" = ( +"Ec" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -16585,14 +15751,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/quartermaster/loading) -"ET" = ( +"Ed" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"EU" = ( +"Ee" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -16605,7 +15771,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/quartermaster/loading) -"EV" = ( +"Ef" = ( /obj/machinery/vending/snack, /obj/machinery/camera/network/civilian_east{ c_tag = "Cargo - Auxilliary Entrance"; @@ -16613,7 +15779,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"EW" = ( +"Eg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -16631,7 +15797,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"EX" = ( +"Eh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -16648,7 +15814,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"EY" = ( +"Ei" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -16661,7 +15827,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"EZ" = ( +"Ej" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -16677,7 +15843,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Fa" = ( +"Ek" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -16695,7 +15861,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Fb" = ( +"El" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -16720,7 +15886,7 @@ /obj/structure/disposalpipe/junction, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Fc" = ( +"Em" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -16735,83 +15901,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Fd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"Fe" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "merchant_shuttle_dock_inner"; - locked = 1; - req_access = list(13) - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "merchant_shuttle_dock"; - name = "interior access button"; - pixel_y = 32; - req_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"Ff" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "merchant_shuttle_dock_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "merchant_shuttle_dock"; - in_use = 0; - pixel_x = 0; - pixel_y = 27; - req_access = list(13); - tag_airpump = "merchant_shuttle_dock_pump"; - tag_chamber_sensor = "merchant_shuttle_dock_sensor"; - tag_exterior_door = "merchant_shuttle_dock_outer"; - tag_interior_door = "merchant_shuttle_dock_inner" - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"Fg" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "merchant_shuttle_dock_sensor"; - pixel_y = -27 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"Fh" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "merchant_shuttle_dock_outer"; - locked = 1; - req_access = list(13) - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "merchant_shuttle_dock"; - name = "exterior access button"; - pixel_y = 32; - req_access = list(13) - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"Fi" = ( +"En" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -16826,46 +15916,46 @@ }, /turf/simulated/floor/plating, /area/quartermaster/loading) -"Fj" = ( +"Eo" = ( /obj/machinery/conveyor{ dir = 4; id = "QMLoad2" }, /turf/simulated/floor/plating, /area/quartermaster/loading) -"Fk" = ( +"Ep" = ( /obj/machinery/conveyor{ dir = 4; id = "QMLoad2" }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Fl" = ( +"Eq" = ( /obj/effect/floor_decal/industrial/loading{ icon_state = "loadingarea"; dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Fm" = ( +"Er" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Fn" = ( +"Es" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Fo" = ( +"Et" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Fp" = ( +"Eu" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 @@ -16877,7 +15967,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Fq" = ( +"Ev" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -16892,7 +15982,7 @@ }, /turf/simulated/floor/plating, /area/quartermaster/loading) -"Fr" = ( +"Ew" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16902,7 +15992,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Fs" = ( +"Ex" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -16920,7 +16010,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Ft" = ( +"Ey" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -16941,7 +16031,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Fu" = ( +"Ez" = ( /obj/machinery/door/airlock/glass_mining{ name = "Cargo Bay"; req_access = list(31) @@ -16963,7 +16053,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Fv" = ( +"EA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -16983,7 +16073,7 @@ dir = 4 }, /area/hallway/secondary/entry/aft) -"Fw" = ( +"EB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -17003,7 +16093,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Fx" = ( +"EC" = ( /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ dir = 4 @@ -17017,7 +16107,7 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/hallway/secondary/entry/aft) -"Fy" = ( +"ED" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -17028,32 +16118,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"Fz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"FA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/hallway/secondary/entry/aft) -"FB" = ( +"EE" = ( /turf/simulated/floor/asteroid, /area/syndicate_station/surface) -"FC" = ( +"EF" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -17064,16 +16132,16 @@ }, /turf/simulated/floor/plating, /area/quartermaster/loading) -"FD" = ( +"EG" = ( /turf/simulated/floor/plating, /area/quartermaster/loading) -"FE" = ( +"EH" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"FF" = ( +"EI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -17082,7 +16150,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"FG" = ( +"EJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -17096,7 +16164,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"FH" = ( +"EK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -17110,7 +16178,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"FI" = ( +"EL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -17125,7 +16193,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"FJ" = ( +"EM" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -17139,7 +16207,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"FK" = ( +"EN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -17157,7 +16225,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"FL" = ( +"EO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -17175,7 +16243,7 @@ dir = 8 }, /area/quartermaster/loading) -"FM" = ( +"EP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -17193,7 +16261,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"FN" = ( +"EQ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -17213,7 +16281,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"FO" = ( +"ER" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -17223,7 +16291,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"FP" = ( +"ES" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -17239,33 +16307,17 @@ }, /turf/simulated/floor/plating, /area/quartermaster/loading) -"FQ" = ( +"ET" = ( /obj/structure/closet/crate/trashcart, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"FR" = ( +"EU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"FS" = ( -/obj/structure/flora/pottedplant/random, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"FT" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"FU" = ( +"EW" = ( /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ dir = 4 @@ -17277,7 +16329,7 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/hallway/secondary/entry/aft) -"FV" = ( +"EX" = ( /obj/machinery/light, /obj/machinery/camera/network/civilian_east{ c_tag = "Surface - Corridor Camera 1"; @@ -17286,27 +16338,7 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/aft) -"FW" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced, -/obj/machinery/door/window/westleft{ - dir = 1 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/secondary/entry/aft) -"FX" = ( +"EY" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -17318,7 +16350,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/aft) -"FY" = ( +"EZ" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -17330,7 +16362,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/quartermaster/loading) -"FZ" = ( +"Fa" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; id_tag = "cargo_bay"; @@ -17346,19 +16378,19 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Ga" = ( +"Fb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Gb" = ( +"Fc" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/ramp/bottom{ icon_state = "rampbot"; dir = 8 }, /area/quartermaster/loading) -"Gc" = ( +"Fd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -17372,7 +16404,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Gd" = ( +"Fe" = ( /obj/structure/closet/secure_closet/cargotech, /obj/machinery/light{ icon_state = "tube1"; @@ -17393,7 +16425,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Ge" = ( +"Ff" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -17405,7 +16437,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/quartermaster/qm) -"Gf" = ( +"Fg" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -17414,7 +16446,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/quartermaster/qm) -"Gg" = ( +"Fh" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -17426,10 +16458,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/quartermaster/qm) -"Gh" = ( +"Fi" = ( /turf/simulated/wall, /area/quartermaster/qm) -"Gi" = ( +"Fj" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, @@ -17444,14 +16476,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/secondary/entry/aft) -"Gj" = ( +"Fk" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 10 }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Gk" = ( +"Fl" = ( /obj/machinery/conveyor_switch/oneway{ convdir = -1; id = "QMLoad" @@ -17459,18 +16491,18 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Gl" = ( +"Fm" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Gm" = ( +"Fn" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Gn" = ( +"Fo" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -17480,7 +16512,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Go" = ( +"Fp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -17496,7 +16528,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Gp" = ( +"Fq" = ( /obj/structure/closet/secure_closet/cargotech, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; @@ -17504,19 +16536,19 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Gq" = ( +"Fr" = ( /obj/structure/filingcabinet, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"Gr" = ( +"Fs" = ( /obj/item/modular_computer/console/preset/supply, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"Gs" = ( +"Ft" = ( /obj/machinery/photocopier, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"Gt" = ( +"Fu" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /obj/machinery/light{ @@ -17525,7 +16557,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"Gu" = ( +"Fv" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -17543,7 +16575,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"Gv" = ( +"Fw" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -17563,7 +16595,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"Gw" = ( +"Fx" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -17578,21 +16610,21 @@ }, /turf/simulated/floor/plating, /area/quartermaster/loading) -"Gx" = ( +"Fy" = ( /obj/machinery/conveyor{ dir = 4; id = "QMLoad" }, /turf/simulated/floor/plating, /area/quartermaster/loading) -"Gy" = ( +"Fz" = ( /obj/machinery/conveyor{ dir = 4; id = "QMLoad" }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Gz" = ( +"FA" = ( /obj/machinery/conveyor{ dir = 4; id = "QMLoad" @@ -17600,7 +16632,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"GA" = ( +"FB" = ( /obj/machinery/conveyor{ dir = 4; id = "QMLoad" @@ -17610,7 +16642,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"GB" = ( +"FC" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/loading{ icon_state = "loadingarea"; @@ -17618,21 +16650,21 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"GC" = ( +"FD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"GD" = ( +"FE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"GE" = ( +"FF" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -17644,11 +16676,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/quartermaster/loading) -"GF" = ( +"FG" = ( /obj/effect/floor_decal/corner/brown/full, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"GG" = ( +"FH" = ( /obj/effect/landmark/start{ name = "Cargo Technician" }, @@ -17662,7 +16694,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"GH" = ( +"FI" = ( /obj/structure/closet/secure_closet/cargotech, /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; @@ -17673,7 +16705,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"GI" = ( +"FJ" = ( /obj/machinery/requests_console{ department = "Cargo Bay"; departmentType = 2; @@ -17683,7 +16715,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"GJ" = ( +"FK" = ( /obj/structure/bed/chair/office/dark, /obj/machinery/button/remote/airlock{ desc = "A remote control-switch for the office door."; @@ -17706,10 +16738,10 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"GK" = ( +"FL" = ( /turf/simulated/floor/tiled, /area/quartermaster/qm) -"GL" = ( +"FM" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -17718,7 +16750,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"GM" = ( +"FN" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -17729,10 +16761,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"GN" = ( +"FO" = ( /turf/simulated/wall, /area/maintenance/substation/civilian_east) -"GO" = ( +"FP" = ( /obj/machinery/light{ dir = 8 }, @@ -17742,25 +16774,13 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"GP" = ( -/obj/machinery/camera/network/civilian_east{ - c_tag = "Cargo - Loading Bay 1"; - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"GQ" = ( +"FR" = ( /turf/simulated/floor/tiled/ramp/bottom{ icon_state = "rampbot"; dir = 1 }, /area/quartermaster/loading) -"GR" = ( +"FS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -17774,7 +16794,7 @@ dir = 1 }, /area/quartermaster/loading) -"GS" = ( +"FT" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -17790,7 +16810,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/quartermaster/loading) -"GT" = ( +"FU" = ( /obj/item/weapon/paper_bin{ pixel_x = -3; pixel_y = 7 @@ -17802,7 +16822,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"GU" = ( +"FV" = ( /obj/item/weapon/folder/yellow, /obj/item/weapon/pen{ pixel_x = 4; @@ -17817,7 +16837,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"GV" = ( +"FW" = ( /obj/item/weapon/clipboard, /obj/item/weapon/stamp{ name = "Quartermaster's stamp"; @@ -17829,20 +16849,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"GW" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/machinery/camera/network/civilian_east{ - c_tag = "Cargo - Quartermaster's Office"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/qm) -"GX" = ( +"FY" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -17853,7 +16860,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"GY" = ( +"FZ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17865,7 +16872,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_east) -"GZ" = ( +"Ga" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -17883,7 +16890,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_east) -"Ha" = ( +"Gb" = ( /obj/machinery/power/sensor{ long_range = 1; name = "Powernet Sensor - Civilian (Surface Level) Subgrid"; @@ -17904,30 +16911,30 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_east) -"Hb" = ( +"Gc" = ( /turf/simulated/open, /area/turbolift/cargo_deliverys) -"Hc" = ( +"Gd" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Hd" = ( +"Ge" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"He" = ( +"Gf" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Hf" = ( +"Gg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -17942,13 +16949,13 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Hg" = ( +"Gh" = ( /turf/simulated/floor/tiled/ramp{ icon_state = "ramptop"; dir = 8 }, /area/quartermaster/loading) -"Hh" = ( +"Gi" = ( /obj/machinery/door/airlock/mining{ id_tag = "qmdoor"; name = "Quartermaster"; @@ -17957,21 +16964,21 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"Hi" = ( +"Gj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"Hj" = ( +"Gk" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"Hk" = ( +"Gl" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"Hl" = ( +"Gm" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -17980,7 +16987,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"Hm" = ( +"Gn" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -17990,7 +16997,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"Hn" = ( +"Go" = ( /obj/machinery/power/terminal{ dir = 4 }, @@ -18001,7 +17008,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_east) -"Ho" = ( +"Gp" = ( /obj/machinery/power/smes/buildable{ charge = 0; RCon_tag = "Substation - \[F.1] Civilian" @@ -18013,7 +17020,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_east) -"Hp" = ( +"Gq" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 8 @@ -18021,14 +17028,14 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Hq" = ( +"Gr" = ( /obj/machinery/light/small{ dir = 8 }, /obj/effect/floor_decal/corner/brown/full, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Hr" = ( +"Gs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -18050,7 +17057,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Hs" = ( +"Gt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18070,7 +17077,7 @@ dir = 8 }, /area/quartermaster/loading) -"Ht" = ( +"Gu" = ( /obj/machinery/door/airlock/mining{ id_tag = "qmdoor"; name = "Quartermaster"; @@ -18093,7 +17100,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"Hu" = ( +"Gv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -18114,7 +17121,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"Hv" = ( +"Gw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -18125,7 +17132,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"Hw" = ( +"Gx" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -18141,7 +17148,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"Hx" = ( +"Gy" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 2; @@ -18152,7 +17159,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"Hy" = ( +"Gz" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -18164,7 +17171,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_east) -"Hz" = ( +"GA" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -18177,13 +17184,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_east) -"HA" = ( +"GB" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "\[F.1] Civilian Substation Bypass" }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_east) -"HB" = ( +"GC" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 @@ -18191,7 +17198,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"HC" = ( +"GD" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -18204,7 +17211,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/quartermaster/loading) -"HD" = ( +"GE" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -18214,7 +17221,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/quartermaster/loading) -"HE" = ( +"GF" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -18228,18 +17235,18 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/quartermaster/loading) -"HF" = ( +"GG" = ( /obj/structure/closet, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"HG" = ( +"GH" = ( /obj/structure/closet/secure_closet/quartermaster, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"HH" = ( +"GI" = ( /obj/structure/table/standard, /obj/item/weapon/coin/silver{ pixel_x = -3; @@ -18252,7 +17259,7 @@ /obj/item/device/gps/mining, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"HI" = ( +"GJ" = ( /obj/structure/table/standard, /obj/item/weapon/cartridge/quartermaster{ pixel_x = 6; @@ -18269,7 +17276,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/qm) -"HJ" = ( +"GK" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -18280,11 +17287,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"HK" = ( +"GL" = ( /obj/effect/floor_decal/corner/brown, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"HL" = ( +"GM" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -18301,7 +17308,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/quartermaster/loading) -"HM" = ( +"GN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; @@ -18309,7 +17316,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"HN" = ( +"GO" = ( /obj/machinery/light{ dir = 1 }, @@ -18319,14 +17326,14 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"HO" = ( +"GP" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"HP" = ( +"GQ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -18342,7 +17349,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"HQ" = ( +"GR" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 1 @@ -18350,7 +17357,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"HR" = ( +"GS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18363,7 +17370,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"HS" = ( +"GT" = ( /obj/machinery/door/airlock/glass_mining{ name = "Delivery Office"; req_access = list(50) @@ -18377,7 +17384,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"HT" = ( +"GU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18390,13 +17397,13 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"HU" = ( +"GV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"HV" = ( +"GW" = ( /obj/item/weapon/storage/box, /obj/structure/table/standard, /obj/item/weapon/storage/box, @@ -18417,7 +17424,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"HW" = ( +"GX" = ( /obj/structure/table/standard, /obj/item/weapon/wrapping_paper, /obj/item/weapon/wrapping_paper, @@ -18436,7 +17443,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"HX" = ( +"GY" = ( /obj/structure/table/standard, /obj/item/weapon/packageWrap, /obj/item/weapon/packageWrap, @@ -18460,7 +17467,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"HY" = ( +"GZ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -18475,7 +17482,7 @@ }, /turf/simulated/floor/plating, /area/quartermaster/loading) -"HZ" = ( +"Ha" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -18494,7 +17501,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"Ia" = ( +"Hb" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -18512,7 +17519,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"Ib" = ( +"Hc" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -18532,14 +17539,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"Ic" = ( +"Hd" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Id" = ( +"He" = ( /obj/machinery/light, /obj/machinery/alarm{ dir = 1; @@ -18551,7 +17558,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Ie" = ( +"Hf" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 4 @@ -18564,7 +17571,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"If" = ( +"Hg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -18584,7 +17591,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/quartermaster/loading) -"Ig" = ( +"Hh" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -18595,7 +17602,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Ih" = ( +"Hi" = ( /obj/structure/table/standard, /obj/item/device/destTagger{ pixel_x = 4; @@ -18622,32 +17629,21 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Ii" = ( +"Hj" = ( /obj/structure/disposalpipe/junction{ dir = 1; icon_state = "pipe-j1" }, /turf/simulated/wall, /area/quartermaster/loading) -"Ij" = ( +"Hk" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall, /area/quartermaster/loading) -"Ik" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/camera/network/civilian_east{ - c_tag = "Cargo - Mail Room"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/loading) -"Il" = ( +"Hm" = ( /obj/structure/filingcabinet/filingcabinet, /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; @@ -18656,7 +17652,7 @@ /obj/effect/floor_decal/corner/paleblue, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Im" = ( +"Hn" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -18670,7 +17666,7 @@ }, /turf/simulated/floor/plating, /area/quartermaster/loading) -"In" = ( +"Ho" = ( /obj/machinery/light{ dir = 8 }, @@ -18681,7 +17677,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Io" = ( +"Hp" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -18692,14 +17688,14 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Ip" = ( +"Hq" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Iq" = ( +"Hr" = ( /obj/item/weapon/paper_bin{ pixel_x = -3; pixel_y = 7 @@ -18714,7 +17710,7 @@ /obj/effect/floor_decal/corner/paleblue, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Ir" = ( +"Hs" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -18726,7 +17722,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/quartermaster/loading) -"Is" = ( +"Ht" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/loading{ icon_state = "loadingarea"; @@ -18734,7 +17730,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"It" = ( +"Hu" = ( /obj/effect/floor_decal/industrial/loading{ icon_state = "loadingarea"; dir = 1 @@ -18742,20 +17738,20 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Iu" = ( +"Hv" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Iv" = ( +"Hw" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Iw" = ( +"Hx" = ( /obj/structure/table/standard{ name = "plastic table frame" }, @@ -18770,7 +17766,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"Ix" = ( +"Hy" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -18784,7 +17780,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"Iy" = ( +"Hz" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -18795,18 +17791,18 @@ }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"Iz" = ( +"HA" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"IA" = ( +"HB" = ( /obj/effect/floor_decal/industrial/loading{ icon_state = "loadingarea"; dir = 8 }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"IB" = ( +"HC" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -18818,13 +17814,13 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"IC" = ( +"HD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, /area/quartermaster/loading) -"ID" = ( +"HE" = ( /obj/item/weapon/folder/yellow, /obj/item/weapon/pen{ pixel_x = 4; @@ -18843,7 +17839,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/loading) -"IE" = ( +"HF" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -18861,7 +17857,7 @@ }, /turf/simulated/floor/plating, /area/quartermaster/loading) -"IF" = ( +"HG" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -18875,11 +17871,11 @@ }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"IG" = ( +"HH" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"IH" = ( +"HI" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -18898,7 +17894,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"II" = ( +"HJ" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, @@ -18913,25 +17909,25 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"IJ" = ( +"HK" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/wall, /area/maintenance/arrivals) -"IK" = ( +"HL" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall, /area/maintenance/arrivals) -"IL" = ( +"HM" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, /area/maintenance/arrivals) -"IM" = ( +"HN" = ( /obj/effect/decal/warning_stripes, /obj/structure/ladder{ icon_state = "ladder01"; @@ -18939,7 +17935,7 @@ }, /turf/simulated/open, /area/maintenance/arrivals) -"IN" = ( +"HO" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -18960,7 +17956,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"IO" = ( +"HP" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -18970,7 +17966,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"IP" = ( +"HQ" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -18978,7 +17974,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"IQ" = ( +"HR" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -18991,7 +17987,7 @@ /obj/structure/lattice/catwalk, /turf/simulated/open, /area/maintenance/arrivals) -"IR" = ( +"HS" = ( /obj/structure/cable{ d2 = 4; dir = 2; @@ -19012,7 +18008,7 @@ /obj/structure/lattice/catwalk, /turf/simulated/open, /area/maintenance/arrivals) -"IS" = ( +"HT" = ( /obj/machinery/light/small/emergency, /obj/structure/cable{ d1 = 1; @@ -19032,7 +18028,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"IT" = ( +"HU" = ( /obj/structure/cable{ icon_state = "12-0" }, @@ -19044,9 +18040,1384 @@ }, /turf/simulated/floor/plating, /area/maintenance/arrivals) -"IU" = ( +"HV" = ( /turf/simulated/floor/asteroid, /area/skipjack_station/surface) +"HW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/fitness) +"HX" = ( +/obj/effect/floor_decal/corner/lime{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/fitness) +"HY" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/fitness) +"HZ" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/beach/water/pool, +/area/crew_quarters/fitness) +"Ia" = ( +/turf/simulated/floor/plating{ + roof_type = null + }, +/area/turret_protected/tcomsat) +"Id" = ( +/obj/machinery/light, +/turf/simulated/floor/beach/water/pool, +/area/crew_quarters/fitness) +"Ie" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/bridge/levela) +"If" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"Ih" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"Ii" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"Ij" = ( +/obj/machinery/light/small/emergency{ + icon_state = "bulb1"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"Ik" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/aft) +"Il" = ( +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"Im" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/aft) +"In" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/aft) +"Io" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/aft) +"Ip" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/aft) +"Iq" = ( +/obj/structure/flora/pottedplant/random, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/aft) +"Is" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/status_display/arrivals_display{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/dock) +"Iu" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/status_display{ + pixel_x = 0; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"Iv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/status_display{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/aft) +"Iw" = ( +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"Ix" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"Iy" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"Iz" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 1; + icon_state = "leftsecure"; + name = "Holding Cell"; + req_access = list(2) + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"IA" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"IB" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/dock) +"IC" = ( +/obj/structure/window/reinforced, +/obj/effect/floor_decal/corner/blue/full, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/eastright{ + dir = 1; + name = "interior door"; + req_access = null + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/dock) +"ID" = ( +/obj/structure/window/reinforced, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/dock) +"IE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/floor_decal/industrial/warning/cee, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/dock) +"IF" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/port) +"IG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"IH" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + icon_state = "warningcee"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"II" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + tag = "icon-warningcee (EAST)"; + icon_state = "warningcee"; + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 4; + name = "Distro to Canisters"; + target_pressure = 200 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/exit) +"IJ" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4; + icon_state = "map" + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"IK" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8; + icon_state = "map"; + tag = "icon-manifold-f (WEST)" + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/port) +"IL" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + icon_state = "warningcee"; + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + name = "Distro to Canisters"; + target_pressure = 200 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/port) +"IM" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + icon_state = "warningcee"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/port) +"IN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/port) +"IO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"IQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"IR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"IS" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"IT" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"IU" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"IV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/machinery/door/airlock/atmos{ + name = "Docks Air Bypass"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"IW" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"IX" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"IZ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"Ja" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"Jb" = ( +/obj/machinery/atmospherics/tvalve/bypass{ + icon_state = "map_tvalve0"; + name = "Distro to Docks Bypass"; + state = 0 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"Jc" = ( +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"Jd" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"Je" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"Jf" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"Jh" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + icon_state = "intact"; + dir = 9 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"Ji" = ( +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"Jj" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible{ + tag = "icon-intact (NORTHEAST)"; + icon_state = "intact"; + dir = 5 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"Jk" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + icon_state = "map_universal"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"Jl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos{ + name = "Docks Air Bypass"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/fore) +"Jm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"Jn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/port) +"Jo" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/dock) +"Jp" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/port) +"Jq" = ( +/obj/effect/floor_decal/corner/lime/full{ + icon_state = "corner_white_full"; + dir = 1 + }, +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"Jr" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/power/apc/critical{ + dir = 8; + name = "west bump"; + pixel_x = -28; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"Js" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled, +/area/hallway/secondary/exit) +"Jt" = ( +/obj/effect/floor_decal/corner/lime/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"Ju" = ( +/obj/machinery/light, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Surface - Vacant Office 1"; + dir = 1 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/carpet, +/area/security/vacantoffice) +"Jv" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1; + icon_state = "comfychair_preview" + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/carpet, +/area/hallway/secondary/entry/fore) +"Jw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"Jx" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled, +/area/storage/primary) +"Jy" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/fore) +"Jz" = ( +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/bridge/levela) +"JA" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/cryo) +"JB" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light, +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"JC" = ( +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/fitness) +"JD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/aft) +"JE" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atm{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/aft) +"JF" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"JG" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"JH" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"JI" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"JJ" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"JK" = ( +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/aft) +"JL" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"JM" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"JN" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"JO" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"JP" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"JQ" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"JR" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"JS" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"JT" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"JU" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"JV" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"JW" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"JX" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"JY" = ( +/obj/effect/floor_decal/corner/brown/full{ + icon_state = "corner_white_full"; + dir = 1 + }, +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled, +/area/quartermaster/loading) +"JZ" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Ka" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Kb" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Kc" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Kd" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Ke" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Kf" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Kg" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Kh" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Ki" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Kj" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Kk" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Kl" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Km" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Kn" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Ko" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Kp" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Kq" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Kr" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Ks" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Kt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/aft) +"Ku" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/aft) +"Kv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/aft) +"Kw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/aft) +"Kx" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Ky" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Kz" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KA" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KB" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KC" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KD" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KE" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KF" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KG" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KH" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KI" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KJ" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KK" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KL" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KM" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KN" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KO" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KP" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KQ" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KR" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/aft) +"KT" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "merchant_shuttle_dock_inner"; + locked = 1; + req_access = list(13) + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "merchant_shuttle_dock"; + name = "interior access button"; + pixel_y = 32; + req_access = list(13) + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/aft) +"KU" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "merchant_shuttle_dock_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "merchant_shuttle_dock"; + in_use = 0; + pixel_x = 0; + pixel_y = 27; + req_access = list(13); + tag_airpump = "merchant_shuttle_dock_pump"; + tag_chamber_sensor = "merchant_shuttle_dock_sensor"; + tag_exterior_door = "merchant_shuttle_dock_outer"; + tag_interior_door = "merchant_shuttle_dock_inner" + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/aft) +"KV" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "merchant_shuttle_dock_sensor"; + pixel_y = -27 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/aft) +"KW" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "merchant_shuttle_dock_outer"; + locked = 1; + req_access = list(13) + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "merchant_shuttle_dock"; + name = "exterior access button"; + pixel_y = 32; + req_access = list(13) + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/aft) +"KX" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KY" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"KZ" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"La" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Lb" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Lc" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Ld" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Le" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Lf" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Lg" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Lh" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Li" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Lj" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Lk" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Ll" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Lm" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Ln" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Lo" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Lp" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Lq" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Lr" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Ls" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/aft) +"Lt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/aft) +"Lu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/aft) +"Lv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/aft) +"Lw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/secondary/entry/aft) +"Lx" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Ly" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Lz" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LA" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LB" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LC" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LD" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LE" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LF" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LG" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LH" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LI" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LJ" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LK" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LL" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LM" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LN" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LO" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LP" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LQ" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LR" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LS" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/aft) +"LT" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/structure/window/reinforced, +/obj/machinery/door/window/westleft{ + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/entry/aft) +"LU" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LV" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LW" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LX" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LY" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"LZ" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Ma" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Mb" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Mc" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Md" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Me" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Mf" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Mg" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Mh" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Mi" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Mj" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Mk" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Ml" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Mm" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Mn" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Mo" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Mp" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Mq" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Mr" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Ms" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Mt" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Mu" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Mv" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Mw" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Mx" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"My" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"Mz" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"MA" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"MB" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"MC" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"MD" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"ME" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"MF" = ( +/turf/simulated/floor/asteroid, +/area/merchant_ship/docked) +"MG" = ( +/obj/machinery/camera/network/civilian_east{ + c_tag = "Cargo - Loading Bay 1"; + dir = 8 + }, +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled, +/area/quartermaster/loading) +"MH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/civilian_east{ + c_tag = "Cargo - Quartermaster's Office"; + dir = 8 + }, +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled, +/area/quartermaster/qm) +"MI" = ( +/obj/machinery/camera/network/civilian_east{ + c_tag = "Cargo - Mail Room"; + dir = 4 + }, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled, +/area/quartermaster/loading) (1,1,1) = {" aa @@ -19919,7 +20290,7 @@ aa aa ac aa -gH +gE aa ac aa @@ -20176,7 +20547,7 @@ ac ac ab aa -gI +gF aa ab ac @@ -20431,9 +20802,9 @@ aa aa aa aa -fi +ff aa -gJ +gG aa aa aa @@ -20684,19 +21055,19 @@ aa aa ac aa -dv -dv -dv -dv -dv +du +du +du +du +du aa -gK +gH aa -dv -dv -dv -dv -dv +du +du +du +du +du aa ac aa @@ -20941,19 +21312,19 @@ aa aa ac aa -dw -dS -dS -dS -dS -fX -gK -hH -iv -iv -iv -iv -kA +dv +dR +dR +dR +dR +fU +gH +hC +ir +ir +ir +ir +kx aa ac aa @@ -21198,19 +21569,19 @@ aa aa ac aa -dx -dx -dx -dx -dx +dw +dw +dw +dw +dw aa -gK +gH aa -dx -dx -dx -dx -dx +dw +dw +dw +dw +dw aa ac aa @@ -21461,7 +21832,7 @@ aa aa aa aa -gK +gH aa aa aa @@ -21712,19 +22083,19 @@ aa aa ac aa -dv -dv -dv -dv -dv +du +du +du +du +du aa -gK +gH aa -dv -dv -dv -dv -dv +du +du +du +du +du aa ac aa @@ -21965,23 +22336,23 @@ ag ag aa aa -bJ +bM aa ac aa -dw -dS -dS -dS -dS -fX -gK -hH -iv -iv -iv -iv -kA +dv +dR +dR +dR +dR +fU +gH +hC +ir +ir +ir +ir +kx aa ac aa @@ -22226,19 +22597,19 @@ aa aa ac aa -dx -dx -dx -dx -dx +dw +dw +dw +dw +dw aa -gK +gH aa -dx -dx -dx -dx -dx +dw +dw +dw +dw +dw aa ac aa @@ -22489,7 +22860,7 @@ aa aa aa aa -gK +gH aa aa aa @@ -22740,19 +23111,19 @@ aa aa ac aa -dv -dv -dv -dv -dv +du +du +du +du +du aa -gK +gH aa -dv -dv -dv -dv -dv +du +du +du +du +du aa ac aa @@ -22997,19 +23368,19 @@ aa aa ac aa -dw -dS -dS -dS -dS -fX -gK -hH -iv -iv -iv -iv -kA +dv +dR +dR +dR +dR +fU +gH +hC +ir +ir +ir +ir +kx aa ac aa @@ -23254,19 +23625,19 @@ aa aa ac aa -dx -dx -dx -dx -dx +dw +dw +dw +dw +dw aa -gL +gI aa -dx -dx -dx -dx -dx +dw +dw +dw +dw +dw aa ac aa @@ -23517,7 +23888,7 @@ aa aa aa aa -gM +gJ aa aa aa @@ -23773,9 +24144,9 @@ ac ac ac ac -fY -gN -fY +fV +gK +fV ac ac ac @@ -24030,9 +24401,9 @@ aa aa aa aa -fZ -gO -fZ +fW +gL +fW aa aa aa @@ -24286,11 +24657,11 @@ ag aa aa aa -fj -ga -gP -hI -iw +fg +fX +gM +hD +it ag ag aa @@ -24543,11 +24914,11 @@ ag ag ag ag -fk -gb -gQ -hJ -fk +fh +fY +gN +hE +fh ag ag ag @@ -24800,11 +25171,11 @@ ag ag ag ag -fk -gc -gR -hK -fk +fh +fZ +gO +hF +fh ag ag ag @@ -25057,11 +25428,11 @@ ag ag ag ag -fk -gd -gS -hL -fk +fh +ga +gP +hG +fh ag ag ag @@ -25314,11 +25685,11 @@ aP aP aP aP -fk -fk -gT -fk -fk +fh +fh +gQ +fh +fh aP aP aP @@ -25573,8 +25944,8 @@ aV aV aV aV -gU -hM +gR +hH aV aV aV @@ -25590,7 +25961,7 @@ aV aV aV aV -nS +nw aP ag ag @@ -26848,27 +27219,27 @@ bc bg bg bg -bv -bv -bv -bv -bv -dT -bv -bv -bv -bv -bv -bv -bv -bv -bv -dT -bv -bv -lF -bv -bv +by +by +by +by +by +Ia +by +by +by +by +by +by +by +by +by +Ia +by +by +ly +by +by bg bg bg @@ -27104,29 +27475,29 @@ aP bc bg bg -bv -bv -bv -bv -bv -bv -dU -bv -bv -bv -bv -bv -bv -bv -bv -bv -dU -bv -bv -bv -bv -bv -bv +by +by +by +by +by +by +dS +by +by +by +by +by +by +by +by +by +dS +by +by +by +by +by +by bg bg bc @@ -27361,29 +27732,29 @@ aP bc bg bg -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by bg bg bc @@ -27618,29 +27989,29 @@ aP bc bg bg -bw -bV -bV -bv -bV -bV -bV -bV -bV -bV -bV -bV -bV -bV -bV -bV -bV -bV -bV -bv -bv -bv -bv +bz +bX +bX +by +bX +bX +bX +bX +bX +bX +bX +bX +bX +bX +bX +bX +bX +bX +bX +by +by +by +by bg bg bc @@ -27875,29 +28246,29 @@ aP bc bg bg -bx -bW -cr +bA +bY +cs cI dd -dy -dy -em -eM -fl -ge -gV -hN -dy -dy -dy -dy -dy -lf -dB -bv -bv -bv +dx +dx +ek +eK +fi +gb +gS +hI +dx +dx +dx +dx +dx +kZ +dA +by +by +by bg bg bc @@ -28132,29 +28503,29 @@ aP bc bg bg -by -bX -cs +bB +bZ +ct cJ de -dz -bZ -en -eN -fm -gf -gW -hO -bZ -bZ -bZ -bZ -kB +dy +cb +el +eL +fj +gc +gT +hJ +cb +cb +cb +cb +ky de -dB -bv -bv -bv +dA +by +by +by bg bg bc @@ -28389,29 +28760,29 @@ aP bc bg bg -bz -bx -ct +bC +bA +cu cK df -dA -dV -dV -dV -dV -dV -dV -dV -dV -dV -dV -dV -kC +dz +dT +dT +dT +dT +dT +dT +dT +dT +dT +dT +dT +kz de -dB -bv -bv -bv +dA +by +by +by bg bg bc @@ -28646,28 +29017,28 @@ aP bc bg bg +bD +ca bA -bY -bx cL dg -dB -dV -eo -eo -eo -eo -gX -eo -eo -eo -eo -dV +dA +dT +em +em +em +em +gU +em +em +em +em +dT cM de -dB -bv -bv +dA +by +by bg bg bg @@ -28687,17 +29058,17 @@ aa aa ac aa -qV -rf -rB +qv +qF +rb aa -qV -rf -rB +qv +qF +rb aa -qV -rf -rB +qv +qF +rb aa ac aa @@ -28903,31 +29274,31 @@ aP bc bg bg -bB -bB -cu +bE +bE +cv cI dh -dC -dV -eo -ew -fn -ew -gY -hP -ew -jd -eo -dV +dB +dT +em +eu +fk +eu +gV +hK +eu +je +em +dT cM de -dB -kD -me -kD -kD -kD +dA +kA +lX +kA +kA +kA bc bc aP @@ -28944,17 +29315,17 @@ aa aa ac aa -qV -rg -rB +qv +qG +rb aa -qV -rg -rB +qv +qG +rb aa -qV -rg -rB +qv +qG +rb aa ac aa @@ -29161,38 +29532,38 @@ bc bg bg bg -bZ -bZ +cb +cb cM di -dD -dV -eo -ew -fo -ew -gZ -hQ -ew -je -eo -dV -kD -lg -kD -kD -mf -mw -kD -kD +dC +dT +em +eu +fl +eu +gW +hL +eu +jf +em +dT +kA +la +kA +kA +lY +mp +kA +kA bc bc aP -nT +nx aV aV aV -nS +nw aP ag ag @@ -29201,17 +29572,17 @@ aa aa ac aa -qV -rg -rB +qv +qG +rb aa -qV -rg -rB +qv +qG +rb aa -qV -rg -rB +qv +qG +rb aa ac aa @@ -29423,32 +29794,32 @@ bh cN dj bh -dV -ep -ew -fp -ew -ha -hR -ew -jf -jA -dV -kE -lh -lG +dT +en +eu +fm +eu +gX +hM +eu +jg +jE +dT +kB +lb +lz +kA kD -kG -mx -kD -mN -mN -mN -mN -nU -mN -mN -mN +mq +kA +mE +mE +mE +mE +ny +mE +mE +mE aS aP ag @@ -29458,17 +29829,17 @@ aa aa ac aa -qV -rg -rB +qv +qG +rb aa -qV -rg -rB +qv +qG +rb aa -qV -rg -rB +qv +qG +rb aa ac aa @@ -29675,58 +30046,58 @@ bc bh bh bh -ca -cv +cc +cw cO dk -dE -dW -eq -eO -eO -eO -et -eO -eO -jg +dD +dU eo -dV -kF -lh -lH -kD -mg -my -kD -mN -mN -ni -ny -nV -mO -or -mN +eM +eM +eM +er +eM +eM +jh +em +dT +kC +lb +lA +kA +lZ +mr +kA +mE +mE +mY +nj +nz +mF +nQ +mE aS -pr -pr -pr -pr -ql +oQ +oQ +oQ +oQ +pK aa ac aa -qV -rg -rB +qv +qG +rb aa -qV -rg -rB +qv +qG +rb aa -qV -rg -rB -wn +qv +qG +rb +vH ab ac ac @@ -29932,56 +30303,56 @@ bc bh bh bh -cb -cw +cd +cx cP dl -dF -dX -er -ew -ew -ew -eo -ew -ew -ew -eo +dE dV -kG -lh -kI +ep +eu +eu +eu +em +eu +eu +eu +em +dT kD -mh -mz -mH -mO -mO -nj -mO -nV -mO -os -mN +lb +kF +kA +ma +ms +mA +mF +mF +mZ +mF +nz +mF +nR +mE aS -pr -pB -pP -pZ -qm -qu -qD +oQ +pa +po +py +pL +pU +qd aa aa -rh +qH aa aa aa -rh +qH aa aa aa -rh +qH aa aa aa @@ -30189,60 +30560,60 @@ aP bh bh bh -cc -cx -ci +ce +cy +ck dm -dG -dY -es -eP -fq -gg -hb -gg -ix -eP -jB -kc -kH -li -lI -lV -mi -mA -mI -mP -mP +dF +dW +eq +eN +fn +gd +gY +gd +iu +eN +jF +kb +kE +lc +lB +lO +mb +mt +mB +mG +mG +na nk -nz -nW -oj -ot -mN -oZ -ps -pC -pQ -qa -qn -qv -qE -qM -qW -ri -ri -ri -ri -ri -ri -ri -ri -ri -ri -wo -xk -yi +nA +nF +nS +mE +oy +oR +pb +pp +pz +pM +pV +qe +qm +qw +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +vI +wF +xC aa ac aa @@ -30446,56 +30817,56 @@ ag bh bh bh -cd -cy -ci +cf +cz +ck dl -ci -dZ -eo -ew -ew -ew -eo -ew -ew -ew -eo -dV -kI -lh -lJ +ck +dX +em +eu +eu +eu +em +eu +eu +eu +em +dT +kF +lb +lC +kA +mc kD -mj -kG +mA mH -mQ -mO +mF +nb nl -nA -nX -mO -ot -mN -pa -pr -pD -pR -qb -qo -qu -qD +nB +mF +nS +mE +oz +oQ +pc +pq +pA +pN +pU +qd aa aa -rj +qJ aa aa aa -rj +qJ aa aa aa -rj +qJ aa aa aa @@ -30703,57 +31074,57 @@ ag bh bh bh -ce -cz +cg +cA cQ dn -dH -ea -et -eO -eO -eO -et -eO -eO -jh -eo -dV -kJ -lh -lH -kD -mk -mB -kD -mN -mN +dG +dY +er +eM +eM +eM +er +eM +eM +ji +em +dT +kG +lb +lA +kA +md +mu +kA +mE +mE +nc nm -nB -mO -mO -ou -mN +mF +mF +nT +mE aP -pr -pr -pr -pr -qp +oQ +oQ +oQ +oQ +pO aa ac aa -qV -rk -rB +qv +qK +rb aa -qV -rk -rB +qv +qK +rb aa -qV -rk -rB +qv +qK +rb aa ab ac @@ -30960,37 +31331,37 @@ ag bh bh bh -cf -cA +ch +cB cR bh -dI +dH bh +es eu -ew -ew -ew -hc -hR -ew -ji -jC -dV -kK -lh -lK +eu +eu +gZ +hM +eu +jj +jG +dT +kH +lb +lD +kA +kF kD -kI -kG -kD -mN -mN -mN -nC -mN -mN -mN -mN +kA +mE +mE +mE +nn +mE +mE +mE +mE ag ag ag @@ -31000,17 +31371,17 @@ aa aa ac aa -qV -rk -rB +qv +qK +rb aa -qV -rk -rB +qv +qK +rb aa -qV -rk -rB +qv +qK +rb aa ac aa @@ -31221,31 +31592,31 @@ bh bh bh bh -dJ +dI bh -ev -ew -fr -ew -hd -hS -ew -jj -eo -dV -kD -lj -kD -kD -ml -mC -kD -kD +et +eu +fo +eu +ha +hN +eu +jk +em +dT +kA +ld +kA +kA +me +mv +kA +kA bc -mN -nD -mN -ok +mE +no +mE +nG ag ag ag @@ -31257,17 +31628,17 @@ aa aa ac aa -qV -rk -rB +qv +qK +rb aa -qV -rk -rB +qv +qK +rb aa -qV -rk -rB +qv +qK +rb aa ac aa @@ -31473,36 +31844,36 @@ ag ag bh bh -bC -cg -cg +bF +ci +ci cS bh -dK -eb -ew -ew -fs -ew -he -hT -ew -jk -eo -dV +dJ +dZ +eu +eu +fp +eu +hb +hO +eu +jl +em +dT cM de -dB +dA bg -mm +mf bg bg -kD +kA bc -mN -nD -mN -ok +mE +no +mE +nG ag ag ag @@ -31514,17 +31885,17 @@ ag aa ac aa -qV -rk -rB +qv +qK +rb aa -qV -rk -rB +qv +qK +rb aa -qV -rk -rB +qv +qK +rb aa ac aa @@ -31737,28 +32108,28 @@ bh bh bh bh -ex -eo -eo -eo -hf -eo -eo -eo -eo -dV +ev +em +em +em +hc +em +em +em +em +dT cM de -dB -bv -bv +dA +by +by bg bg bg bc -mN -nD -mN +mE +no +mE ag ag ag @@ -31771,17 +32142,17 @@ ag aa ac aa -qV -rl -rB +qv +qL +rb aa -qV -rl -rB +qv +qL +rb aa -qV -rl -rB +qv +qL +rb aa ac aa @@ -31987,35 +32358,35 @@ ag ag bh bh -bD -ch -cB +bG +cj +cC cT do bh -dV -dV -dV -dV -dV -dV -dV -dV -dV -dV -dV -kC +dT +dT +dT +dT +dT +dT +dT +dT +dT +dT +dT +kz de -dB -bv -bv -bv +dA +by +by +by bg bg bc -mN -nD -mN +mE +no +mE ag ag ag @@ -32244,35 +32615,35 @@ ag ag bh bh -bE -ci -ci -cU bH +ck +ck +cU +bK bh -bV -bV -bV -ft -gh -hg -hU -iy -jl -bV -bV -kL +bX +bX +bX +fq +ge +hd +hP +iv +jm +bX +bX +kI de -dB -bv -bv -bv +dA +by +by +by bg bg -mN -mN -nC -mN +mE +mE +nn +mE ag ag ag @@ -32501,35 +32872,35 @@ ag ag bh bh -bF -ci -ci +bI +ck +ck cV dp -dL -dy -dy -dy -fu -gi -hh -hV -iz -jm -dy -dy -dy -lk -dB -bv -bv -bv +dK +dx +dx +dx +fr +gf +he +hQ +iw +jn +dx +dx +dx +le +dA +by +by +by bg bg -na -nn -nD -mN +mQ +nd +no +mE ag ag ag @@ -32758,35 +33129,35 @@ ag ag bh bh -bG -ci -ci +bJ +ck +ck cW dq bh -bZ -bZ -bZ -bZ -gj +cb +cb +cb +cb +gg de -hW -bZ -bZ -bZ -bZ -bZ -bZ -bv -bv -bv -bv +hR +cb +cb +cb +cb +cb +cb +by +by +by +by bg bg -na +mQ +ne no -nD -mN +mE ag ag ag @@ -33015,36 +33386,36 @@ ag ag bh bh -bH -ci -ci +bK +ck +ck cW -bH +bK bh -bv -bv -eQ -fv -gk -hi -hX -fv -jn -bv -bv -bv -bv -bv -bv -bv -bv +by +by +eO +fs +gh +hf +hS +fs +jo +by +by +by +by +by +by +by +by bg bg -nb +mR +nf np -nE -mN -mN +mE +mE ag ag ag @@ -33272,36 +33643,36 @@ ag ag bh bh -bI -bI -cC +bL +bL +cD cX -bH +bK bh -dU -bv -eR -fw -gl -hj -hY -iA -eR -bv -dU -bv -bv -bv -bv -bv -bv +dS +by +eP +ft +gi +hg +hT +ix +eP +by +dS +by +by +by +by +by +by bg bg -nc -no -nF -nY -mN +mS +ne +nq +nC +mE ag ag ag @@ -33327,7 +33698,7 @@ aa aa aa aa -bJ +bM aa aa aa @@ -33535,30 +33906,30 @@ bh bh bh bh -bv -bv -eS -fx -gm -hk -hZ -iB -eS -bv -dT -bv -ll -bv -bv -bv +by +by +eQ +fu +gj +hh +hU +iy +eQ +by +Ia +by +lf +by +by +by bg bg bg -mN -mN -nG -mN -mN +mE +mE +nr +mE +mE ag ag ag @@ -33795,11 +34166,11 @@ bh bg bg bg -fy -gn -hl -ia -iC +fv +gk +hi +hV +iz bg bg bg @@ -33812,9 +34183,9 @@ bg bg ag ag -mN -nH -mN +mE +ns +mE ag ag ag @@ -34069,9 +34440,9 @@ bg ag ag ag -mN -nI -mN +mE +nt +mE ag ag ag @@ -34327,8 +34698,8 @@ ag ag ag aa -nJ -nZ +nu +nD ag ag ag @@ -36892,17 +37263,17 @@ aa aa aa aa -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea aa aa aa @@ -37142,24 +37513,24 @@ aw aw aw aw -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea aa aa aa @@ -37399,24 +37770,24 @@ aw aw aw aw -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea aa aa aa @@ -37656,24 +38027,24 @@ aw aw aw aw -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea aa aa aa @@ -37905,32 +38276,32 @@ aa aa aa aw -ec -ec -ec -ec -ec +ea +ea +ea +ea +ea aw aw -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea aa aa aa @@ -38161,30 +38532,30 @@ aa aa aa aa -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea aw aw aw @@ -38418,32 +38789,32 @@ aa aa aa aa -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea aw aa aa @@ -38675,32 +39046,32 @@ aa aa aa aa -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea aw aa aa @@ -38932,32 +39303,32 @@ aa aa aa aa -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea aw aa aa @@ -39189,32 +39560,32 @@ aa aa aa aa -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea aw aa aa @@ -39446,32 +39817,32 @@ aa aa aa aa -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea aw aa aa @@ -39520,17 +39891,17 @@ aa aa aa aa -DW -DW -DW -DW -DW -DW -DW -DW -DW -DW -DW +Di +Di +Di +Di +Di +Di +Di +Di +Di +Di +Di aa aa aa @@ -39560,8 +39931,8 @@ aw aw aw aw -IU -IU +HV +HV aw aw aw @@ -39703,30 +40074,30 @@ aa aa aa aa -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea aw aw aw @@ -39777,18 +40148,18 @@ aa aa aa aa -DW -DW -DW -DW -DW -DW -DW -DW -DW -DW -DW -DW +Di +Di +Di +Di +Di +Di +Di +Di +Di +Di +Di +Di aa aa aa @@ -39807,19 +40178,19 @@ aa aa aa aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aw aw @@ -39961,39 +40332,39 @@ aa aa aa aw -ec -ec -ec -ec -ec +ea +ea +ea +ea +ea aw aw -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea aa aa aa aa aa aa -qF +qf aa aa aa @@ -40034,18 +40405,18 @@ aa aa aa aa -DW -DW -DW -DW -DW -DW -DW -DW -DW -DW -DW -DW +Di +Di +Di +Di +Di +Di +Di +Di +Di +Di +Di +Di aa aa aa @@ -40065,18 +40436,18 @@ aw aw aw aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aw aw @@ -40226,24 +40597,24 @@ aw aw aw aw -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea aa aa aa @@ -40291,18 +40662,18 @@ aa aa aa aa -DW -DW -DW -DW -DW -DW -DW -DW -DW -DW -DW -DW +Di +Di +Di +Di +Di +Di +Di +Di +Di +Di +Di +Di aa aa aa @@ -40322,18 +40693,18 @@ aw aw aw aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aw aw @@ -40483,24 +40854,24 @@ aw aw aw aw -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea aa aa aa @@ -40548,18 +40919,18 @@ aa aa aa aa -DW -DW -DW -DW -DW -DW -DW -DW -DW -DW -DW -DW +Di +Di +Di +Di +Di +Di +Di +Di +Di +Di +Di +Di aa aa aa @@ -40578,19 +40949,19 @@ aa aa aa aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aw aw @@ -40740,24 +41111,24 @@ aw aw aw aw -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea aa aa aa @@ -40805,19 +41176,19 @@ aa aa aa aa -DW -DW -DW -DW -DW -DW -DW -DW -DW -DW -DW -DW -bJ +Di +Di +Di +Di +Di +Di +Di +Di +Di +Di +Di +Di +bM aa aa aa @@ -40839,19 +41210,19 @@ aw aw aw aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aw aw @@ -40991,30 +41362,30 @@ aw aw aw aw -fz -go -hm +fw +gl +hj aw aw aw -jD -kd -kM +jH +kc +kJ aa aa aa aa -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea aa aa aa @@ -41062,17 +41433,17 @@ aa aa aa aa -DW -DW -DW -DW -DW -DW -DW -DW -DW -DW -DW +Di +Di +Di +Di +Di +Di +Di +Di +Di +Di +Di aa aa aa @@ -41096,19 +41467,19 @@ aw aw aw aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aw aw @@ -41248,15 +41619,15 @@ aa aw aa aa -fA -gp -fA +fx +gm +fx aw aw aw -jE -ke -kN +jI +kd +kK aa aa aa @@ -41321,13 +41692,13 @@ aa aa aa aa -EJ -Fi -FC -EJ -FC -Gw -EJ +DT +En +EF +DT +EF +Fx +DT aa aa aa @@ -41351,22 +41722,22 @@ aa aw aw aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aw aa @@ -41505,15 +41876,15 @@ aa aa aa aa -fA -gq -hn -ib -ib -ib -jF -kf -jE +fx +gn +hk +hW +hW +hW +jJ +ke +jI aa aa aa @@ -41526,7 +41897,7 @@ aa aa aa aa -bJ +bM aa aa aa @@ -41578,13 +41949,13 @@ aa aa aa aa -EK -Fj -FD -EK -FD -Gx -EK +DU +Eo +EG +DU +EG +Fy +DU aa aa aa @@ -41606,25 +41977,25 @@ aa aa aa aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aa aa @@ -41753,26 +42124,26 @@ aa aa aa aa -bJ +bM aa aa aa aa aa aa -ey -ey -fB -gr -ho -ic -ic -ic -jG -kg -kO -ey -ey +ew +ew +fy +go +hl +hX +hX +hX +jK +kf +kL +ew +ew aa aa aa @@ -41832,16 +42203,16 @@ aa aa aa aa -DS -DX -Eu -EL -Fi -FC -FY -FC -Gw -FY +Df +Dj +DG +DV +En +EF +EZ +EF +Fx +EZ aa ag ag @@ -41864,24 +42235,24 @@ aa aa aw aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aa aa @@ -42017,19 +42388,19 @@ aa aa aa aa -ez -eT -fC -gs -hp -fC -fC -fC -jH -kh -kP -lm -ez +ex +eR +IF +gp +hm +IF +IF +IF +IK +kg +fz +lg +ex aa aa aa @@ -42063,15 +42434,15 @@ ag ag ag ag -sR -sR -sR -sR -sR -sR -sR -sR -sR +sr +sr +sr +sr +sr +sr +sr +sr +sr aa ag ag @@ -42089,23 +42460,23 @@ ag ag aa aa -DS -DY -Ev -EM +Df +Dk +DH +DW +Ep +EH +Fa Fk -FE -FZ -Gj -Gy -DS -DS -DS -DS -DS -DS -DS -DS +Fz +Df +Df +Df +Df +Df +Df +Df +Df ag ag ag @@ -42121,24 +42492,24 @@ aa aa aw aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aa aa @@ -42274,19 +42645,19 @@ aa aa aa aa -eA -eU +ey +eS +fA +fC +hn fD -fF -hq -fG -iD -fG +iC +fD +IL +fC +fD +lh jI -fF -fG -ln -jE aa aa aa @@ -42320,15 +42691,15 @@ ag ag ag ag -sR -tq -tq -tq -tq -tq -tq -tq -sR +sr +sP +sP +sP +sP +sP +sP +sP +sr ag ag ag @@ -42346,23 +42717,23 @@ ag ag ag ag -DS -DZ -Eg -EN +Df +Dl +Ds +DX +Eq +Ds +Ds Fl -Eg -Eg -Gk -Gy -DS -Hb -Hb -Hb -Hb -Hb -Hb -DS +Fz +Df +Gc +Gc +Gc +Gc +Gc +Gc +Df ag ag ag @@ -42378,24 +42749,24 @@ aa aa aw aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aa aa @@ -42531,19 +42902,19 @@ aa aa aa aa -eA -eV -fE -fF -hr -id -iE -fE -jJ -fF -fE -lo -jE +ey +eT +fB +fC +ho +hZ +iD +fB +IM +fC +fB +li +jI aa aa aa @@ -42571,21 +42942,21 @@ ag ag ag ag -sR -sR -sR -sR +sr +sr +sr +sr ag ag -sR -tq -uL -uL -uL -uL -uL -tq -sR +sr +sP +uj +uj +uj +uj +uj +sP +sr ag ag ag @@ -42596,30 +42967,30 @@ ag ag ag ag -sR -sR -sR -sR +sr +sr +sr +sr ag -sR -sR -DS -Ea -Eg -EO -Eg -Eg -Eg -Gl -Gz -DS -Hb -Hb -Hb -Hb -Hb -Hb -DS +sr +sr +Df +Dm +Ds +DY +Ds +Ds +Ds +Fm +FA +Df +Gc +Gc +Gc +Gc +Gc +Gc +Df ag ag ag @@ -42635,24 +43006,24 @@ aa aa aw aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aa aa @@ -42788,19 +43159,19 @@ aa aa aa aa -eA -eW -fF -fF -fF -fF -iF -jo -jK -ki -fF -lp -jE +ey +eU +fC +fC +fC +fC +iE +jr +IN +kh +fC +lj +jI aa aa aa @@ -42828,22 +43199,22 @@ ag ag ag ag -sR -tp -tp -sR -sR -sR -sR -tq -uL -zl -zO -zl -uL -tr -sR -sR +sr +sO +sO +sr +sr +sr +sr +sP +uj +yF +zh +yF +uj +sQ +sr +sr ag ag ag @@ -42853,30 +43224,30 @@ ag ag ag ag -sR -Dx -Dz -sR +sr +CO +Il +sr ag -sR -tq -DT -Eb -Ew -EP +sr +sP +Dg +Dn +DI +DZ +Er +EI +Ds Fm -FF -Eg -Gl -GA -DS -Hb -Hb -Hb -Hb -Hb -Hb -DS +FB +Df +Gc +Gc +Gc +Gc +Gc +Gc +Df ag ag ag @@ -42892,24 +43263,24 @@ aa aa aw aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aa aa @@ -43045,19 +43416,19 @@ aa aa aa aa -eA -eX -fG -fF -fF -fG -iG -fG -fF -fF -fG -ln -jE +ey +eV +fD +fC +fC +fD +iF +fD +fC +fC +fD +lh +jI aa aa aa @@ -43085,22 +43456,22 @@ ag ag ag ag -sR -tq -ud -uK -vx -vx -xl -tq -uL -zm -zP -zP -uL -tq -tq -sR +sr +sP +tB +ui +uT +uT +wG +sP +uj +yG +zi +zi +uj +sP +sP +sr ag ag ag @@ -43108,32 +43479,32 @@ ag ag ag ag -sR -sR -sR -tq -tq -sR -sR -sR -tq -DS -Ec -Ex -Ex -Ex -FG -Eg -Gl -Gy -DS -Hb -Hb -Hb -Hb -Hb -Hb -DS +sr +sr +sr +sP +sP +sr +sr +sr +sP +Df +Do +DJ +DJ +DJ +EJ +Ds +Fm +Fz +Df +Gc +Gc +Gc +Gc +Gc +Gc +Df ag ag ag @@ -43148,25 +43519,25 @@ aa aa aa aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aa aa @@ -43302,19 +43673,19 @@ aa aa aa aa -eB -eV -fH -gt -gt -id -iH +Jn +eT fE -fF -fF -fE -lo -jE +gq +gq +hZ +iG +fB +fC +fC +fB +li +jI aa aa aa @@ -43342,22 +43713,22 @@ ag ag ag ag -sR -tr -ue -uL -uL -uL -uL -uL -uL -zn -zP -Al -uL -uL -tq -sR +sr +sQ +tC +uj +uj +uj +uj +uj +uj +yH +zi +zE +uj +uj +sP +sr ag ag ag @@ -43365,32 +43736,32 @@ ag ag ag ag -sR -tq -tq -tq -tr -tq -tq -tq -tq -DS -Ed -Eg -EQ -Eg -FH -Eg -Gk -Gy -DS -Hb -Hb -Hb -Hb -Hb -Hb -DS +sr +sP +sP +sP +sQ +sP +sP +sP +sP +Df +Dp +Ds +Ea +Ds +EK +Ds +Fl +Fz +Df +Gc +Gc +Gc +Gc +Gc +Gc +Df ag ag ag @@ -43407,22 +43778,22 @@ aa aw aw aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aw aa @@ -43559,62 +43930,62 @@ aa aa aa aa -ey -eY -fI -fI -hs -fI -iI -jp +ew +eW +fF +fF +Jp +fF +iH +js jL -kj -kQ -lq -lL +ki +kM +lk +lE aa aa aa aa aa -gv -nq -nK -oa -gv -mn -mD -mD -mD -mD -mD -mR -qq -qq -qq -qq -qq -qq -qq -qq -qq -qq -qq -qq -ue -uL -vy -wp -xm -yj -yO -zo -wq -wq -AJ -Ba -tq -sR +gs +IS +IX +Jf +gs +mg +mw +mw +mw +mw +mw +mI +pP +pP +pP +pP +pP +pP +pP +pP +pP +pP +pP +pP +tC +uj +uU +vJ +wH +xD +yi +yI +vK +vK +vK +Ar +sP +sr ag ag ag @@ -43622,32 +43993,32 @@ ag ag ag ag -sR -tq -sR -sR -sR -sR -sR -sR -sR -DS -Ee -Eg -ER -Eg -FH -Eg -Eg -GB -DS -Hb -Hb -Hb -Hb -Hb -Hb -DS +sr +sP +sr +sr +sr +sr +sr +sr +sr +Df +Dq +Ds +Eb +Ds +EK +Ds +Ds +FC +Df +Gc +Gc +Gc +Gc +Gc +Gc +Df ag ag ag @@ -43666,19 +44037,19 @@ aw aw aw aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aw aw @@ -43816,62 +44187,62 @@ aa aa aa aa -ey -eZ -fJ -gu -ey -ie -iJ -jq -ey -ey -ey -ey -ey -gv -mn -mD -mD -mR -gv -nr -nr -nr -gv -ov -oK -pb -pt -pE -pS -qc -qq -qw -qG -qN -qX -rm -rC -rK -rY -rZ -sS -qq -ue -uL -vz -wq -wq -wq -wq -zp -wq -wq -AK -uL -tq -sR +ew +eX +fG +gr +ew +ia +iI +jt +ew +ew +ew +ew +ew +gs +mg +mw +mw +mI +gs +IT +IT +IT +gs +nU +oj +oA +oS +pd +pr +pB +pP +pW +qg +qn +qx +qM +rc +rk +Jx +rz +ss +pP +tC +uj +uV +vK +vK +vK +vK +yJ +vK +vK +Ac +uj +sP +sr ag ag ag @@ -43879,32 +44250,32 @@ ag ag ag ag -sR -tq -sR +sr +sP +sr ag ag ag ag ag ag -DS -Ed -Ey -EQ -Eg -FH -Eg -Eg -EN -DS -DS -DS -DS -DS -DS -DS -DS +Df +Dp +DK +Ea +Ds +EK +Ds +Ds +DX +Df +Df +Df +Df +Df +Df +Df +Df ag ag ag @@ -43923,19 +44294,19 @@ aw aw aw aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aw aw @@ -44065,103 +44436,103 @@ az aw aa aa -bp -bK -cj -cj -cj -cj -dM -bp -bp +bq +Is +cl +cl +cl +cl +dL +bq +bq aa aa aa -gv -if -iK -jr +gs +ib +iJ +ju jM -kk -kR -lr -lM -lW -mo -jr -jr -mS -gv -ns -nL -ob -gv -ow -oK -pc -pu -pF -pG -qd -qq -qx -qH -qO -qO -qO -qO -qO -qO -su -sT -ts -ue -uL -vA -wq -xn -yk -yP -zq -zQ -Am -AL -uL -tq -sR -sR +kj +kN +ll +lF +lP +mh +ju +ju +mJ +gs +IU +IZ +Jh +gs +nV +oj +oB +oT +pe +pf +pC +pP +pX +qh +qo +qo +qo +qo +qo +qo +rU +st sR +tC +uj +uW +vK +wI +xE +yj +yK +zj +zF +Iu +uj +sP +sr +sr +sr ag ag ag ag ag -sR -tq -sR +sr +sP +sr ag ag ag ag ag ag -DS -Ef -Eg -EQ -Fn -FI -Ez -Ez +Df +Dr +Ds +Ea +Es +EL +DL +DL +FD +FP +DL +Gq GC -GO -Ez -Hp -HB -HB -HQ -Ic -DS +GC +GR +Hd +Df ag ag ag @@ -44176,19 +44547,19 @@ aa aw aw aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aw aw @@ -44322,103 +44693,103 @@ az aw aa aa -bp -bL -ck -cD +bq +bO +IC +cE cY -dr -cD -ed -eC +cm +cE +eb +eA aa aa -gv -gv -ig -iL -js +gs +gs +ic +iK +jv jN -kl -kS -kS -kS -lX -mp -kS -mJ -mT -gv -gv -nM -oc -gv -ox -oK -pd -oK -oK -pT -qe -qq -qy -qH -qO -qO -rn -qO -qO -qO -sv -sU -qq -ue -uL -vB -wq -xo -xo -yQ -zp -zR -An -AM -uL -tq -tq -Cc -sR +kk +kO +kO +kO +lQ +mi +kO +mC +mK +gs +gs +Ja +Ji +gs +nW +oj +oC +oj +oj +ps +pD +pP +pY +qh +qo +qo +qN +qo +qo +qo +rV +su +pP +tC +uj +uX +vK +wJ +wJ +yk +yJ +zk +zG +Ae +uj +sP +sP +Bs +sr ag ag ag ag ag -sR -tq -sR +sr +sP +sr ag ag ag ag ag ag -DS -Eg -Eg -Eg -Fo -FJ -Ga -Ga -GD -Ga -Hc -Ga -Ga -Ga -FF -Id -DS +Df +Ds +Ds +Ds +Et +EM +Fb +Fb +FE +Fb +Gd +Fb +Fb +Fb +EI +He +Df ag ag ag @@ -44434,18 +44805,18 @@ aw aw aw aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aw aw @@ -44579,103 +44950,103 @@ az aW bd bi -bq -bM -cl -cE -cm +br +IB +ID +cF +co cn -cE -ee -eD +cF +ec +eB aa aa -gw -ht -ih -iM -jt +gt +hq +id +iL +jw jO -kk -kT -kZ -lN -lW -mq -jx -mK -mU -nd -nt -nN -od -gv -oy -oL -pe +kj +kP +kV +lG +lP +mj +jA +IO +mL +Jt +IV +Jb +Jj +gs +nX +ok +oD +oS +pf pt -pG -pU -qf -qq -qz -qH -qO -qO -qO -rD -rL -rL -sw -sV -qq -ue -uL -vC -wq -xp -xp -xo -zp -zS -wq -AN -uL -tq -tq -Cd -sR -sR -sR -sR -sR -sR -sR -tq -sR +Jv +pP +pZ +qh +qo +qo +qo +rd +rl +rl +rW +sv +pP +tC +uj +uY +vK +wK +wK +wJ +yJ +zl +vK +Ad +uj +sP +sP +Bt +sr +sr +sr +sr +sr +sr +sr +sP +sr ag ag ag ag ag ag -DS -Eh -Ez -Ez -Fp -FK -EC -Gm -Eg -GP -Hd -Eg -Eg -HK -HR -Ie -DS +Df +Dt +DL +DL +Eu +EN +DO +Fn +Ds +MG +Ge +Ds +Ds +GL +GS +Hf +Df ag ag ag @@ -44691,18 +45062,18 @@ aa aa aw aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aw aw @@ -44836,107 +45207,107 @@ az aX be bj -br -bN -cm -cm -cm -cm -cm -ee -eE +bs +bQ +co +co +co +co +co +ec +eC aa aa -gx -hu -ii -iN -ju +gu +hr +ie +iM +jx jP jR -kU -ls -lO +kQ +lm +lH jR jT -mE +mx +IO +jz mK -jw -mT -nu -nO -oe -gv -oz -oM -pf -pv -pH -pF -qc -qq -qA -qI -qP -qY -ro -rE -rM -rZ -sx -sW -qq -ue -uL -vD -wq -wq -wq -yR -zp -zS -wq -AO -uL -Bt -BJ -tq -tq -tq -tq -tq -tq -tr -tq -tq -sR +IW +Jc +Jk +gs +nY +ol +oE +oU +pg +pe +pB +pP +qa +qi +qp +qy +qO +re +rm +rz +rX +sw +pP +tC +uj +uZ +vK +vK +vK +yl +yJ +zl +vK +JB +uj +AK +Ij +sP +sP +sP +sP +sP +sP +sQ +sP +sP +sr ag ag aa aa ag ag -DS -Ei -EA -ES -Fq -FL -Gb -Ei -GE -DS -Ei -GE -DS -HL -HS -If -DS -DS -DS -DS -DS +Df +Du +DM +Ec +Ev +EO +Fc +Du +FF +Df +Du +FF +Df +GM +GT +Hg +Df +Df +Df +Df +Df ag aa aa @@ -44947,19 +45318,19 @@ aa aa aa aw -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU -IU +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV aw aw aw @@ -45093,107 +45464,107 @@ az aY bd bk -bs -bO -cm -cm -cm -ds -cm -ef -bp -fa -fK -gv -hv -ij -iO -jv +bt +bR +co +co +co +dr +co +ed +bq +bN +fH +gs +hs +if +iN +jy jQ -km -kV -lt -lP -lY -mr -mF -iM -jx -ne -gv -nP -of -gv -oA -oA -pg -gv -nR -mD -oi +kl +kR +ln +lI +lR +mk +my +iL +jA +mU +gs +Jd +Jl +gs +nZ +nZ +oF +gs +nv +mw +nE +pP +qb +qj qq -qB -qJ -qQ -qZ -qZ -qZ -qZ -sa -sy -sX -gv -uf -gv -vE -wr -wr -yl -uL -zr -zT -Ao -uL -uL -AP -AP -AP -AP -AP -AP -AP -AP -AP -sR -tq -sR +qz +qz +qz +qz +rA +rY +sx +gs +tD +gs +va +vL +vL +xF +uj +yL +zm +zH +uj +uj +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +sr +sP +sr ag ag aa aa aa ag -DS -Ej -EB -ET -Fr -FM -ET -Gn -GF -GQ -He -Hq -HC -HM -HT -Ig -Ii -In -Is -Iz -DS +Df +Dv +DN +Ed +Ew +EP +Ed +Fo +FG +FR +Gf +Gr +GD +GN +GU +Hh +Hj +Ho +Ht +HA +Df ag ag aa @@ -45214,8 +45585,8 @@ aw aw aw aw -IU -IU +HV +HV aw aw aw @@ -45350,107 +45721,107 @@ az aw aa bl -bt -bP +bu +bS cn -cE -cm -dt -dN -eg -eF -eF -fL -gy -hu -ik -iP -ju +cF +co +ds +dM +ee +eD +eD +fI +gv +hr +ig +iO +jx jR -kn -kW -lu -kW -lZ +km +kS +lo +kS +lS jQ -mE -mL -jx -mT -nv -jx -og -ol -oB -oN +mx +IQ +jA +mK +ng +jA +pS +nK +oa +om +oG +oV ph -pw -pI -pV -pI -qr -pI -qK -pI -pI -pI -pI -rN -pI -sz -pI -tt -ug -uM -pI -pI -xq -pI -pI -zs -zU -Ap -AP -Bb +pu +ph +Jw +ph +qk +ph +ph +ph +ph +rn +ph +rZ +ph +sS +tE +Ih +ph +ph +wL +ph +ph +yM +zn +zI +Ag +As +AL +Ba Bu +BI BK -Ce -Cs -Cu -Ce -Bd Bu -Bd -sR -tq -sR +Au +AL +Au +sr +sP +sr ag aa aa aa aa aa -DS -Ek -Eg -Eg -Fs -FN -Gc -Go -GG -GR -Hf -Hr -HD -HN -HU -Eg -Ij -Io -It -IA -DS +Df +Dw +Ds +Ds +Ex +EQ +Fd +Fp +FH +FS +Gg +Gs +GE +GO +GV +Ds +Hk +Hp +Hu +HB +Df ag ag aa @@ -45607,107 +45978,107 @@ az aw aa bl -bt -bO -co -cF +bu +bR +cp +cG cZ -du -dO -eh -eG -eG -fM -gz -hw -il -iQ -ju +dt +dN +ef +eE +eE +fJ +gw +ht +ih +iP +jx jS -ko -kX -lv -lQ -ma -ms -mG -mM +kn +kT +lp +lJ +lT +ml +mz +mD +IR mV -nf -nw -nQ -oh -kS -oC -oO -pi -kS -js -pW -kS -qs -kS -qL -kS -ra -kS -kS -kS -sb -sA -sY -tu -uh -uN -kS -kS -xr -kS -kS -kS -zV -oO -AQ -Bc -Bc -BL -Cf -Ct +nh +Je +Jm +kO +ob +on +oH +kO +jv +pv +kO +pR +kO +ql +kO +qA +kO +kO +kO +rB +sa +sy +sT +tF +Ii +kO +kO +wM +kO +kO +kO +zo +on +Ah +At +At +Bb +Bv +BJ +BU +Cb +Cn +Cn +Cn CE -CL -CX -CX -CX -Do -tq -sR +sP +sr ag aa aa aa aa aa -DS -El -EC -EC -Ft -FO -Gd -Gp -GH -GS -Hg -Hs -HE -HO -Hd -Eg -Ik -Ip -Gj -IB -DS +Df +JY +DO +DO +Ey +ER +Fe +Fq +FI +FT +Gh +Gt +GF +GP +Ge +Ds +MI +Hq +Fk +HC +Df ag ag aa @@ -45864,107 +46235,107 @@ az aw aa bl -bt -bO +bu +bR cn -cE +cF da cn -dP -ei -eH -eH -el -gy -hu -im -iR -ju +dO +eg +eF +eF +ej +gv +hr +ii +iQ +jx jR -kp -kW -lw -lR -mb +ko +kS +lq +lK +lU jT -mE -jx -mW -mT -nv -jx -jx -om -jx -oP -iM -jx -jt -oA -jx -og -jx -jx -qR -rb -rp -jx -jx -mW -jx -sZ -jx -jx -oA -om -jx -xs -jx -jx -jx -iM -Aq -AP -Bd -Bv -BM -Cg -Cu -CF -CM -BM -Dc -Dg -sR -tq -sR +mx +jA +mM +mK +ng +jA +jA +nL +jA +oo +iL +jA +jw +nZ +jA +pS +jA +jA +qr +qB +qP +jA +jA +mM +jA +sz +jA +jA +nZ +nL +jA +wN +jA +jA +jA +iL +zJ +Ag +Au +AM +Bc +Bw +BK +BV +Cc +Bc +Cs +Cw +sr +sP +sr aa aa aa aa aa aa -DS -Em -ED -EU -Fu -FP -DS -DS -DS -Gh -Hh -Ht -Gh -Gh -HV -Eg -Eg -Ey -Iu -IC -DS +Df +Dy +DP +Ee +Ez +ES +Df +Df +Df +Fi +Gi +Gu +Fi +Fi +GW +Ds +Ds +DK +Hv +HD +Df ag ag aa @@ -46121,114 +46492,114 @@ az aZ bd bm -bq -bQ -cp -cG +br +bT +cq +IE db -cm -cm -ej -bp -fa -fK -gv -hx -in -iS -jv +co +co +Jo +bq +bN +fH +gs +hu +ij +iR +jy jT -kq -kY -lx -lS -mc -mr -mF -jx +kp +kU +lr +lL +lV +mk +my +jA +mM mW -ng -gv -nR -oi -on -oD -oQ -pj -px -pJ -on -qg -qt -jx -jx -qS -rc -rq -jx -jx -jt -sB -ta -tv -ui -uO -ta -ws -xt -wv -yS -jx -iM -Ar -AP -AP -AP -AP -AP -AP -AP -AP -AP -AP -AP -sR -tq -sR +gs +nv +nE +nM +oc +op +oI +oW +pi +nM +pF +pT +jA +jA +qs +qC +qQ +jA +jA +jw +sb +sA +sU +tG +uk +sA +vM +wO +vP +ym +jA +iL +zK +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +sr +sP +sr aa aa aa aa aa aa -CQ -En -EE -EV -Fv -FQ -Ge -Gq -GI -GT -Hi -Hu -HF -Gh -HW -Eg -Eg -Eg -Iv -Fo -DS +Cg +Dz +DQ +Ef +EA +ET +Ff +Fr +FJ +FU +Gj +Gv +GG +Fi +GX +Ds +Ds +Ds +Hw +Et +Df ag ag -sR -sR -sR -sR -sR +sr +sr +sr +sr +sr aa aa aa @@ -46378,114 +46749,114 @@ az ba bf bn -bu -bR -cm -cm +bx +bU +co +co da -cm -cm -ek -eC +co +co +ei +eA aa aa -gw -hu -io -iT -ju +gt +hr +ik +iS +jx jU jR -kU -ls -lT +kQ +lm +lM jR jQ -mE -jx -mW -mT -gw +mx +jA +mM +mK +gt aa aa +nN +od +oq +oJ +od +od +nM +pG +jA +qc +jA +qt +qD +qR +jA +qc +jA +sc +sA +sV +tH +ul +vb +vN +wP +xG +yn +jA +iL oo -oE -oR -pk -oE -oE -on -qh -jx -qC -jx -qT -rd -rr -jx -qC -jx -sC -ta -tw -uj -uP -vF -wt -xu -ym -yT -jx -iM -oP -AR -Be -Bw -BN -Ch -Cv -AR -CN -CN -AR -Dh -sR -tq -sR +Ai +Av +AN +Bd +Bx +BL +Ai +Cd +Cd +Ai +Cx +sr +sP +sr aa aa -CQ -CQ -CQ -CQ -CQ -Eo -Cl -EW -Fw -FR -Gf -Gr -GJ -GU -Hj -Hv -HG -Gh -HX -Ih -Il -Iq -Iw -ID -DS -sR -sR -sR -IM -IP -IR -sR +Cg +Cg +Cg +Cg +Cg +DA +BB +Eg +EB +EU +Fg +Fs +FK +FV +Gk +Gw +GH +Fi +GY +Hi +Hm +Hr +Hx +HE +Df +sr +sr +sr +HN +HQ +HS +sr aa aa aa @@ -46635,114 +47006,114 @@ az bb bd bo -bs -bS +bt +bP cn -cE +cF da cn -dQ -ek -eD +dP +ei +eB aa aa -gx -hy -ip -iU -jw +gu +Jq +il +iT +jz jV -kr -kZ -kZ -lN -md -mt -jx -jx +kq +kV +kV +lG +lW +mm +jA +jA +mN mX -nh -gx +gu aa aa -op -oE -oS -pl -py -pK -pX -qi -qi -qi -qi -qi -qi -qi -qi -qi -qi -qi -tb -tx -uk -uQ -vG +nO +od +or +oK +oX +pj +pw +pH +pH +pH +pH +pH +pH +pH +pH +pH +pH +pH +sB +sW +tI um -xv -tB -yU -jx -zW -oO -AS -Bf -Bx -BO -Ci -BO -CG -CO +vc +tK +wQ +ta +yo +jA +zp +on +Aj +Aw +AO +Be +By +Be +BW +Ce +Co +Ai +Cx +sr +sQ +sr +aa +aa +Cg +CT CY -AR -Dh -sR -tr -sR -aa -aa -CQ -DE -DI -DM -CQ -Ep -Cl -EX -Cl -Cl -Gf -Gs +Dc +Cg +DB +BB +Eh +BB +BB +Fg +Ft +FL +FW +Gl +Gw +GI +Fi +GZ +Df +Hn +Hs +Df +HF +Df +Ha +HJ GK -GV -Hk -Hv -HH -Gh -HY -DS -Im -Ir -DS -IE -DS -HZ -II -HJ -IN -HJ -IS -sR +HO +GK +HT +sr aa aa aa @@ -46892,114 +47263,114 @@ az aw aa aa -bp -bT -cq +bq +bV +cr cH dc -cq -dR -el -eE +cr +dQ +ej +eC aa aa -gv -gv -hu -iM -jx +gs +gs +hr +iL +jA jW -kr -jx -jx -jx -md -mu -jx -jx -mY -gv -gv +kq +jA +jA +jA +lW +mn +jA +jA +mO +gs +gs aa aa -op -oF -oT -pm -oF -pL -pX -qj -qj -qj -qj -qj -qi -rs -rs -rs -rs -rs -tb -ty -ul -ul -ul -ul -xw -uQ -yV -jx -iM -As -AR -Bg -AR -BP -AR -Cw -AR -CP -CZ -AR -Dh -sR -tq -sR +nO +oe +os +oL +oe +Ju +pw +pI +pI +pI +pI +pI +pH +qS +qS +qS +qS +qS +sB +sX +tJ +tJ +tJ +tJ +wR +um +yp +jA +iL +zL +Ai +Ax +Ai +Bf +Ai +BM +Ai +Cf +Cp +Ai +Cx +sr +sP +sr ag aa -CQ -DF -DJ -DN -DU -Eq -Eq -EY -Cl -FS -Gg -Gt -GL -GW -Hl -Hw +Cg +CU +CZ +Dd +Dh +DC +DC +Ei +BB +Iq +Fh +Fu +FM +MH +Gm +Gx +GJ +Fi +Ha +GK +GK +GK +Hy +HG +GK HI -Gh -HZ -HJ -HJ -HJ -Ix -IF -HJ -IH -IJ -IL -IO -IQ -IT -sR +HK +HM +HP +HR +HU +sr aa aa aa @@ -47149,114 +47520,114 @@ aw aw aa aa -bp -bK -cj -cj -cj -cj -dM -bp -bp +bq +Is +cl +cl +cl +cl +dL +bq +bq aa aa aa -gv -iq -iV -jy +gs +im +iU +jB jX -kr -la -ly -lU -md -mv -jy -jy -mZ -gv +kq +kW +ls +lN +lW +mo +jB +jB +mP +gs ag aa aa -op -oE -oU -pn -pz -pM -pX -qj -qj -qj -qj -qj -qi -rs -rs -rs -rs -rs -tb -tz -tB -uR -uR -tB -xx -yn +nO +od +ot +oM +oY +pl +pw +pI +pI +pI +pI +pI +pH +qS +qS +qS +qS +qS +sB +sY ta -zt -zX -At -AR -Bh -AR -Bh -AR -Cx -AR -AR -AR -AR +un +un +ta +wS +xH +sA +yN +zq +zM +Ai +Ay +Ai +Ay +Ai +BN +Ai +Ai +Ai +Ai aa -sR -tr -sR +sr +sQ +sr aa aa -CQ -DG -DK -DO -CQ -Er -EF -EZ -Dv -FT -Gh -Gh -Gh -Gh -Gh -Gh -Gh -Gh -Ia -tq -tq -tq -Iy -IG -IG -IG -IK -sR -sR -sR -sR -sR +Cg +CV +Da +De +Cg +DD +DR +Ej +CF +LS +Fi +Fi +Fi +Fi +Fi +Fi +Fi +Fi +Hb +sP +sP +sP +Hz +HH +HH +HH +HL +sr +sr +sr +sr +sr aa aa aa @@ -47414,101 +47785,101 @@ aa aa aa aa -eI -fb -fN -gA -eI -ir -iW -ir -eI -eI -eI -eI -eI -gv -mn -mD -mD -mR -gv +eG +eY +fK +gx +eG +in +iV +in +eG +eG +eG +eG +eG +gs +mg +mw +mw +mI +gs ag aa aa -oq -oG -oV -po -oG -oG -pX -qj -qj -qj -qj -qj -qi -rs -rs -rs -rs -rs -tb -tA -ul -ul -ul -ul -wu -uQ -yW -jx -iM -Au +nP +of +ou +oN +of +of +pw +pI +pI +pI +pI +pI +pH +qS +qS +qS +qS +qS +sB +sZ +tJ +tJ +tJ +tJ +vO +um +yq +jA +iL +zN +Ai +Ai +Ai +Ai +Ai +Ai +Ai +Cg +Cg +Cg +Cg +Cg +CJ +Cg +CP +Im +Cg +Cg +Cg +Cg +Cg +DE AR -AR -AR -AR -AR -AR -AR -CQ -CQ -CQ -CQ -CQ -Du -CQ -Dy -DA -CQ -CQ -CQ -CQ -CQ -Es -BA -Fa -Fx -FU -Gh -Gu -GM -GX -Hm -Hx -HJ -HP -Ib -sR -sR -sR -sR -sR -sR -sR -sR +Ek +EC +EW +Fi +Fv +FN +FY +Gn +Gy +GK +GQ +Hc +sr +sr +sr +sr +sr +sr +sr +sr aa aa aa @@ -47671,19 +48042,19 @@ aa aa aa aa -eJ -fc -fO -fO -hz -fO -iX -jz -jY -ks -lb -lz -eJ +eH +eZ +fL +fL +hw +fL +iW +jC +Jr +kr +Js +lt +eH aa aa aa @@ -47693,72 +48064,72 @@ ag ag ag aa -on -oH -oW -pp -oX -oX -pX -qj -qj -qj -qj -qj -qi -rs -rs -rs -rs -rs -tb -tB +nM +og +ov +oO +ow +ow +pw +pI +pI +pI +pI +pI +pH +qS +qS +qS +qS +qS +sB +ta +tK +tK um -um -uQ -um -wu -um -yU -jx -iM -Av -pV -Bi -By -BQ -Cj +tK +vO +tK +yo +jA +iL +zO +pu +Az +AP +Bg +Bz +BO +JD +Ch +Cq +Ct Cy -CH -CR -Da -Dd -Di -Dp -Dv -Dv -Dv -Dv -DC -DH -DL -DP -Dp -Dv -Dv -Fb -Fy -Fy -Gi -Gv -GN -GY -GN -Hy -GN -sR -sR -sR +Ik +CF +CF +CF +CF +In +CW +Iv +JE +Ik +CF +CF +El +ED +ED +Fj +Fw +FO +FZ +FO +Gz +FO +sr +sr +sr ag ag ag @@ -47928,19 +48299,19 @@ aa aa aa aa -eK -fd -fP -fR -fR -fP -iY -fP -fR -fR -fP -lA -eK +eI +fa +fM +fO +fO +fM +iX +fM +fO +fO +fM +lu +eI aa aa aa @@ -47950,69 +48321,69 @@ aa ag ag ag -on -oI -oX -pp -oX -pN -pX -qj -qj -qj -qj -qj -qi -rs -rs -rs -rs -rs -tb -tC -un -uS -vH -wu -wu -uQ -yT -jx -zY +nM +oh +ow oO -pW -Bj -Bz -BR -Ck -Ck -Ck -CS -Ck -De -Ck -Ck -Ck -Ck -Ck -Ck -DD -CS -Ck -Ck -Ck -Ck -CS -Fc -Cl -FV -CQ -sR -GN -GZ -Hn -Hz -GN +ow +pm +pw +pI +pI +pI +pI +pI +pH +qS +qS +qS +qS +qS +sB +tb +tL +uo +vd +vO +vO +um +yn +jA +zr +on +pv +AA +AQ +Bh +BA +BA +BA +Ci +BA +Cu +BA +BA +BA +BA +BA +BA +Io +Ci +BA +BA +BA +BA +Ci +Em +BB +EX +Cg +sr +FO +Ga +Go +GA +FO ag ag ag @@ -48185,19 +48556,19 @@ aa aa aa aa -eK -fe -fQ -fR -fR -fQ -iZ -fQ -fR -fR -fQ -lB -eK +eI +fb +fN +fO +fO +fN +iY +fN +fO +fO +fN +lv +eI aa aa aa @@ -48207,69 +48578,69 @@ aa ag ag ag -on -oJ -oY -pq -pA -pO -pX -qi -qi -qi -qi -qi -qi -qi -qi -qi -qi -qi -tb -tD -uo -uT -ta -wv -ui -ui -yX -jx -iM +nM +oi +ox oP -oA -Bk -BA -BS -Cl -Cl -Cl -CT -Cl -Cl -Cl -Dq -Cl -Cl -Cl -Cl -BA -CT -Cl -Cl -DV -Cl -CT -Fd -Fz -FW -CQ +oZ +pn +pw +pH +pH +pH +pH +pH +pH +pH +pH +pH +pH +pH +sB +tc +tM +up +sA +vP +tG +tG +yr +jA +iL +oo +nZ +AB +AR +Bi +BB +BB +BB +Cj +BB +BB +BB +CG +BB +BB +BB +BB +AR +Cj +BB +BB +JK +BB +Cj +KS +Ls +LT +Cg ag -GN -Ha -Ho -HA -GN +FO +Gb +Gp +GB +FO ag ag ag @@ -48442,19 +48813,19 @@ aa aa aa aa -eK -ff -fR -gB -hA -is -ja -is -is -is -is -lC -eK +eI +fc +fO +gy +IG +hx +iZ +hx +hx +hx +hx +lw +eI aa aa aa @@ -48464,69 +48835,69 @@ aa ag ag ag -on -on -on -on -on -on -on +nM +nM +nM +nM +nM +nM +nM ag ag ag aa -qU -re -rt -rF -rO -sc -jx -tc -jx -mW -jx -jx -jx -oB -jx -jx -jx -iU -Aw -AT -Bl -BB -BT -Cm -Bl -CI -CU -Db -Db -Dj -CQ -Du -CQ -Dy -DB -DB -DB -DB -DQ -CQ -Et -EG -Fe -FA -FX -CQ +qu +qE +qT +rf +ro +rC +jA +If +jA +mM +jA +jA +jA +oa +jA +jA +jA +iT +zP +Ak +AC +AS +Bj +BC +AC +BY +Ck +Cr +Cr +Cz +Cg +CJ +Cg +CP +CS +CS +CS +CS +Ip +Cg +DF +Kt +KT +Lt +EY +Cg ag -GN -GN -GN -GN -GN +FO +FO +FO +FO +FO ag ag ag @@ -48699,19 +49070,19 @@ aa aa aa aa -eK -fd -fP -fR -hB -fP -jb -fP -fR -kt -fP -lA -eK +eI +fa +fM +fO +IH +fM +ja +fM +fO +Iw +fM +lu +eI aa aa aa @@ -48733,38 +49104,38 @@ ag aa aa aa -gv -gv -gv -rP +gs +gs +gs +rp +rD sd -sD -sD -tE -up -uU -vI -ww -xy -ww -ww -ww -zZ -Ax -AU -Bm -BC -BU -Bp -Bp -AU -CV -CV -CV -CV -sR -tq -sR +sd +td +tN +uq +ve +vQ +wT +vQ +vQ +vQ +zs +zQ +Al +AD +AT +Bk +AG +AG +Al +Cl +Cl +Cl +Cl +sr +sP +sr aa aa aa @@ -48773,9 +49144,9 @@ aa aa aa aa -EH -Ff -EH +Ku +KU +Lu aa ag ag @@ -48949,26 +49320,26 @@ aa aa aa aa -bJ +bM aa aa aa aa aa aa -eK -fg -fS -fR -hC -fQ -jc -fQ -fR -ku -lc -lD -eK +eI +fd +fP +fO +II +fN +jb +fN +fO +Ix +Iy +IA +eI aa aa aa @@ -48984,44 +49355,44 @@ ag ag ag ag -pY -qk +px +pJ aa aa aa aa ag ag -gv -rQ +gs +rq +rE se -sE -td -tF -jx -uV -iM -oN -xz -pI -pI -pI -Aa -Ay -AV -Bn -Bp -BV -Cn -Cz -AV -CW -CW -CW -Dk -sR -tq -sR +sC +Jy +jA +ur +iL +om +wU +ph +ph +ph +zt +zR +Am +AE +AG +Bl +BD +BP +Am +Cm +Cm +Cm +CA +sr +sP +sr ag aa aa @@ -49030,9 +49401,9 @@ aa aa aa aa -EH -Fg -EH +Kv +KV +Lv aa aa aa @@ -49213,19 +49584,19 @@ aa aa aa aa -eL -fh -fT -gC -hD -fT -fT -fT -jZ -kv -ld -lE -eL +eJ +fe +fQ +gz +IJ +fQ +fQ +fQ +hy +ks +Iz +lx +eJ aa aa aa @@ -49249,36 +49620,36 @@ aa ag ag ag -gv -gv -gv -gv -gv -gv -gv -oA -vJ -wx -gv -yo -yY -zu -gv -Az -AW -Bo -BD -BW -Bn -CA -AW -sR -sR -sR -sR -sR -tq -sR +gs +gs +gs +gs +gs +gs +gs +nZ +vf +vR +gs +xI +ys +yO +gs +zS +An +AF +AU +Bm +AE +BQ +An +sr +sr +sr +sr +sr +sP +sr ag aa aa @@ -49287,9 +49658,9 @@ aa aa aa aa -EI -Fh -EI +Kw +KW +Lw aa aa aa @@ -49470,19 +49841,19 @@ aa aa aa aa -eI -eI -fU -gD -hE -it -it -it -ka -kw -le -eI -eI +eG +eG +fR +gA +hz +ip +ip +ip +jZ +kt +kY +eG +eG aa aa aa @@ -49507,35 +49878,35 @@ ag ag ag ag -rR -sf -sf -sf -sf -rR -uW -vK -wy -xA -xE -xE -zv -rR -AA -AX -Bp -Bp -Bp -Bp -Bp -AX -tr -tq -tq -tq -tq -tq -sR +rr +rF +rF +rF +rF +rr +us +vg +vS +wV +wZ +wZ +yP +rr +zT +Ao +AG +AG +AG +AG +AG +Ao +sQ +sP +sP +sP +sP +sP +sr ag ag aa @@ -49544,9 +49915,9 @@ aa aa aa aa -DR -DR -DR +Kx +KX +Lx aa aa aa @@ -49729,15 +50100,15 @@ aa aa aa aa -fV -gE -hF -iu -iu -iu -kb -kx -fV +fS +gB +hA +iq +iq +iq +ka +ku +fS aa aa aa @@ -49764,35 +50135,35 @@ ag ag ag ag -rR -sg -sg -sg -tG -rR -uX -vK -wy -xB -yp -xE -zw -rR -AA -AU -Bq -Bq -BX -Co -CB -AU -tq -sR -sR -sR -sR -sR -sR +rr +rG +rG +rG +te +rr +ut +vg +vS +wW +xJ +wZ +yQ +rr +zT +Al +AH +AH +Bn +BE +BR +Al +sP +sr +sr +sr +sr +sr +sr ag ag aa @@ -49800,11 +50171,11 @@ aa aa aa aa -DR -DR -DR -DR -DR +JZ +Ky +KY +Ly +LU aa aa aa @@ -49986,15 +50357,15 @@ aa aa aa aa -fV -gF -fV +fS +gC +fS aa aa aa -fV -ky -fV +fS +kv +fS aa aa aa @@ -50021,30 +50392,30 @@ aa ag ag ag -rR -sh -sF -te -tH -uq -uY -vL -wz -xC -yq -yZ -xE -Ab -AA -AY -Bl -Bl -Bl -Bl -Bl -CJ -tq -sR +rr +rH +sf +sD +tf +tO +uu +vh +vT +wX +xK +yt +wZ +zu +zT +Ap +AC +AC +AC +AC +AC +BZ +sP +sr ag ag ag @@ -50056,13 +50427,13 @@ ag aa aa aa -DR -DR -DR -DR -DR -DR -DR +JL +Ka +Kz +KZ +Lz +LV +Mo aa aa aa @@ -50243,15 +50614,15 @@ aa aa aa aa -fW -gG -hG +fT +gD +hB aa aa aa -hG -kz -fW +hB +kw +fT aa aa aa @@ -50278,30 +50649,30 @@ aa ag ag ag -rR -si -sG -tf -tf -ur -uZ -vM -wy -xD -yr -xE -zx -rR -AB -tq -tq -tq -BY -tq -tq -tq -tq -sR +rr +rI +sg +sE +sE +tP +uv +vi +vS +wY +xL +wZ +JA +rr +zU +sP +sP +sP +Bo +sP +sP +sP +sP +sr ag ag ag @@ -50313,13 +50684,13 @@ ag ag aa aa -DR -DR -DR -DR -DR -DR -DR +JM +Kb +KA +La +LA +LW +Mp aa aa aa @@ -50499,20 +50870,20 @@ aa aa aa aa -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW aa aa aa @@ -50535,30 +50906,30 @@ ag ag ag ag -rR -sj -sH -sH -tI -rR -uX -vN -wy -xE -vK -xE -zy -rR -AC -sR -sR -sR -sR -sR -sR -sR -tq -sR +rr +rJ +sh +sh +tg +rr +ut +vj +vS +wZ +vg +wZ +yS +rr +zV +sr +sr +sr +sr +sr +sr +sr +sP +sr ag ag ag @@ -50570,13 +50941,13 @@ ag ag aa aa -DR -DR -DR -DR -DR -DR -DR +JN +Kc +KB +Lb +LB +LX +Mq aa aa aa @@ -50750,26 +51121,26 @@ aa aa aa aa -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW aa aa aa @@ -50792,30 +51163,30 @@ ag ag ag ag -rR -sk -sk -sk -sk -rR -va -vO -wA -xE -vK -xE -zz -rR -sR -sR +rr +rK +rK +rK +rK +rr +uw +vk +vU +wZ +vg +wZ +yT +rr +sr +sr ag ag ag ag ag -sR -tq -sR +sr +sP +sr ag ag ag @@ -50827,13 +51198,13 @@ ag ag aa aa -DR -DR -DR -DR -DR -DR -DR +JO +Kd +KC +Lc +LC +LY +Mr aa aa aa @@ -51006,27 +51377,27 @@ aa aa aa aa -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW aa aa aa @@ -51049,20 +51420,20 @@ ag ag ag ag -rR -rR -rR -rR -rR -rR -vb -vP -wB -xF -ys -vb -wB -rR +rr +rr +rr +rr +rr +rr +ux +vl +vV +xa +xM +ux +vV +rr ag ag ag @@ -51070,9 +51441,9 @@ ag ag ag ag -sR -tq -sR +sr +sP +sr ag ag ag @@ -51084,13 +51455,13 @@ ag ag aa aa -DR -DR -DR -DR -DR -DR -DR +JP +Ke +KD +Ld +LD +LZ +Ms aa aa aa @@ -51262,29 +51633,29 @@ aa aa aa aa -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW aa aa aa @@ -51314,22 +51685,22 @@ ag aa aa aa -wC -xG -yt -za +vW +xb +xN +yu aa aa ag -tJ -tJ -tJ -tJ -tJ -tJ -tJ -tq -sR +th +th +th +th +th +th +th +sP +sr ag ag ag @@ -51340,15 +51711,15 @@ ag ag ag aa -DR -DR -DR -DR -DR -DR -DR -DR -DR +JF +JQ +Kf +KE +Le +LE +Ma +Mt +MB aa aa aa @@ -51519,30 +51890,30 @@ aa aa aa aa -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW aa aa aa @@ -51571,22 +51942,22 @@ aa aa aa aa -wC -xG -yt -za -tJ -Ac -tJ -tJ -Br -BE -BZ -Cp -CC -tJ -tq -sR +vW +xb +xN +yu +th +zv +th +th +AI +AV +Bp +BF +BS +th +sP +sr ag ag ag @@ -51597,15 +51968,15 @@ ag ag ag aa -DR -DR -DR -DR -DR -DR -DR -DR -DR +JG +JR +Kg +KF +Lf +LF +Mb +Mu +MC aa aa aa @@ -51776,42 +52147,42 @@ aa aa aa aa -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW aa aa -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni aa aa aa @@ -51828,22 +52199,22 @@ aa aa aa aa -wC -xH -yt -zb -tJ -Ad -AD -AZ -Bs -BF +vW +HY +xN +yv +th +zw +zW +Aq +AJ +AW +Bq +BG +BH Ca -Cq -Cr -CK -tr -sR +sQ +sr ag ag ag @@ -51854,15 +52225,15 @@ ag ag ag aa -DR -DR -DR -DR -DR -DR -DR -DR -DR +JH +JS +Kh +KG +Lg +LG +Mc +Mv +MD aa aa aa @@ -52033,43 +52404,43 @@ aa aa aa aa -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW aa aa -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni aa aa aa @@ -52085,22 +52456,22 @@ aa aa aa aa -wC -xG -yu -zc -zA -Ae -AE -tJ +vW +xb +xO +yw +yU +zx +zX +th +AI +AX Br -BG -Cb -Cr -CD -tJ -sR -sR +BH +JC +th +sr +sr ag ag ag @@ -52112,13 +52483,13 @@ ag ag aa aa -DR -DR -DR -DR -DR -DR -DR +JT +Ki +KH +Lh +LH +Md +Mw aa aa aa @@ -52290,43 +52661,43 @@ aa aa aa aa -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW aa aa -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni aa aa aa @@ -52342,20 +52713,20 @@ aa aa aa aa -wC -xG -yv -zd -tJ -Af -AF -tJ -tJ -tJ -tJ -tJ -tJ -tJ +vW +xb +xP +yx +th +zy +zY +th +th +th +th +th +th +th ag ag ag @@ -52369,13 +52740,13 @@ ag ag aa aa -DR -DR -DR -DR -DR -DR -DR +JU +Kj +KI +Li +LI +Me +Mx aa aa aa @@ -52547,43 +52918,43 @@ aa aa aa aa -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW aa aa -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni aa aa aa @@ -52595,18 +52966,18 @@ aa aa aa aa -tJ -us -vc -vQ -tJ -xI -yw -tJ -tJ -Ag -AG -tJ +th +tQ +uy +vm +th +xc +xQ +th +th +zz +zZ +th ag ag ag @@ -52625,15 +52996,15 @@ ag aa aa aa -DR -DR -DR -DR -DR -DR -DR -DR -DR +JI +JV +Kk +KJ +Lj +LJ +Mf +My +ME aa aa aa @@ -52804,42 +53175,42 @@ aa aa aa aa -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW aa aa aa -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni aa aa aa @@ -52852,18 +53223,18 @@ aa aa aa aa -tK -ut -vd -vR -wD -xJ -yx -ze -zB -Ah -AH -tK +ti +tR +uz +HW +vX +xd +xR +yy +yV +zA +Aa +ti aa aa ag @@ -52882,15 +53253,15 @@ ag aa aa aa -DR -DR -DR -DR -DR -DR -DR -DR -DR +JJ +JW +Kl +KK +Lk +LK +Mg +Mz +MF aa aa aa @@ -53062,27 +53433,27 @@ aa aa aa aa -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW aa aa aa @@ -53109,18 +53480,18 @@ aa aa aa aa -tL -uu -ve -vS -wE -xK -wE -xK -wE -xK -wE -tL +tj +tS +uA +vn +vY +xe +vY +xe +vY +xe +vY +tj aa aa aa @@ -53140,13 +53511,13 @@ aa aa aa aa -DR -DR -DR -DR -DR -DR -DR +JX +Km +KL +Ll +LL +Mh +MA aa aa aa @@ -53320,26 +53691,26 @@ aa aa aa aa -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW aa aa aa @@ -53366,18 +53737,18 @@ aa aa aa aa -tL -uv -ve -vT -wF -xL -xL -xL -xL -xL -xL -tL +tj +tT +uA +vo +vZ +xf +xf +xf +xf +xf +xf +tj aa aa aa @@ -53398,11 +53769,11 @@ aa aa aa aa -DR -DR -DR -DR -DR +Kn +KM +Lm +LM +Mi aa aa aa @@ -53583,20 +53954,20 @@ aa aa aa aa -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW aa aa aa @@ -53623,18 +53994,18 @@ aa aa aa aa -tL -uw -ve -vU -wG -xM -xM -xM -zC -xM -xM -tL +tj +tU +uA +vp +wb +xg +xg +xg +yW +xg +xg +tj aa aa aa @@ -53655,11 +54026,11 @@ aa aa aa aa -DR -DR -DR -DR -DR +Ko +KN +Ln +LN +Mj aa aa aa @@ -53880,18 +54251,18 @@ aa aa aa aa -tL -uv -ve -vT -wG -xM -xM -xM -xM -xM -AI -tL +tj +tT +uA +vo +wb +xg +xg +xg +xg +xg +Id +tj aa aa aa @@ -53912,11 +54283,11 @@ aa aa aa aa -DR -DR -DR -DR -DR +Kp +KO +Lo +LO +Mk aa aa aa @@ -54137,18 +54508,18 @@ aa aa aa aa -tL -uw -ve -vU -wG -xM -xM -zf -xM -xM -xM -tL +tj +tU +uA +vp +wb +xg +xg +yz +xg +xg +xg +tj aa aa aa @@ -54169,11 +54540,11 @@ aa aa aa aa -DR -DR -DR -DR -DR +Kq +KP +Lp +LP +Ml aa aa aa @@ -54394,18 +54765,18 @@ aa aa aa aa -tL -uv -ve -vT -wG -xM -xM -xM -xM -xM -xM -tL +tj +tT +uA +vo +wb +xg +xg +xg +xg +xg +xg +tj aa aa aa @@ -54413,7 +54784,7 @@ aa aa aa aa -bJ +bM aa aa aa @@ -54426,11 +54797,11 @@ aa aa aa aa -DR -DR -DR -DR -DR +Kr +KQ +Lq +LQ +Mm aa aa aa @@ -54646,23 +55017,23 @@ aa aa aa aa -bJ +bM aa aa aa aa -tL -uw -ve -vU -wG -xM -xM -xM -xM -xM -xM -tL +tj +tU +uA +vp +wb +xg +xg +xg +xg +xg +xg +tj aa aa aa @@ -54683,11 +55054,11 @@ aa aa aa aa -DR -DR -DR -DR -DR +Ks +KR +Lr +LR +Mn aa aa aa @@ -54908,18 +55279,18 @@ aa aa aa aa -tM -ux -ve -vV -wG -xN -xM -xM -zD -xM -xM -tM +tk +tV +uA +HX +wb +xh +xg +xg +HZ +xg +xg +tk aa aa aa @@ -55165,18 +55536,18 @@ aa aa aa aa -tJ -us -vc -vc -vc -vc -vc -vc -vc -vc -vQ -tJ +th +tQ +uy +uy +uy +uy +uy +uy +uy +uy +vm +th aa aa aa @@ -57740,7 +58111,7 @@ aa aa aa aa -qF +qf aa aa aa @@ -59328,17 +59699,17 @@ aw aw aw aw -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE aa aa aa @@ -59578,24 +59949,24 @@ aw aw aw aw -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE aa aa aa @@ -59835,24 +60206,24 @@ aw aw aw aw -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE aa aa aa @@ -60092,24 +60463,24 @@ aw aw aw aw -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE aa aa aa @@ -60341,32 +60712,32 @@ aa aa aa aw -FB -FB -FB -FB -FB +EE +EE +EE +EE +EE aw aw -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE aa aa aa @@ -60597,30 +60968,30 @@ aa aa aa aa -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE aw aw aw @@ -60824,7 +61195,7 @@ aa aa aa aa -qF +qf aa aa aa @@ -60854,32 +61225,32 @@ aa aa aa aa -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE aw aa aa @@ -61111,32 +61482,32 @@ aa aa aa aa -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE aw aa aa @@ -61368,32 +61739,32 @@ aa aa aa aa -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE aw aa aa @@ -61625,32 +61996,32 @@ aa aa aa aa -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE aw aa aa @@ -61882,32 +62253,32 @@ aa aa aa aa -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE aw aa aa @@ -62139,30 +62510,30 @@ aa aa aa aa -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE aw aw aw @@ -62397,32 +62768,32 @@ aa aa aa aw -FB -FB -FB -FB -FB +EE +EE +EE +EE +EE aw aw -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE aa aa aa @@ -62662,24 +63033,24 @@ aw aw aw aw -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE aa aa aa @@ -62879,8 +63250,8 @@ ag aa ag aa -wH -xO +wc +xi aa aa ag @@ -62919,24 +63290,24 @@ aw aw aw aw -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE aa aa aa @@ -63135,13 +63506,13 @@ ag ag ag ag -rS -wI -rS -rS -rS -rS -rS +rs +wd +rs +rs +rs +rs +rs ag ag ag @@ -63176,24 +63547,24 @@ aw aw aw aw -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE aa aa aa @@ -63392,18 +63763,18 @@ ag ag ag ag -rS -wJ -rS -yy -zg -zE -rS -rS -rS -rS -rS -rS +rs +we +rs +xS +yA +yX +rs +rs +rs +rs +rs +rs ag aa ag @@ -63440,17 +63811,17 @@ aw aw aw aw -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB -FB +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE aa aa aa @@ -63647,20 +64018,20 @@ ag ag aa ag -rS -rS -rS -wK -rS -yz -rS -zF -zg -zg -zg -zg -zE -rS +rs +rs +rs +wf +rs +xT +rs +yY +yA +yA +yA +yA +yX +rs ag ag ag @@ -63904,30 +64275,30 @@ ag ag aa aa -rS -vf -vW -wL -xP -yA -rS -zG -zG -zG -zG -zG -BH -rS +rs +uB +vq +wg +xj +xU +rs +yZ +yZ +yZ +yZ +yZ +AY +rs ag ag ag ag ag -rS -rS -rS -rS -Dw +rs +rs +rs +rs +CN ag aw aw @@ -64161,30 +64532,30 @@ aa aa aa aa -uy -vg -vX -wM -xQ -yB -rS -zG -zG -zG -zG -zG -BH -rS -rS -rS -rS -rS -rS -rS -Dl -Dr -rS -Dw +tW +uC +vr +wh +xk +xV +rs +yZ +yZ +yZ +yZ +yZ +AY +rs +rs +rs +rs +rs +rs +rs +CB +CH +rs +CN ag ag aa @@ -64418,30 +64789,30 @@ ag aa aa aa -rS -vh -vY -wN -xR -yC -rS -zG -zG -zG -zG -zG -BI -zg -zg -zg -zg -zg -zg -Df -Dm -Ds -rS -Dw +rs +uD +vs +wi +xl +xW +rs +yZ +yZ +yZ +yZ +yZ +AZ +yA +yA +yA +yA +yA +yA +Cv +CC +CI +rs +CN ag ag aa @@ -64675,30 +65046,30 @@ aa aa aa aa -uy -vi -vX -wO -xS -yD -rS -zG -zG -zG -zG -zG -sK -rS -rS -rS -rS -rS -rS -sI -Dn -Dt -rS -Dw +tW +uE +vr +wj +xm +xX +rs +yZ +yZ +yZ +yZ +yZ +sk +rs +rs +rs +rs +rs +rs +si +CD +Ie +rs +CN ag ag aa @@ -64932,30 +65303,30 @@ ag ag ag aa -rS -tP -vZ -wP -xT -yE -rS -zG -zG -zG -zG -zG -sK -rS +rs +tn +vt +wk +xn +xY +rs +yZ +yZ +yZ +yZ +yZ +sk +rs ag ag ag ag ag -rS -rS -rS -rS -Dw +rs +rs +rs +rs +CN ag ag ag @@ -65189,20 +65560,20 @@ ag ag ag ag -rS -vj -rS -wQ -rS -rS -rS -rS -rS -sK -sK -sK -sK -rS +rs +uF +rs +wl +rs +rs +rs +rs +rs +sk +sk +sk +sk +rs aa ag ag @@ -65440,26 +65811,26 @@ aa aa aa aa -rG -rS -rS -sI -rS -rS -rS -vk -rS -wR -xU -yF -zh -zH -rS -rS -rS -rS -rS -rS +rg +rs +rs +si +rs +rs +rs +uG +rs +wm +xo +xZ +yB +za +rs +rs +rs +rs +rs +rs aa aa aa @@ -65696,22 +66067,22 @@ aa aa aa aa -ru -ru -ru -sl -sJ -rS -tN -uz -vl -wa -wS -xV -xV -zi -zI -rS +qU +qU +qU +rL +sj +rs +tl +tX +uH +vu +wn +xp +xp +yC +zb +rs ag ag aa @@ -65953,22 +66324,22 @@ aa aa aa aa -rv -rH -rT -sm -sK -tg -tO -tP -vm -wb -wT -xW -yG -zj -zJ -rS +qV +rh +rt +rM +sk +sF +tm +tn +uI +vv +wo +xq +ya +yD +zc +rs ag ag aa @@ -66210,22 +66581,22 @@ aa aa aa aa -ru -ru -ru +qU +qU +qU +rL sl -sL -th -tP -tP -vm -wc -wT -xW -yH -zj -zK -rS +sG +tn +tn +uI +vw +wo +xq +yb +yD +zd +rs ag aa aa @@ -66468,21 +66839,21 @@ aa aa aa aa -rG -rS -rS -rS -rS -tQ -uA -vm -wb -wU -xX -yH -zj -yJ -Ai +rg +rs +rs +rs +rs +to +tY +uI +vv +wp +xr +yb +yD +yd +zB aa aa aa @@ -66724,22 +67095,22 @@ aa aa aa aa -rw -rw -rw -sn -sJ -rS -tR -uB -vn -wd -wV -xW -yG -zj -yJ -Aj +qW +qW +qW +rN +sj +rs +tp +tZ +uJ +vx +wq +xq +ya +yD +yd +zC aa aa aa @@ -66981,22 +67352,22 @@ aa aa aa aa -rx -rI -rU -so -sK -ti -tS -uC -vo -we -wW -xY -yI -xY -yJ -Aj +qX +ri +ru +rO +sk +sH +tq +ua +uK +vy +wr +xs +yc +xs +yd +zC aa aa aa @@ -67238,22 +67609,22 @@ aa aa aa aa -rw -rw -rw -sn -sL -tj -tP -tP -vp -wf -wX -xZ -yJ -yJ -zL -Ak +qW +qW +qW +rN +sl +sI +tn +tn +uL +vz +ws +xt +yd +yd +ze +zD aa aa aa @@ -67496,21 +67867,21 @@ aa aa aa aa -rG -rS -rS -rS -rS -tT -sI -vq -sI -wY -ya -ya -ya -zM -rS +rg +rs +rs +rs +rs +Jz +si +uM +si +wt +xu +xu +xu +zf +rs aa aa aa @@ -67752,16 +68123,16 @@ aa aa aa aa -ry -ry -ry -sp -sJ -rS -tU -tP -vp -wg +qY +qY +qY +rP +sj +rs +ts +tn +uL +vA aa aa aa @@ -68009,16 +68380,16 @@ aa aa aa aa -rz -rJ -rV -sq -sK -tk -tV -uD -vr -wh +qZ +rj +rv +rQ +sk +sJ +tt +ub +uN +vB aa aa aa @@ -68028,7 +68399,7 @@ aa aa aa aa -bJ +bM aa aa aa @@ -68266,16 +68637,16 @@ aa aa aa aa -ry -ry -ry -sp -sL -th -tW -uE -vs -wi +qY +qY +qY +rP +sl +sG +tu +uc +uO +vC aa aa aa @@ -68524,16 +68895,16 @@ aa aa aa aa -rG -rS -rS -rS -rS -tX -uF -vt -rS -wZ +rg +rs +rs +rs +rs +tv +ud +uP +rs +wu aa ag ag @@ -68783,15 +69154,15 @@ aa aa aa aa -rS -rS -rS -tY -uG -vu -rS -rS -rS +rs +rs +rs +tw +ue +uQ +rs +rs +rs ag aa aa @@ -69040,21 +69411,21 @@ aa aa aa aa -rS -sM -tl -tZ -tP -vv -wj -xa -rS +rs +sm +sK +tx +tn +uR +vD +wv +rs aa aa aa -zN -zN -zN +zg +zg +zg aa aa aa @@ -69297,22 +69668,22 @@ aa aa aa aa -rS -sN -tm -ua -ua -ua -tm -xb -rS +rs +sn +sL +ty +ty +ty +sL +ww +rs aa aa -zN -zN -zN -zN -zN +zg +zg +zg +zg +zg aa aa aa @@ -69554,22 +69925,22 @@ aa aa aa aa -sr -sO -tn -ub -ub -ub -wk -xc -yb +rR +so +sM +tz +tz +tz +vE +wx +xv aa aa -zN -zN -zN -zN -zN +zg +zg +zg +zg +zg aa aa aa @@ -69810,23 +70181,23 @@ aa aa aa aa -rW -ss -sP -to -uc +rw rS -vw -wl -xd -yc -yK +sp +sN +tA +rs +uS +vF +wy +xw +ye aa -zN -zN -zN -zN -zN +zg +zg +zg +zg +zg aa aa aa @@ -70068,22 +70439,22 @@ aa aa aa aa -st -sQ -st +rT +sq +rT aa -rS +rs aa -wc -xe -wb +vw +wz +vv aa aa -zN -zN -zN -zN -zN +zg +zg +zg +zg +zg aa aa aa @@ -70325,22 +70696,22 @@ aa aa aa aa -rX -rX -rX +rx +rx +rx aa -rS +rs aa -wb -xe -wb +vv +wz +vv aa aa -zN -zN -zN -zN -zN +zg +zg +zg +zg +zg aa aa aa @@ -70581,23 +70952,23 @@ aa aa aa aa -rX -rX -rX -rX -rX -rS +rx +rx +rx +rx +rx +rs aa -wb -xe -yd +vv +wz +xx aa aa -zN -zN -zN -zN -zN +zg +zg +zg +zg +zg aa aa aa @@ -70838,23 +71209,23 @@ aa aa aa aa -rX -rX -rX -rX -rX -rS +rx +rx +rx +rx +rx +rs aa -wb -xc -ye -yL -uc -zN -zN -zN -zN -zN +vv +wx +xy +yf +tA +zg +zg +zg +zg +zg aa aa aa @@ -71095,23 +71466,23 @@ aa aa aa aa -rX -rX -rX -rX -rX -uH +rx +rx +rx +rx +rx +uf aa -wb -xf -yf -yM -zk -zN -zN -zN -zN -zN +vv +wA +xz +yg +yE +zg +zg +zg +zg +zg aa aa aa @@ -71352,23 +71723,23 @@ aa aa aa aa -rX -rX -rX -rX -rX -uI +rx +rx +rx +rx +rx +ug aa -wb -xc -yg -yN -uc -zN -zN -zN -zN -zN +vv +wx +xA +yh +tA +zg +zg +zg +zg +zg aa aa aa @@ -71609,23 +71980,23 @@ aa aa aa aa -rX -rX -rX -rX -rX -uJ +rx +rx +rx +rx +rx +uh aa -wb -xe -wb +vv +wz +vv aa aa -zN -zN -zN -zN -zN +zg +zg +zg +zg +zg aa aa aa @@ -71866,23 +72237,23 @@ aa aa aa aa -rX -rX -rX -rX -rX -rS +rx +rx +rx +rx +rx +rs aa -wb -xe -wb +vv +wz +vv aa aa -zN -zN -zN -zN -zN +zg +zg +zg +zg +zg aa aa aa @@ -72123,23 +72494,23 @@ aa aa aa aa -rX -rX -rX -rX -rX -rG +rx +rx +rx +rx +rx +rg aa -wb -xg -wb +vv +wB +vv aa aa -zN -zN -zN -zN -zN +zg +zg +zg +zg +zg aa aa aa @@ -72380,16 +72751,16 @@ aa aa aa aa -rX -rX -rX -rX -rX +rx +rx +rx +rx +rx aa aa -wb -xh -wc +vv +wC +vw aa aa aa @@ -72637,16 +73008,16 @@ aa aa aa aa -rX -rX -rX -rX -rX +rx +rx +rx +rx +rx aa aa -wb -xi -yh +vv +wD +xB aa aa aa @@ -72894,16 +73265,16 @@ aa aa aa aa -rX -rX -rX -rX -rX +rx +rx +rx +rx +rx aa aa -wm -xj -st +vG +wE +rT aa aa aa @@ -73157,20 +73528,20 @@ aa aa aa aa -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra aa aa aa @@ -73408,26 +73779,26 @@ aa aa aa aa -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra aa aa aa @@ -73664,27 +74035,27 @@ aa aa aa aa -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra aa aa aa @@ -73920,29 +74291,29 @@ aa aa aa aa -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra aa aa aa @@ -74177,30 +74548,30 @@ aa aa aa aa -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra aa aa aa @@ -74434,30 +74805,30 @@ aa aa aa aa -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra aa aa aa @@ -74691,30 +75062,30 @@ aa aa aa aa -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra aa aa aa @@ -74948,30 +75319,30 @@ aa aa aa aa -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra aa aa aa @@ -75205,30 +75576,30 @@ aa aa aa aa -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra aa aa aa @@ -75462,29 +75833,29 @@ aa aa aa aa -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra aa aa aa @@ -75720,27 +76091,27 @@ aa aa aa aa -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra aa aa aa @@ -75978,26 +76349,26 @@ aa aa aa aa -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra aa aa aa @@ -76241,20 +76612,20 @@ aa aa aa aa -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA -rA +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra +ra aa aa aa